Commit b12f35b4 authored by 袁玲利's avatar 袁玲利

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

Dev lb 06 v1

See merge request !35
parents 9107d8d8 8a8d4029
...@@ -605,6 +605,14 @@ ...@@ -605,6 +605,14 @@
"navigationBarTitleText": "", "navigationBarTitleText": "",
"enablePullDownRefresh": false "enablePullDownRefresh": false
} }
},
{
"path": "pages/toAliPay/toFuminProcessing",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
}, { }, {
"path": "pages/CampusFundingGuardian/CampusFundingGuardian", "path": "pages/CampusFundingGuardian/CampusFundingGuardian",
"style": { "style": {
......
<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