import { defineStore } from 'pinia' export const useAuditStore = defineStore({ id: 'audit', // id必填,且需要唯一 // state state: () => { return { auditInfoList: [], totalPage: 0, total: 0, page: 1, } }, // actions actions: { updateTotalPage(totalPage) { this.totalPage = totalPage }, updateTotal(total) { this.total = total }, updatePage(page) { this.page = page }, updateAuditList(auditInfoList) { this.auditInfoList = auditInfoList }, }, })