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

user表role改为role_id;后台管理用户增删改查封装成component

This commit is contained in:
2023-03-28 22:13:59 +08:00
parent 880e4f8941
commit cf962a92da
33 changed files with 865 additions and 281 deletions

View File

@@ -32,7 +32,7 @@ Page({
return
} else {
// 用户已登录
let userGroup = getUserGroupByRole(userInfo.role)
let userGroup = getUserGroupByRole(userInfo.roleId)
this.setData({
debugText: JSON.stringify(options, null, 4),
userInfo: userInfo,

View File

@@ -114,13 +114,13 @@ Page({
let result = d.data;
if (result.success) {
// 登录成功
if ([3, 4, 5, 6].includes(result.data.userInfo.role)) {
if (![3, 4, 5, 6].includes(result.data.userInfo.roleId)) {
wx.showModal({
title: '你不是社区居民',
content: '管理员请前往网页版登录',
showCancel: false,
complete: (res) => {
//
//
}
})
return

View File

@@ -1,12 +1,12 @@
module.exports = {
user: {
role: {
ADMIN: 0,
STAFF: 1,
RESIDENTS_OWNER: 2,
RESIDENTS_MEMBER: 3,
RESIDENTS_TENENT: 4,
VISITOR: 5
ADMIN: 1,
STAFF: 2,
RESIDENTS_OWNER: 3,
RESIDENTS_MEMBER: 4,
RESIDENTS_TENENT: 5,
VISITOR: 6
}
}
}