lyh
5 天以前 c60e141e9b43be2eb5122eaa7da13bc0cf3848cd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export const getProductStatusMapValue = (state, key) => {
  return state.productStatusMap[key];
}
export const getProductStatusMap = state => {
  return state.productStatusMap
}
export const getBtnTypeMap = state => {
  return state.btnTypeMap
}
export const getPullStatusMap = state => {
  return state.pullStatusMap
}
export const getDocSyncStatusMap = state => {
  return state.docSyncStatusMap
}
export const getNcLogInfoMap = state => {
  return state.NcLogInfoMap
}