system.js 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. if (state.systemInfo[args.systemConfiguration.keyconfig]) {
  27. //如果存在
  28. return await Promise.resolve(state.systemInfo[args.systemConfiguration.keyconfig]);
  29. } else {
  30. let result = await reqFetchDataList('simple/data', 'systemConfiguration', args);
  31. if (result.status == 200) {
  32. commit("vxSystem", {
  33. key: args.systemConfiguration.keyconfig,
  34. data: result
  35. });
  36. }
  37. return result;
  38. }
  39. },
  40. };
  41. export default {
  42. namespaced: true,
  43. state,
  44. getters,
  45. mutations,
  46. actions,
  47. };