| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- export default {
- height: 'auto',
- calcHeight: 30,
- tip: false,
- searchShow: true,
- searchMenuSpan: 6,
- border: true,
- index: true,
- addBtn: false,
- menu: false,
- searchLabelWidth: 140,
- labelWidth: 140,
- menuWidth: 290,
- dialogClickModal: false,
- dialogWidth: 500,
- dialogType: "drawer",
- column: [
- {
- label: '月份',
- prop: 'yearAndMonth',
- span: 24,
- width: 65,
- align: 'center',
- showOverflowTooltip: true,
- },
- {
- label: '研发项目编号',
- prop: 'xmbh',
- span: 24,
- width: 100,
- align: 'center',
- showOverflowTooltip: true,
- },
- {
- label: '研发项目名称',
- prop: 'xmmc',
- span: 24,
- width: 120,
- search: true,
- showOverflowTooltip: true,
- },
- {
- label: '资产编号',
- prop: 'zcbm',
- type: 'input',
- span: 24,
- width: 100,
- align: 'center',
- showOverflowTooltip: true,
- },
- {
- label: '无形资产名称',
- prop: 'zcmc',
- type: 'input',
- span: 24,
- minWidth: 120,
- search: true,
- showOverflowTooltip: true,
- },
- {
- label: '资产类别',
- prop: 'zclb',
- type: 'select',
- dicUrl: '/api/kd-system/dict/dictionary?code=zclb',
- props: {
- label: 'dictValue',
- value: 'dictKey',
- },
- span: 24,
- width: 90,
- align: 'center',
- showOverflowTooltip: true,
- search: true,
- },
- {
- label: '功率',
- prop: 'gl',
- type: 'number',
- span: 24,
- width: 60,
- align: 'center',
- showOverflowTooltip: true,
- display: true
- },
- {
- label: '用途',
- prop: 'yt',
- type: 'select',
- dicUrl: '/api/kd-system/dict/dictionary?code=zcyt',
- props: {
- label: 'dictValue',
- value: 'dictKey',
- },
- search: true,
- span: 24,
- width: 65,
- align: 'center',
- showOverflowTooltip: true,
- },
- {
- label: '资产原值(元)',
- prop: 'zcyz',
- type: 'number',
- span: 24,
- width: 90,
- align: 'center',
- search: true,
- showOverflowTooltip: true,
- },
- {
- label: '净残值率(%)',
- prop: 'jcz',
- type: 'number',
- span: 24,
- width: 70,
- align: 'center',
- search: true,
- showOverflowTooltip: true,
- },
- {
- label: '月摊销额(每节点/套)',
- prop: 'ytxe',
- type: 'number',
- span: 24,
- minWidth: 110,
- align: 'center',
- search: true,
- showOverflowTooltip: true,
- },
- {
- label: '月使用工时(L)',
- prop: 'attendanceHours',
- type: 'number',
- span: 24,
- minWidth: 90,
- align: 'center',
- search: true,
- showOverflowTooltip: true,
- },
- {
- label: '月研发工时(M)',
- prop: 'workHours',
- type: 'number',
- span: 24,
- minWidth: 90,
- align: 'center',
- search: true,
- showOverflowTooltip: true,
- },
- {
- label: '研发分摊率(%)',
- prop: 'yanfaFenTanLv',
- type: 'number',
- span: 24,
- minWidth: 90,
- align: 'center',
- showOverflowTooltip: true,
- },
- {
- label: '研发摊销',
- prop: 'yanfaTanXiao',
- type: 'number',
- span: 24,
- minWidth: 90,
- align: 'center',
- showOverflowTooltip: true,
- },
- ],
- };
|