完善接单页面

This commit is contained in:
TOP糯米 2023-03-26 17:36:17 +08:00
parent 6bb45997c1
commit f8882ea09f
1 changed files with 13 additions and 0 deletions

View File

@ -177,6 +177,19 @@ export default {
this.$nextTick(() => { this.$nextTick(() => {
this.setTabHeight(); this.setTabHeight();
}); });
})
.catch((e) => {
const that = this;
uni.showModal({
title: "无法接单",
content: e,
showCancel: false,
success(success) {
if (success.confirm) {
that.$utils.toPage("", {}, "back");
}
},
});
}); });
}); });
}, },