|
|
|
@ -799,7 +799,30 @@
|
|
|
|
|
this.getAllTable().then(tables => { |
|
|
|
|
return validateFormAndTables(this.form, tables) |
|
|
|
|
}).then(allValues => { |
|
|
|
|
console.log('所有数据', allValues) |
|
|
|
|
// console.log('所有数据', allValues) |
|
|
|
|
// console.log('所有数据allValues.tablesValue[0].values[0]', allValues.tablesValue[0].values[0]) |
|
|
|
|
if(!allValues.tablesValue[0].values[0] ){ |
|
|
|
|
this.$message.warning("请填写调拨物资!"); |
|
|
|
|
return |
|
|
|
|
}else{ |
|
|
|
|
let all = false; |
|
|
|
|
allValues.tablesValue[0].values.forEach( it => { |
|
|
|
|
if(!it.allotNumber){ |
|
|
|
|
this.$message.warning("请填写完整调拨物资数据!"); |
|
|
|
|
all = true; |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
if(!it.allotTarget){ |
|
|
|
|
this.$message.warning("请选择接收调拨目标!"); |
|
|
|
|
all = true; |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
if(all){ |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
if (typeof this.classifyIntoFormData !== 'function') { |
|
|
|
|
throw this.throwNotFunction('classifyIntoFormData') |
|
|
|
|
} |
|
|
|
@ -848,18 +871,18 @@
|
|
|
|
|
console.log('提交方法', method) |
|
|
|
|
if(this.btndisabled === false){ |
|
|
|
|
this.btndisabled = true |
|
|
|
|
httpAction(url, formData, method).then((res) => { |
|
|
|
|
if (res.success) { |
|
|
|
|
this.$message.success('提交申请成功!') |
|
|
|
|
//todo 将表单的数据传给父组件 |
|
|
|
|
this.$emit('loadData') |
|
|
|
|
this.close() |
|
|
|
|
} else { |
|
|
|
|
this.$message.error(res.message) |
|
|
|
|
} |
|
|
|
|
}).finally(() => { |
|
|
|
|
this.btndisabled = false |
|
|
|
|
}) |
|
|
|
|
// httpAction(url, formData, method).then((res) => { |
|
|
|
|
// if (res.success) { |
|
|
|
|
// this.$message.success('提交申请成功!') |
|
|
|
|
// //todo 将表单的数据传给父组件 |
|
|
|
|
// this.$emit('loadData') |
|
|
|
|
// this.close() |
|
|
|
|
// } else { |
|
|
|
|
// this.$message.error(res.message) |
|
|
|
|
// } |
|
|
|
|
// }).finally(() => { |
|
|
|
|
// this.btndisabled = false |
|
|
|
|
// }) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|