|
|
|
@ -818,7 +818,7 @@ export default {
|
|
|
|
|
this.resultQuery.page = 1;
|
|
|
|
|
|
|
|
|
|
this.getBizDetailList();
|
|
|
|
|
this.getCodeDetailList();
|
|
|
|
|
// this.getCodeDetailList();
|
|
|
|
|
this.getResultDetailList();
|
|
|
|
|
},
|
|
|
|
|
// 清空单据详情数据列表
|
|
|
|
@ -959,11 +959,11 @@ export default {
|
|
|
|
|
getBizDetailList(this.bizQuery).then((res) => {
|
|
|
|
|
this.bizDetailLoading = false;
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.bizDetailList = res.data.list || [];
|
|
|
|
|
this.codeDetailList = res.data.list || [];
|
|
|
|
|
this.bizTotal = res.data.total || 0;
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.message);
|
|
|
|
|
this.bizDetailList = [];
|
|
|
|
|
this.codeDetailList = [];
|
|
|
|
|
this.bizTotal = 0;
|
|
|
|
|
}
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|