Commit 8bcce077 authored by 袁玲利's avatar 袁玲利

交行二类户接入微信

parents 7d855126 d864a406
<template>
<view class="container"></view>
<view class="container"></view>
</template>
<script>
export default {
data() {
return {
faceType: "",
};
},
onLoad: function (options) {
console.log(options);
this.faceType = options.faceType || "";
console.log("准备跳转了哦1");
//faceAuth = 1 人脸活体检测成功
// my.navigateTo({
// url: `/pages/BankModule/OpenAccount/OpenAccount?faceAuth=1`,
// });
},
onShow() {
console.log(this.faceType, "lalalallalala");
if (this.faceType == "OPEN_ACCOUNT") {
// 开户
my.navigateTo({
url: `/pages/BankModule/OpenAccount/OpenAccount?faceAuth=1`,
});
} else if (this.faceType == "CHANGE_CARD") {
// 换绑卡
my.navigateTo({
url: `/pages/BankModule/ChangeBankPay/ChangeBankPay?faceAuth=1`,
});
} else if (this.faceType == "CANCEL_ACCOUNT" || this.faceType == "ACTIVE_ACCOUNT") {
// 销户、不动户激活
my.navigateTo({
url: `/pages/BankModule/Recharge/Recharge?faceAuth=1&faceType=${this.faceType}`,
});
}
},
created: function () {
// console.log(this.$echarts);
},
methods: {},
mounted: function () {},
};
export default {
data() {
return {
faceType: "",
fromPage: ""
};
},
onLoad: function(options) {
console.log(options);
this.faceType = options.faceType || "";
this.fromPage = options.fromPage || "";
console.log("准备跳转了哦1");
//faceAuth = 1 人脸活体检测成功
// my.navigateTo({
// url: `/pages/BankModule/OpenAccount/OpenAccount?faceAuth=1`,
// });
},
onShow() {
console.log(this.faceType, "lalalallalala");
if (this.fromPage == "WECHAT") {
if (this.faceType == "OPEN_ACCOUNT") {
// 开户
my.navigateTo({
url: `/pages_subpack/pages/BankOpenAccount/BankOpenAccount?faceAuth=1`,
});
}
} else {
if (this.faceType == "OPEN_ACCOUNT") {
// 开户
my.navigateTo({
url: `/pages/BankModule/OpenAccount/OpenAccount?faceAuth=1`,
});
} else if (this.faceType == "CHANGE_CARD") {
// 换绑卡
my.navigateTo({
url: `/pages/BankModule/ChangeBankPay/ChangeBankPay?faceAuth=1`,
});
} else if (this.faceType == "CANCEL_ACCOUNT" || this.faceType == "ACTIVE_ACCOUNT") {
// 销户、不动户激活
my.navigateTo({
url: `/pages/BankModule/Recharge/Recharge?faceAuth=1&faceType=${this.faceType}`,
});
}
}
},
created: function() {
// console.log(this.$echarts);
},
methods: {},
mounted: function() {},
};
</script>
<style scoped>
</style>
</style>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment