existingQuantityForm.data.ts 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. import {BasicColumn} from '/@/components/Table';
  2. import {FormSchema} from '/@/components/Table';
  3. import { rules} from '/@/utils/helper/validator';
  4. import { render } from '/@/utils/common/renderUtils';
  5. import {JVxeTypes,JVxeColumn} from '/@/components/jeecg/JVxeTable/types'
  6. import { getWeekMonthQuarterYear } from '/@/utils';
  7. //列表数据
  8. export const columns: BasicColumn[] = [
  9. {
  10. title: '仓库(warehouse)',
  11. align:"center",
  12. dataIndex: 'warehouse'
  13. },
  14. {
  15. title: '货位(goods allocation)',
  16. align:"center",
  17. dataIndex: 'goodsAllocation',
  18. },
  19. {
  20. title: '项目(project)',
  21. align:"center",
  22. dataIndex: 'projectName'
  23. },
  24. {
  25. title: '供应商(supplier)',
  26. align:"center",
  27. dataIndex: 'supplierName'
  28. },
  29. {
  30. title: '客户(customerName)',
  31. align:"center",
  32. dataIndex: 'customerName'
  33. },
  34. {
  35. title: '产品分类(production class)',
  36. align:"center",
  37. dataIndex: 'productionClass'
  38. },
  39. {
  40. title: '机型(model)',
  41. align:"center",
  42. dataIndex: 'model'
  43. },
  44. {
  45. title: '产品编码(product code)',
  46. align:"center",
  47. dataIndex: 'productCode'
  48. },
  49. {
  50. title: '产品英文名(english name)',
  51. align:"center",
  52. dataIndex: 'englishName'
  53. },
  54. {
  55. title: '产品中文名(chinese name)',
  56. align:"center",
  57. dataIndex: 'chineseName'
  58. },
  59. {
  60. title: '型号(model)',
  61. align:"center",
  62. dataIndex: 'model'
  63. },
  64. {
  65. title: '厂家(maker)',
  66. align:"center",
  67. dataIndex: 'maker'
  68. },
  69. {
  70. title: '质量等级(quality grade)',
  71. align:"center",
  72. dataIndex: 'qualityGrade'
  73. },
  74. {
  75. title: '编号(batch code)',
  76. align:"center",
  77. dataIndex: 'batchCode',
  78. width:'250'
  79. },
  80. {
  81. title: '数量(quantity)',
  82. align:"center",
  83. dataIndex: 'quantity',
  84. width:'250'
  85. },
  86. ];