修改bug

ywj_dev
wangwei 2 years ago
parent c66d8529aa
commit 04b1a1f4b5

@ -138,7 +138,7 @@
<el-divider style="margin: 15px"></el-divider>
<el-table v-loading="loading" :data="list" style="width: 100%" highlight-current-row
border
@current-change="handleSelectionChange">
@row-click="handleSelectionChange">
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="单据号" prop="billNo" show-overflow-tooltip width="180"></el-table-column>
<!-- <el-table-column label="送货单位" prop="fromName" width="220">-->
@ -186,7 +186,7 @@
<el-tab-pane>
<span slot="label">单据 {{ currentRow.billNo }}-单据详情</span>
<el-table v-loading="bizDetailLoading" :data="codeDetailList" style="width: 100%" border
@current-change="BizDetail"
@row-click="BizDetail"
row-key="id" highlight-current-row
>
<el-table-column label="序号" type="index"></el-table-column>
@ -277,7 +277,7 @@
<!--单据业务详情-->
<el-tab-pane>
<span slot="label">单据 {{ currentRow.billNo }}-发票信息</span>
<el-table v-loading="bizDetailLoading" :data="bizDetailList" style="width: 100%" border
<el-table v-loading="bizDetailLoading" :data="bizDetailList" style="width: 100%" border
row-key="id"
>
<el-table-column label="序号" type="index"></el-table-column>
@ -919,8 +919,10 @@ export default {
}
this.bizDetailLoading = true;
this.bizQuery.orderIdFk = this.currentRow.billNo;
this.bizQuery.batchNo = row.batchNo;
this.bizQuery.relId = row.bindRlFk;
if(row != null) {
this.bizQuery.batchNo = row.batchNo;
this.bizQuery.relId = row.bindRlFk;
}
filterListInvoice(this.bizQuery).then((res) => {
this.bizDetailLoading = false;
if (res.code === 20000) {

Loading…
Cancel
Save