大空间消毒机
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.

32 lines
670 B

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. import { defineStore } from 'pinia'
  2. export const useAuditStore = defineStore({
  3. id: 'audit', // id必填,且需要唯一
  4. // state
  5. state: () => {
  6. return {
  7. auditInfoList: [],
  8. totalPage: 0,
  9. total: 0,
  10. page: 1,
  11. auditLoading: false,
  12. }
  13. },
  14. // actions
  15. actions: {
  16. updateAuditLoading(auditLoading) {
  17. this.auditLoading = auditLoading
  18. },
  19. updateTotalPage(totalPage) {
  20. this.totalPage = totalPage
  21. },
  22. updateTotal(total) {
  23. this.total = total
  24. },
  25. updatePage(page) {
  26. this.page = page + 1
  27. },
  28. updateAuditList(auditInfoList) {
  29. this.auditInfoList = auditInfoList
  30. },
  31. },
  32. })