haoxuan
2023-08-28 6365989d130a8f5e222687b7441aa19a8b5eb9d6
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
// 采购状态
const purchaseStatus=[
  {
    name:'已下单',
    id:1,
  },
  {
    name:'到货质检',
    id:2,
  },
  {
    name:'已入库',
    id:3,
  },
  {
    name:'已完成',
    id:4,
  },
]
 
 
export const getDataByType = type => {
  if(type =='purchaseStatus'){
    return purchaseStatus;
  }
}