Commit 0d4a170c authored by youjie's avatar youjie

强制登录

parent a6edb611
<template>
<div class="auth-page">
<div class="auth-page" v-if="setting&&setting.is_show_auth==1">
<u-popup
v-model="showDialog"
mode="center"
......@@ -50,6 +50,7 @@ export default {
showLogin: true,
canIUseGetUserProfile: false,
msg: {},
setting: {},
};
},
created() {
......@@ -64,6 +65,9 @@ export default {
let y = this.pageinfo.hotspot_cancel;
this.sureStyle = `height:${x.height}rpx;width:${x.width}rpx;left:${x.left}rpx;top:${x.top}rpx;`;
this.cancelStyle = `height:${y.height}rpx;width:${y.width}rpx;left:${y.left}rpx;top:${y.top}rpx;`;
let set = uni.getStorageSync("basedata") ?
uni.getStorageSync("basedata").mall.setting : {};
this.setting = set;
},
methods: {
getoldUser() {
......
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