1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- import { BasicColumn } from '/@/components/Table';
- import { FormSchema } from '/@/components/Table';
- export const columns: BasicColumn[] = [
- {
- title: '类型名称',
- dataIndex: 'itemText',
- align: 'left',
- width: 120,
- },
- {
- title: '值',
- dataIndex: 'itemValue',
- width: 100,
- },
- {
- title: '所属系统',
- dataIndex: 'description_dictText',
- width: 100,
- },
-
- {
- title: '排序',
- dataIndex: 'sortOrder',
- width: 100,
- },
- ];
- export const formSchema: FormSchema[] = [
- {
- label: '',
- field: 'id',
- component: 'Input',
- show: false,
- },
- {
- label: '',
- field: 'dictId',
- component: 'Input',
- show: false,
- },
- {
- label: '名称',
- field: 'itemText',
- component: 'Input',
- },
- {
- label: '数据值',
- field: 'itemValue',
- component: 'Input',
- },
- // {
- // label: '描述',
- // field: 'description',
- // component: 'Input',
- // },
- {
- label: '所属系统',
- field: 'description',
- component: 'JDictSelectTag',
- componentProps: {
- dictCode: 'kindtype ',
- placeholder: '请选择所属系统',
- },
- // colProps: { span: 6 },
- },
- {
- label: '排序值',
- field: 'sortOrder',
- suffix: '值越小越靠前',
- component: 'InputNumber',
- },
- ];
|