123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- import {
- reqFetchDataList
- } from "@/request/api.js";
- import cloneDeep from 'lodash/cloneDeep'
- const stateReset = {
- systemInfo: {},
- };
- const state = cloneDeep(stateReset);
- const getters = {};
- const mutations = {
- // 重置字典数据
- resetVxSystem(state) {
- Object.assign(state, cloneDeep(stateReset))
- },
- // 获取数据
- vxSystem(state, args) {
- state.systemInfo[args.key] = args.data;
- },
- };
- const actions = {
- // 获取字典数据
- async vxSystem({
- commit,
- state
- }, args) {
- const excludeArr = ['updateTipsForNurses']; //无需缓存的keyconfig
- const keyconfig = args.systemConfiguration.keyconfig;
- if (state.systemInfo[keyconfig] && !excludeArr.includes(args.systemConfiguration
- .keyconfig)) {
- //如果存在
- return await Promise.resolve(state.systemInfo[keyconfig]);
- } else {
- let result = await reqFetchDataList('simple/data', 'systemConfiguration', args);
- if (result.status == 200) {
- commit("vxSystem", {
- key: keyconfig,
- data: result
- });
- }
- return result;
- }
- },
- };
- export default {
- namespaced: true,
- state,
- getters,
- mutations,
- actions,
- };
|