xiangpei
2024-12-03 8c3eaeddeff2c9c5a92352e6bf830e5000ff5882
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import subjectApi from '@/api/subject'
 
const state = {
  subjects: []
}
 
const getters = {
  subjectEnumFormat: (state) => (key) => {
    // console.log(state.subjects,key)
    let str = ''
    for (const j of state.subjects) {
      for (let k of key) {
        // console.log(j,k)
            if (j.id ==k){
              str+= j.name + '  /'
            }
      }
    }
    return str.slice(0,str.length-1)
    // for (let item of state.subjects) {
    //   if (item.id === key) {
    //     return item.name + ' ( ' + item.levelName + ' )'
    //   }
    // }
    return null
  }
}
 
// actions
const actions = {
  async initSubject ({ commit }, action) {
    await subjectApi.list().then(re => {
      commit('setSubjects', re.response)
      if (action !== undefined) {
        action()
      }
    })
  }
}
 
// mutations
const mutations = {
  setSubjects: (state, subjects) => {
    state.subjects = subjects
  }
}
 
export default {
  namespaced: true,
  state,
  getters,
  actions,
  mutations
}