|
@@ -188,7 +188,7 @@ export default {
|
|
|
});
|
|
|
return;
|
|
|
}
|
|
|
-
|
|
|
+const _this = this
|
|
|
uni.$u.http.get(`/api/identify/identify`).then((res) => {
|
|
|
startEid({
|
|
|
data: {
|
|
@@ -199,18 +199,19 @@ export default {
|
|
|
const { token, verifyDone } = res;
|
|
|
if (verifyDone) {
|
|
|
uni.$u.http
|
|
|
- .post("/api/merchant/apply", this.model1)
|
|
|
+ .post("/api/merchant/apply", _this.model1)
|
|
|
.then((res) => {
|
|
|
- uni.showToast({
|
|
|
- title: this.i18n.applicationResult,
|
|
|
- });
|
|
|
- uni.navigateTo({
|
|
|
- url: "/pages/mine/mine",
|
|
|
- });
|
|
|
+ // uni.showToast({
|
|
|
+ // title: _this.i18n.applicationResult,
|
|
|
+ // });
|
|
|
+
|
|
|
+ uni.switchTab({
|
|
|
+ url: "../../pages/mine/mine",
|
|
|
+ });
|
|
|
});
|
|
|
} else {
|
|
|
uni.showToast({
|
|
|
- title: this.i18n.pleaseIdentity,
|
|
|
+ title: _this.i18n.pleaseIdentity,
|
|
|
});
|
|
|
}
|
|
|
},
|