在vuex里调接口
在vuex里的store.js里写const actions = {getWorkCount(content){Axios.post("PlanTask/GetPlanTaskNum.do", {}).then(res => {content.state.fiaworkfiow=res.data.data.fiaworkfiow,});...
·
在vuex里的store.js里写
const actions = {
getWorkCount(content){
Axios.post("PlanTask/GetPlanTaskNum.do", {}).then(res => {
content.state.fiaworkfiow=res.data.data.fiaworkfiow,
});
},
}
export default new Vuex.Store({
state,
actions
})
在调用的地方写
this.$store.dispatch('getWorkCount');
更多推荐
已为社区贡献3条内容
所有评论(0)