消毒机设备
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
439 B

  1. import { defineStore } from 'pinia'
  2. /**
  3. *
  4. */
  5. export const useAuditStore = defineStore('audit', () => {
  6. // 设置菜单配置
  7. const auditMenus = [{
  8. name: '操作记录',
  9. code: 'operationRecord',
  10. roleType: 'admin',
  11. }, {
  12. name: '消毒记录',
  13. code: 'history',
  14. roleType: 'admin,maintainer',
  15. }]
  16. const historyList: Record<string, string>[] = []
  17. return {
  18. auditMenus,
  19. historyList,
  20. }
  21. })