lyh
2026-01-19 f60f18de3fa04a8f8ade71da232fed4bcef3766a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
}