| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- export default {
- height: 'auto',
- calcHeight: 30,
- tip: false,
- searchShow: true,
- searchMenuSpan: 6,
- border: true,
- index: true,
- addBtn: false,
- selection: false,
- searchLabelWidth: 140,
- labelWidth: 100,
- menuWidth: 180,
- menu: false,
- dialogClickModal: false,
- dialogWidth: 500,
- dialogType: "drawer",
- column: [
- {
- label: '姓名',
- prop: 'name',
- span: 24,
- search: true,
- width: 90,
- align: 'center',
- type: 'input',
- showOverflowTooltip: true,
- disabled: true,
- },
- {
- label: '工号',
- prop: 'number',
- type: 'input',
- span: 24,
- width: 90,
- align: 'center',
- search: true,
- showOverflowTooltip: true,
- disabled: true,
- },
- {
- label: '身份证号',
- prop: 'idCard',
- type: 'input',
- span: 24,
- search: true,
- width: 150,
- align: 'center',
- showOverflowTooltip: true,
- disabled: true,
- },
- {
- label: '科研人员类别',
- prop: 'personnelType',
- type: 'select',
- span: 24,
- width: 100,
- align: 'center',
- search: true,
- dicUrl: '/api/kd-system/dict/dictionary?code=renyuanleixing',
- props: {
- label: 'dictValue',
- value: 'dictKey',
- },
- showOverflowTooltip: true,
- disabled: true,
- },
- {
- label: '类别',
- prop: 'gslb',
- span: 24,
- width: 90,
- align: 'center',
- showOverflowTooltip: true,
- },
- ],
- };
|