| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- export default {
- height: 'auto',
- calcHeight: 30,
- tip: false,
- searchShow: true,
- searchMenuSpan: 6,
- border: true,
- index: true,
- selection: true,
- searchLabelWidth: 140,
- labelWidth: 130,
- menuWidth: 140,
- dialogClickModal: false,
- dialogWidth: 500,
- dialogType: "drawer",
- showSummary: true,
- sumColumnList: [
- {
- name: 'amount',
- type: 'sum',
- },
- ],
- column: [
- {
- label: '研发项目编号',
- prop: 'xmbh',
- type: 'input',
- span: 24,
- width: 100,
- align: 'center',
- showOverflowTooltip: true,
- display: false,
- },
- {
- label: '研发项目名称',
- prop: 'xmmc',
- span: 24,
- minWidth: 160,
- search: true,
- showOverflowTooltip: true,
- display: false
- },
- {
- label: '研发项目名称',
- prop: 'xmId',
- type: 'select',
- span: 24,
- showOverflowTooltip: true,
- rules: [
- {
- required: true,
- message: '请选择研发项目名称',
- trigger: 'blur',
- },
- ],
- hide: true,
- },
- {
- label: '费用类型',
- prop: 'type',
- span: 24,
- width: 100,
- align: 'center',
- display: false,
- showOverflowTooltip: true,
- },
- {
- label: '日期',
- prop: 'rq',
- type: 'date',
- valueFormat: 'yyyy-MM-dd',
- span: 24,
- width: 90,
- align: 'center',
- search: true,
- showOverflowTooltip: true,
- rules: [{
- required: true,
- message: '请选择日期',
- trigger: 'blur'
- }]
- },
- {
- label: '受托方全称',
- prop: 'stfqcId',
- type: 'select',
- dicData: [],
- props: {
- label: 'stfqc',
- value: 'id'
- },
- span: 24,
- width: 140,
- hide: true,
- showOverflowTooltip: true,
- rules: [{
- required: true,
- message: '请选择受托方全称',
- trigger: 'blur'
- }]
- },
- {
- label: '受托方全称',
- prop: 'stfqc',
- span: 24,
- width: 140,
- display: false,
- showOverflowTooltip: true,
- },
- {
- label: '受托方类型',
- prop: 'stflx',
- span: 24,
- type: 'select',
- width: 100,
- align: 'center',
- dicUrl: '/api/kd-system/dict-biz/dictionary?code=trustee_type',
- props: {
- label: 'dictValue',
- value: 'dictKey',
- },
- display: false,
- search: true,
- showOverflowTooltip: true,
- },
- {
- label: '合同名称',
- prop: 'htmc',
- width: 110,
- span: 24,
- display: false,
- showOverflowTooltip: true,
- },
- {
- label: '委外费用金额(元)',
- prop: 'wwje',
- width: 100,
- align: 'center',
- span: 24,
- type: 'number',
- min: 0,
- precision: 2,
- showOverflowTooltip: true,
- rules: [{
- required: true,
- message: '请输入委外费用金额',
- trigger: 'blur'
- }]
- },
- {
- label: '是否完成技术合同登记',
- prop: 'sfwcjshtdj',
- width: 100,
- align: 'center',
- span: 24,
- type: 'select',
- dicUrl: '/api/kd-system/dict-biz/dictionary?code=yes_or_no',
- props: {
- label: 'dictValue',
- value: 'dictKey',
- },
- display: false,
- search: true,
- showOverflowTooltip: true,
- },
- {
- label: '技术合同类型',
- prop: 'jshtdjlx',
- width: 100,
- align: 'center',
- span: 24,
- type: 'select',
- dicUrl: '/api/kd-system/dict-biz/dictionary?code=contract_registration_type',
- props: {
- label: 'dictValue',
- value: 'dictKey',
- },
- display: false,
- search: true,
- showOverflowTooltip: true,
- },
- {
- label: '技术合同登记金额(万元)',
- prop: 'jshtdjje',
- width: 130,
- align: 'center',
- span: 24,
- type: 'number',
- min: 0,
- precision: 2,
- display: false,
- showOverflowTooltip: true,
- },
- ],
- };
|