123456789101112131415161718192021222324252627 |
- import { commServer } from './server.js';
- export default {
- namespaced: true,
- state: {
- // 查核列表
- checkList: [],
- detailList:[],//查核项集合
- ifUpdate:false,
- investigationUsers:[],//受访者集合
- currentSelectedInvestigationUser:{
- investigationUserName:'',
- investigationStatus:''
- },//当前受访者
- ifShowBindPeopleDialog:true,//是否展示批量分配当事人,主要用于调节不适用按钮
- },
- mutations: {
- comChangeState(state, {key, data}) {
- state[key] = data;
- },
- },
- actions: {
- commActions({ commit, state }, { key, data }) {
- return commServer(key, data);
- },
- }
- }
|