const state = {
resultData:{}
};
const mutations = {
setResultData: (state: any, resultData: any) => {
state.resultData = resultData
},
};
const actions = {
setResultData({ commit }: any, params: any) {
commit("setApproveParams", params);
},
};
const getters = {
getResultData: (state: any) => {
return state.resultData;
},
};
export default {
state,
mutations,
actions,
getters
};
-
由 zhangwen 提交于b223b97e