/** * 客户管理 * */ export default { namespaced: true, state: { provinceList: [] }, mutations: { SET_PROVINCE: (state, provinceList) => { state.provinceList = provinceList }, }, actions: { setProvince({ commit, state, dispatch },provinceList) { commit('SET_PROVINCE',provinceList) }, } }