Commit 7ca5b548 by 展昭

update

parent 94aad4f4
...@@ -43,7 +43,7 @@ Vue.prototype.setPageNavState = function () { ...@@ -43,7 +43,7 @@ Vue.prototype.setPageNavState = function () {
isCloseWebView: false isCloseWebView: false
}, },
function (response) { function (response) {
console.log("来自 ios/android的回传数据: ", response); console.log("setPageNavState来自 ios/android的回传数据: ", response);
} }
); );
}); });
......
...@@ -466,11 +466,12 @@ export default { ...@@ -466,11 +466,12 @@ export default {
} }
}, },
async mounted() { async mounted() {
this.getBarHeight();
this.setPageNavState(); this.setPageNavState();
this.globalNavLeftArrowClick(this.navLeftArrowClick); this.globalNavLeftArrowClick(this.navLeftArrowClick);
await this.loadPeriodData(); await this.loadPeriodData();
this.payUrl = await this.loadPayUrl(); this.payUrl = await this.loadPayUrl();
this.getBarHeight();
} }
}; };
</script> </script>
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<div class="header"> <div class="header">
<Header :title="title" /> <Header :title="title" />
</div> </div>
<div class="callback">应用未授权该用户</div> <div class="callback">{{errMessage}}</div>
</div> </div>
</template> </template>
...@@ -22,8 +22,8 @@ export default { ...@@ -22,8 +22,8 @@ export default {
name: "OidcCallback", name: "OidcCallback",
data() { data() {
return { return {
title:'登录错误', title: "登录错误",
errMessage: "应用未授权该用户" errMessage: ""
}; };
}, },
methods: { methods: {
......
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 sign in to comment