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

微信小程序 提审时隐藏功能;微信小程序添加微信快捷登录、随便看看(登的user用户)

This commit is contained in:
2023-04-17 02:36:04 +08:00
parent 62ed92029c
commit 0238251ab0
29 changed files with 1205 additions and 624 deletions

View File

@@ -39,55 +39,55 @@ let menuItemDict = {
switchFunc: switchTab,
url: '/pages/shop/shop'
},
'apply-record': {
for: ['visitor'],
title: "申请记录",
image: "apply.png",
switchFunc: switchTab,
url: ''
},
'apply-approval': {
for: ['admin'],
title: "申请审批",
image: "apply.png", // ApplyReplay
switchFunc: switchTab,
url: ''
},
'visitor-apply': {
for: ['admin'],
title: "访客审批",
image: "visitor.png",
switchFunc: switchTab,
url: ''
},
'abnormal': {
for: ['admin'],
title: "异常人员",
image: "danger.png",
switchFunc: switchTab,
url: ''
},
'feedback-submit': {
for: ['visitor'],
title: "提交反馈",
image: "fk.png",
switchFunc: switchTab,
url: ''
},
'feedback-list': {
for: ['visitor'],
title: "反馈查看",
image: "feedback.png",
switchFunc: switchTab,
url: ''
},
'feedback-reply': {
for: ['admin'],
title: "反馈回复",
image: "feedback.png",
switchFunc: switchTab,
url: ''
},
// 'apply-record': {
// for: ['visitor'],
// title: "申请记录",
// image: "apply.png",
// switchFunc: switchTab,
// url: ''
// },
// 'apply-approval': {
// for: ['admin'],
// title: "申请审批",
// image: "apply.png", // ApplyReplay
// switchFunc: switchTab,
// url: ''
// },
// 'visitor-apply': {
// for: ['admin'],
// title: "访客审批",
// image: "visitor.png",
// switchFunc: switchTab,
// url: ''
// },
// 'abnormal': {
// for: ['admin'],
// title: "异常人员",
// image: "danger.png",
// switchFunc: switchTab,
// url: ''
// },
// 'feedback-submit': {
// for: ['visitor'],
// title: "提交反馈",
// image: "fk.png",
// switchFunc: switchTab,
// url: ''
// },
// 'feedback-list': {
// for: ['visitor'],
// title: "反馈查看",
// image: "feedback.png",
// switchFunc: switchTab,
// url: ''
// },
// 'feedback-reply': {
// for: ['admin'],
// title: "反馈回复",
// image: "feedback.png",
// switchFunc: switchTab,
// url: ''
// },
'person': {
for: ['admin', 'user'],
title: "个人中心",
@@ -100,22 +100,22 @@ let menuItemDict = {
title: "密码修改",
image: "updPwd.png",
switchFunc: switchTab,
url: ''
url: '/pages/person/updpwd'
},
'assign': {
for: ['admin'],
title: "分配账号",
image: "count.png",
switchFunc: switchTab,
url: ''
},
'unfinish': {
for: ['admin'],
title: "今日未填", // RedList
image: "_report.png",
switchFunc: switchTab,
url: ''
}
// 'assign': {
// for: ['admin'],
// title: "分配账号",
// image: "count.png",
// switchFunc: switchTab,
// url: ''
// },
// 'unfinish': {
// for: ['admin'],
// title: "今日未填", // RedList
// image: "_report.png",
// switchFunc: switchTab,
// url: ''
// }
}
let keys = Object.keys(menuItemDict);
for (let key of keys) {