This commit is contained in:
linfso 2024-10-29 18:51:52 +08:00
parent 910e31bdee
commit b34d411691

View File

@ -58,6 +58,7 @@
<el-button type="primary" @click="addBillToApply" :disable="isPreventReClick">加入单号</el-button>
</div>
<el-table
v-loading="loading"
class="cargoList"
:cell-style="{
'padding': '0px!important',
@ -224,7 +225,7 @@ export default {
return {
emisSettleInvoiceRecordOptions: [],
// 遮罩层
loading: true,
loading: false,
isPreventReClick:false,
// 表单参数
@ -332,7 +333,7 @@ export default {
})
}
console.log("===>hasOpenMap==>",hasOpenMap);
this.loading=true;
for(let i=0;i<this.billList.length;i++){
let item=this.billList[i];
@ -383,7 +384,7 @@ export default {
}
this.handleCalcFeeItem();
this.loading=false;
}
}else{
@ -419,6 +420,7 @@ export default {
pageSize:2000
}
this.loading=true;
// 查询子账单
let res=await listEmisSettleSubBill(qParam);
// console.log("===>=res==>",res)
@ -453,6 +455,7 @@ export default {
};
this.isPreventReClick=false;
this.handleCalcFeeItem();
this.loading=false;
}
},
removeEndChar(str,char, type) {