单据管理模块中 重置之后出现错误提示

prod
wangwei 2 years ago
parent bbbc0d379e
commit 723531290a

@ -657,7 +657,10 @@ export default {
page: 1,
limit: 10
};
this.getBizDetailList();
if(!isBlank(this.currentRow.billNo)) {
this.getBizDetailList();
}
},
onBizSubmit() {
this.bizQuery.page = 1;
@ -772,7 +775,10 @@ export default {
page: 1,
limit: 10
};
this.getResultDetailList();
if(!isBlank(this.currentRow.billNo)) {
this.getResultDetailList();
}
},
onResultSubmit() {
this.resultQuery.page = 1;

@ -892,7 +892,9 @@ export default {
page: 1,
limit: 10
};
this.getBizDetailList();
if(!isBlank(this.currentRow.billNo)) {
this.getBizDetailList();
}
},
onBizSubmit() {
this.bizQuery.page = 1;
@ -928,7 +930,9 @@ export default {
page: 1,
limit: 10
};
this.getCodeDetailList();
if(!isBlank(this.currentRow.billNo)) {
this.getCodeDetailList();
}
},
onCodeSubmit() {
this.codeQuery.page = 1;
@ -966,7 +970,10 @@ export default {
page: 1,
limit: 10
};
this.getResultDetailList();
if(!isBlank(this.currentRow.billNo)) {
this.getResultDetailList();
}
},
onResultSubmit() {
this.resultQuery.page = 1;

@ -738,7 +738,9 @@ export default {
page: 1,
limit: 10
};
this.getBizDetailList();
if(!isBlank(this.currentRow.billNo)) {
this.getBizDetailList();
}
},
onBizSubmit() {
this.bizQuery.page = 1;
@ -858,7 +860,9 @@ export default {
page: 1,
limit: 10
};
this.getResultDetailList();
if(!isBlank(this.currentRow.billNo)) {
this.getResultDetailList();
}
},
onResultSubmit() {
this.resultQuery.page = 1;

@ -686,7 +686,9 @@ export default {
page: 1,
limit: 10
};
this.getBizDetailList();
if(!isBlank(this.currentRow.billNo)) {
this.getBizDetailList();
}
},
onBizSubmit() {
this.bizQuery.page = 1;
@ -722,7 +724,10 @@ export default {
page: 1,
limit: 10
};
this.getCodeDetailList();
if(!isBlank(this.currentRow.billNo)) {
this.getCodeDetailList();
}
},
onCodeSubmit() {
this.codeQuery.page = 1;
@ -760,7 +765,10 @@ export default {
page: 1,
limit: 10
};
this.getResultDetailList();
if(!isBlank(this.currentRow.billNo)) {
this.getResultDetailList();
}
},
onResultSubmit() {
this.resultQuery.page = 1;

Loading…
Cancel
Save