Browse Source

审计的操作记录和消毒记录bug

master
王梦远 2 weeks ago
parent
commit
faf814bf46
  1. 4
      src/stores/auditStore.ts

4
src/stores/auditStore.ts

@ -6,11 +6,11 @@ export const useAuditStore = defineStore('audit', () => {
// 设置菜单配置 // 设置菜单配置
const auditMenus = [{ const auditMenus = [{
name: '操作记录', name: '操作记录',
code: 'history',
code: 'operationRecord',
roleType: 'admin', roleType: 'admin',
}, { }, {
name: '消毒记录', name: '消毒记录',
code: 'operationRecord',
code: 'history',
roleType: 'admin,maintainer', roleType: 'admin,maintainer',
}] }]
const historyList: Record<string, string>[] = [] const historyList: Record<string, string>[] = []

Loading…
Cancel
Save