Commit 09c85c1c authored by 刘博's avatar 刘博

Merge branch 'dev-lb-06-V1' into develop

parents 6ddb6a4c df99734a
<template>
<view class="container"></view>
</template>
<script>
export default {
data() {
return {
faceType: "",
fromPage: ""
};
},
onLoad: function(options) {
this.fromPage = options.fromPage || "";
if (this.fromPage == "WECHAT") {
jWeixin.miniProgram.navigateTo({
url: `/pages_subpack/pages/openAccountProcessing/main?status=2`,
success: function(res) {
// 跳转成功
},
fail: function(err) {
// 捕捉到错误,可以在这里处理错误
console.error('navigateTo failed:', err);
}
});
} else {
my.navigateTo({
url: `/pages/BankModule/OpenAccount/fuminOpenProcessing?status=2`,
});
}
},
onShow() {
}
}
</script>
<style scoped>
</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