|
@@ -1186,7 +1186,7 @@
|
|
|
},
|
|
},
|
|
|
data() {
|
|
data() {
|
|
|
return {
|
|
return {
|
|
|
- isTask:false,
|
|
|
|
|
|
|
+ isTask: false,
|
|
|
isWeight: true,
|
|
isWeight: true,
|
|
|
resultArray: [],
|
|
resultArray: [],
|
|
|
isDetail: false,
|
|
isDetail: false,
|
|
@@ -1279,7 +1279,7 @@
|
|
|
this.initData();
|
|
this.initData();
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|
|
|
- cancel(){
|
|
|
|
|
|
|
+ cancel() {
|
|
|
this.$emit('cancel');
|
|
this.$emit('cancel');
|
|
|
},
|
|
},
|
|
|
weightInput(value, row) {
|
|
weightInput(value, row) {
|
|
@@ -1386,8 +1386,8 @@
|
|
|
this.contactList = data.data;
|
|
this.contactList = data.data;
|
|
|
},
|
|
},
|
|
|
async pickerSuccess(row) {
|
|
async pickerSuccess(row) {
|
|
|
- this.formData.bizType='2'
|
|
|
|
|
- this.isTask=true
|
|
|
|
|
|
|
+ this.formData.bizType = '2';
|
|
|
|
|
+ this.isTask = true;
|
|
|
this.pickerRow = row;
|
|
this.pickerRow = row;
|
|
|
this.formData.extInfo.documentSource = row.orderNo;
|
|
this.formData.extInfo.documentSource = row.orderNo;
|
|
|
this.formData.clientName = row.partaName;
|
|
this.formData.clientName = row.partaName;
|
|
@@ -1972,8 +1972,9 @@
|
|
|
try {
|
|
try {
|
|
|
const res = await outin.save(obj);
|
|
const res = await outin.save(obj);
|
|
|
if (res.code == 0) {
|
|
if (res.code == 0) {
|
|
|
|
|
+ await outin.outApproves({ outInId: res.data });
|
|
|
this.$message.success('保存成功!');
|
|
this.$message.success('保存成功!');
|
|
|
- this.$emit('handleAudit',1)
|
|
|
|
|
|
|
+ this.$emit('handleAudit', 1);
|
|
|
}
|
|
}
|
|
|
} catch (error) {
|
|
} catch (error) {
|
|
|
console.error('保存失败:', error);
|
|
console.error('保存失败:', error);
|