| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- export default {
- height: 'auto',
- calcHeight: 30,
- tip: false,
- searchShow: true,
- searchMenuSpan: 6,
- border: true,
- index: true,
- selection: false,
- addBtn: false,
- searchLabelWidth: 140,
- labelWidth: 140,
- menu: false,
- dialogClickModal: false,
- dialogWidth: 760,
- dialogType: "drawer",
- column: [
- {
- label: '研发项目名称',
- prop: 'xmmc',
- span: 12,
- search: true,
- align: 'center',
- minWidth: 160,
- showOverflowTooltip: true,
- },
- {
- label: '姓名',
- prop: 'name',
- span: 12,
- search: true,
- width: 100,
- align: 'center',
- showOverflowTooltip: true,
- },
- {
- label: '工号',
- prop: 'number',
- span: 12,
- width: 130,
- align: 'center',
- search: true,
- showOverflowTooltip: true,
- },
- {
- label: '身份证号',
- prop: 'idCard',
- span: 12,
- search: true,
- width: 155,
- align: 'center',
- showOverflowTooltip: true,
- },
- {
- label: '所属二级单位',
- prop: 'secondaryUnit',
- type: 'input',
- span: 12,
- width: 140,
- search: true,
- align: 'center',
- showOverflowTooltip: true,
- },
- {
- label: '部门/科室/项目部',
- prop: 'department',
- type: 'input',
- span: 12,
- width: 140,
- search: true,
- align: 'center',
- showOverflowTooltip: true,
- },
- {
- label: '岗位职务',
- prop: 'post',
- type: 'input',
- span: 12,
- width: 100,
- align: 'center',
- search: true,
- showOverflowTooltip: true,
- },
- {
- label: '岗位所在地',
- prop: 'postLocation',
- type: 'input',
- span: 12,
- width: 100,
- showOverflowTooltip: true,
- align: 'center',
- },
- {
- label: '用工性质',
- prop: 'nature',
- type: 'select',
- span: 12,
- width: 80,
- align: 'center',
- search: true,
- dicUrl: '/api/kd-system/dict-biz/dictionary?code=yonggongxingzhi',
- props: {
- label: 'dictValue',
- value: 'dictKey',
- },
- showOverflowTooltip: true,
- },
- {
- label: '参研情况',
- prop: 'situation',
- type: 'select',
- span: 12,
- width: 70,
- align: 'center',
- search: true,
- dicUrl: '/api/kd-system/dict-biz/dictionary?code=canyanqingkuang',
- props: {
- label: 'dictValue',
- value: 'dictKey',
- },
- showOverflowTooltip: true,
- },
- {
- label: '人员类型',
- prop: 'personnelType',
- type: 'select',
- span: 12,
- width: 80,
- align: 'center',
- search: true,
- dicUrl: '/api/kd-system/dict-biz/dictionary?code=renyuanleixing',
- props: {
- label: 'dictValue',
- value: 'dictKey',
- },
- showOverflowTooltip: true,
- },
- // {
- // label: '参与月份',
- // prop: 'yearAndMonth',
- // span: 12,
- // width: 100,
- // align: 'center',
- // showOverflowTooltip: true,
- // }
- ],
- };
|