|
|
|
@ -261,11 +261,11 @@
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="bizTotal>0"
|
|
|
|
|
:total="bizTotal"
|
|
|
|
|
:page.sync="bizQuery.page"
|
|
|
|
|
:limit.sync="bizQuery.limit"
|
|
|
|
|
@pagination="getBizDetailList"
|
|
|
|
|
v-show="codeTotal>0"
|
|
|
|
|
:total="codeTotal"
|
|
|
|
|
:page.sync="codeQuery.page"
|
|
|
|
|
:limit.sync="codeQuery.limit"
|
|
|
|
|
@pagination="getOrderDetails"
|
|
|
|
|
/>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
|
|
|
|
@ -362,8 +362,8 @@
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="bizTotal>0"
|
|
|
|
|
:total="bizTotal"
|
|
|
|
|
v-show="invTotal>0"
|
|
|
|
|
:total="invTotal"
|
|
|
|
|
:page.sync="bizQuery.page"
|
|
|
|
|
:limit.sync="bizQuery.limit"
|
|
|
|
|
@pagination="getBizDetailList"
|
|
|
|
@ -568,6 +568,7 @@ export default {
|
|
|
|
|
limit: 10
|
|
|
|
|
},
|
|
|
|
|
bizTotal: 0,
|
|
|
|
|
invTotal: 0,
|
|
|
|
|
bizDetailLoading: false,
|
|
|
|
|
bizDetailList: [],
|
|
|
|
|
codeQuery: {
|
|
|
|
@ -746,10 +747,10 @@ export default {
|
|
|
|
|
// 获取单据 业务详情、扫码详情、扫码明细
|
|
|
|
|
getOrderDetails() {
|
|
|
|
|
this.codeQuery.page = 1;
|
|
|
|
|
this.resultQuery.page = 1;
|
|
|
|
|
//this.resultQuery.page = 1;
|
|
|
|
|
|
|
|
|
|
this.getCodeDetailList();
|
|
|
|
|
this.getResultDetailList();
|
|
|
|
|
//this.getResultDetailList();
|
|
|
|
|
},
|
|
|
|
|
// 清空单据详情数据列表
|
|
|
|
|
clearDetailList() {
|
|
|
|
@ -929,17 +930,17 @@ export default {
|
|
|
|
|
this.bizDetailLoading = false;
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.bizDetailList = res.data.list || [];
|
|
|
|
|
this.bizTotal = res.data.total || 0;
|
|
|
|
|
this.invTotal = res.data.total || 0;
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.message);
|
|
|
|
|
this.bizDetailList = [];
|
|
|
|
|
this.bizTotal = 0;
|
|
|
|
|
this.invTotal = 0;
|
|
|
|
|
}
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
this.bizDetailLoading = false;
|
|
|
|
|
this.$message.error(error.message);
|
|
|
|
|
this.bizDetailList = [];
|
|
|
|
|
this.bizTotal = 0;
|
|
|
|
|
this.invTotal = 0;
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|