| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- 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: 'xmbh',
- span: 24,
- width: 100,
- align: 'center',
- type: 'input',
- showOverflowTooltip: true,
- disabled: true,
- },
- {
- label: '研发项目名称',
- prop: 'xmmc',
- type: 'input',
- span: 24,
- width: 110,
- align: 'center',
- search: true,
- showOverflowTooltip: true,
- disabled: true,
- },
- {
- label: '资产编码',
- prop: 'zcbm',
- type: 'input',
- span: 24,
- width: 90,
- align: 'center',
- showOverflowTooltip: true,
- disabled: true,
- },
- {
- label: '资产名称',
- prop: 'zcmc',
- span: 24,
- width: 110,
- align: 'center',
- search: true,
- showOverflowTooltip: true,
- disabled: true,
- },
- {
- label: '资产类别',
- prop: 'zclb',
- type: 'select',
- span: 24,
- width: 70,
- align: 'center',
- dicUrl: '/api/kd-system/dict-biz/dictionary?code=zclb',
- props: {
- label: 'dictValue',
- value: 'dictKey',
- },
- showOverflowTooltip: true,
- disabled: true,
- },
- {
- label: '用途',
- prop: 'yt',
- type: 'select',
- span: 24,
- width: 60,
- align: 'center',
- search: true,
- dicUrl: '/api/kd-system/dict-biz/dictionary?code=zcyt',
- props: {
- label: 'dictValue',
- value: 'dictKey',
- },
- showOverflowTooltip: true,
- disabled: true,
- },
- {
- label: '总工时',
- prop: 'zgs',
- type: 'number',
- precision: 1,
- min: 0,
- width: 50,
- align: 'center',
- showOverflowTooltip: true,
- },
- {
- label: '使用工时',
- prop: 'monthlyHours',
- type: 'number',
- span: 24,
- width: 50,
- align: 'center',
- showOverflowTooltip: true,
- display: false,
- search: true,
- },
- ],
- };
|