inspectionListSearch.js 710 B

12345678910111213141516171819202122232425262728293031
  1. import { defineStore } from "pinia"
  2. import { reactive } from 'vue'
  3. export const useInspectionListSearchStore = defineStore(
  4. "inspectionListSearch",
  5. () => {
  6. const inspectionListSearch = reactive({
  7. data: null,
  8. });
  9. // 保存
  10. function setInspectionListSearchData(data) {
  11. inspectionListSearch.data = data;
  12. }
  13. // 清空
  14. function clearInspectionListSearchData() {
  15. console.log(inspectionListSearch.data)
  16. inspectionListSearch.data = null;
  17. }
  18. return {
  19. inspectionListSearch,
  20. setInspectionListSearchData,
  21. clearInspectionListSearchData,
  22. };
  23. },
  24. {
  25. unistorage: true, // 开启后对 state 的数据读写都将持久化
  26. },
  27. );