import { defineStore } from 'pinia' /** * 审计模块 */ export const useAuditStore = defineStore('audit', () => { // 设置菜单配置 const auditMenus = [{ name: '操作记录', code: 'operationRecord', roleType: 'admin', }, { name: '消毒记录', code: 'history', roleType: 'admin,maintainer', }] const historyList: Record[] = [] return { auditMenus, historyList, } })