田源
2023-11-28 6b9c331b4499f463717c0ec64a8090d9a96ca7d7
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