md
This commit is contained in:
parent
23fb412189
commit
64781c279e
@ -609,6 +609,11 @@ export default {
|
||||
submitForm(isContinue) {
|
||||
this.$refs["form"].validate(valid => {
|
||||
if (valid) {
|
||||
|
||||
// 简化费用项,只有有值的才提交
|
||||
let newList = this.form.feeItemList.filter(item => item.fee>0 );
|
||||
this.form.feeItemList=newList;
|
||||
|
||||
if (this.form.id != null) {
|
||||
this.isDoing=true;
|
||||
updateEmisTmsCostFee(this.form).then(response => {
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
ref="refTable"
|
||||
row-key="id"
|
||||
|
||||
storageName="sendWaybillList_main_240702"
|
||||
storageName="CreditSendWaybillList_main_240702"
|
||||
|
||||
v-loading="loading"
|
||||
border
|
||||
|
||||
Loading…
Reference in New Issue
Block a user