lyh
6 天以前 73e6916dfb4956e733be0542bb3f8bf87fd89925
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
}