“完成审核”按钮未判断审核数量

dev
薛宇 2 years ago
parent 864de16933
commit 49b89a0a3c

@ -290,11 +290,13 @@ export default {
checkFinish() { checkFinish() {
let query = { let query = {
orderId: this.orderQuery.billNo, //orderId: this.orderQuery.billNo,
billNo: this.orderQuery.billNo,
}; };
getAcceptStatus(query) getAcceptStatus(query)
.then((response) => { .then((response) => {
if (response.code == 20000) { if (response.code == 20000) {
let tip = "审核结果正确,是否立即完成审核?"; let tip = "审核结果正确,是否立即完成审核?";
this.finishAccept(tip); this.finishAccept(tip);
} else { } else {

@ -299,7 +299,8 @@ export default {
checkFinish() { checkFinish() {
let query = { let query = {
orderId: this.orderQuery.billNo, //orderId: this.orderQuery.billNo,
billNo: this.orderQuery.billNo,
}; };
getAcceptStatus(query) getAcceptStatus(query)
.then((response) => { .then((response) => {

Loading…
Cancel
Save