| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- export default {
- height: 'auto',
- calcHeight: 30,
- tip: false,
- searchShow: true,
- searchMenuSpan: 6,
- border: true,
- index: true,
- addBtn: false,
- delBtnText: '清除考勤数据',
- selection: true,
- searchLabelWidth: 140,
- labelWidth: 100,
- menuWidth: 180,
- 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-biz/dictionary?code=renyuanleixing',
- props: {
- label: 'dictValue',
- value: 'dictKey',
- },
- showOverflowTooltip: true,
- disabled: true,
- },
- ],
- };
|