1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

backend-moke 模拟弱网环境;一些小修改

This commit is contained in:
2022-11-26 16:20:22 +08:00
parent eaecc486df
commit d4bc8c3f87
4 changed files with 55 additions and 54 deletions

View File

@@ -100,7 +100,6 @@
<script>
import Taro from '@tarojs/taro'
import { eventCenter, getCurrentInstance } from '@tarojs/taro'
import ENUM from '../../utils/const.js'
import DebugComp from '../../components/DebugComp.vue'
@@ -120,39 +119,37 @@ export default {
components: {
DebugComp
},
mounted() {
eventCenter.once(getCurrentInstance().router.onShow, () => {
console.log('onShow')
console.log("ENUM", ENUM)
this.userInfo = Taro.getStorageSync("userInfo");
this.displayUsername = this.userInfo?.username ?? "请登录";
if (!this.userInfo) {
console.log("用户未登录")
Taro.redirectTo({
url: '/pages/index/login'
})
} else {
const role = ENUM.user.role;
this.isVisitor = [
role.VISITOR,
].includes(this.userInfo.role);
this.isUser = [
role.RESIDENTS_OWNER,
role.RESIDENTS_MEMBER,
role.RESIDENTS_TENENT,
].includes(this.userInfo.role);
this.isAdmin = [
role.ADMIN,
role.STAFF,
].includes(this.userInfo.role);
console.log(
"isVisitor", this.isVisitor,
"isUser", this.isUser,
"isAdmin", this.isAdmin
)
}
})
onShow() {
console.log('onShow')
console.log("ENUM", ENUM)
this.userInfo = Taro.getStorageSync("userInfo");
this.displayUsername = this.userInfo?.username ?? "请登录";
if (!this.userInfo) {
console.log("用户未登录")
Taro.redirectTo({
url: '/pages/index/login'
})
} else {
const role = ENUM.user.role;
this.isVisitor = [
role.VISITOR,
].includes(this.userInfo.role);
this.isUser = [
role.RESIDENTS_OWNER,
role.RESIDENTS_MEMBER,
role.RESIDENTS_TENENT,
].includes(this.userInfo.role);
this.isAdmin = [
role.ADMIN,
role.STAFF,
].includes(this.userInfo.role);
console.log(
"isVisitor", this.isVisitor,
"isUser", this.isUser,
"isAdmin", this.isAdmin
)
}
},
methods: {
goCode() {