system.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. import {
  2. reqFetchDataList
  3. } from "@/request/api.js";
  4. import cloneDeep from 'lodash/cloneDeep'
  5. const stateReset = {
  6. systemInfo: {},
  7. };
  8. const state = cloneDeep(stateReset);
  9. const getters = {};
  10. const mutations = {
  11. // 重置字典数据
  12. resetVxSystem(state) {
  13. Object.assign(state, cloneDeep(stateReset))
  14. },
  15. // 获取数据
  16. vxSystem(state, args) {
  17. state.systemInfo[args.key] = args.data;
  18. },
  19. };
  20. const actions = {
  21. // 获取字典数据
  22. async vxSystem({
  23. commit,
  24. state
  25. }, args) {
  26. const excludeArr = ['updateTipsForNurses']; //无需缓存的keyconfig
  27. const keyconfig = args.systemConfiguration.keyconfig;
  28. if (state.systemInfo[keyconfig] && !excludeArr.includes(args.systemConfiguration
  29. .keyconfig)) {
  30. //如果存在
  31. return await Promise.resolve(state.systemInfo[keyconfig]);
  32. } else {
  33. let result = await reqFetchDataList('simple/data', 'systemConfiguration', args);
  34. if (result.status == 200) {
  35. commit("vxSystem", {
  36. key: keyconfig,
  37. data: result
  38. });
  39. }
  40. return result;
  41. }
  42. },
  43. };
  44. export default {
  45. namespaced: true,
  46. state,
  47. getters,
  48. mutations,
  49. actions,
  50. };