完善接单页面
This commit is contained in:
parent
6bb45997c1
commit
f8882ea09f
|
@ -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");
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue