pickBom.js 701 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. export const tableHeader = selectEquiType => {
  2. // 1:物料;4:生产设备; 5:模具;6:备品备件; 7:周转车;8:舟皿;9:产品;10:消耗材料,11:干燥区,12.质检,13.包装材料,14.工装夹具 ,15.刀具 ,99.其他
  3. switch (+selectEquiType) {
  4. case 5:
  5. return [{
  6. label: '',
  7. prop: ['categoryName', 'categoryCode'],
  8. write: false,
  9. extInfo: false
  10. },
  11. // {
  12. // label: '已冲压次数',
  13. // prop: 'startCyTimes',
  14. // write: false,
  15. // extInfo: true
  16. // },
  17. {
  18. label: '最大冲压次数',
  19. prop: 'maxCyTimes',
  20. write: false,
  21. extInfo: true
  22. },
  23. ]
  24. }
  25. return []
  26. }