fujunling
2023-06-08 36c7ff87bec2f261b28859bfb9cb7c1692e3d0ed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 
const master = {
  state:{
    codeClassifyOid:""
  },
  actions:{
 
  },
  mutations:{
    codeClassifyOid(state,all){
      state.codeClassifyOid=all
      console.log(state.codeClassifyOid)
    }
  }
}
export default master