12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- import {BasicColumn} from '/@/components/Table';
- import {FormSchema} from '/@/components/Table';
- import { rules} from '/@/utils/helper/validator';
- import { render } from '/@/utils/common/renderUtils';
- import {JVxeTypes,JVxeColumn} from '/@/components/jeecg/JVxeTable/types'
- import { getWeekMonthQuarterYear } from '/@/utils';
- //列表数据
- export const columns: BasicColumn[] = [
- {
- title: '仓库(warehouse)',
- align:"center",
- dataIndex: 'warehouse'
- },
- {
- title: '货位(goods allocation)',
- align:"center",
- dataIndex: 'goodsAllocation',
- },
-
- {
- title: '项目(project)',
- align:"center",
- dataIndex: 'projectName'
- },
- {
- title: '供应商(supplier)',
- align:"center",
- dataIndex: 'supplierName'
- },
- {
- title: '客户(customerName)',
- align:"center",
- dataIndex: 'customerName'
- },
- {
- title: '产品分类(production class)',
- align:"center",
- dataIndex: 'productionClass'
- },
- {
- title: '机型(model)',
- align:"center",
- dataIndex: 'model'
- },
- {
- title: '产品编码(product code)',
- align:"center",
- dataIndex: 'productCode'
- },
- {
- title: '产品英文名(english name)',
- align:"center",
- dataIndex: 'englishName'
- },
- {
- title: '产品中文名(chinese name)',
- align:"center",
- dataIndex: 'chineseName'
- },
- {
- title: '型号(model)',
- align:"center",
- dataIndex: 'model'
- },
- {
- title: '厂家(maker)',
- align:"center",
- dataIndex: 'maker'
- },
- {
- title: '质量等级(quality grade)',
- align:"center",
- dataIndex: 'qualityGrade'
- },
- {
- title: '编号(batch code)',
- align:"center",
- dataIndex: 'batchCode',
- width:'250'
- },
- {
- title: '数量(quantity)',
- align:"center",
- dataIndex: 'quantity',
- width:'250'
- },
- ];
|