123456789101112131415161718192021 |
- const business: any = {
- state: {
- certificationInfo:{},
- },
- mutations: {
- SET_CERTIFICATIONINFO: (state, data) => {
- console.log('存储志愿者注册数据');
- state.certificationInfo = data
- },
- },
- actions: {
- handlerCertificationInfo({ commit, state }, data) {
- commit('SET_CERTIFICATIONINFO', data)
- },
- }
- }
- export default business
|