lyh
5 天以前 c150c4b99e3f3eec5825c4f921830ec06b1efe2c
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
}