| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- export default {
- height: 'auto',
- calcHeight: 30,
- tip: false,
- searchShow: true,
- searchMenuSpan: 6,
- border: true,
- index: true,
- addBtn: false,
- selection: true,
- searchLabelWidth: 140,
- labelWidth: 100,
- menuWidth: 180,
- menu: false,
- dialogClickModal: false,
- dialogWidth: 500,
- dialogType: "drawer",
- showSummary: true,
- sumColumnList: [
- {
- label:'合计:',
- name: 'averageMonthlySalary',
- type: 'sum',
- },
- {
- name: 'socSecTotal',
- type: 'sum',
- },
- {
- name: 'providentFund',
- type: 'sum',
- },
- {
- name: 'bonus',
- type: 'sum',
- },
- {
- name: 'benefit',
- type: 'sum',
- },
- {
- name: 'pensionInsuranceBc',
- type: 'sum',
- },
- {
- name: 'medicalInsuranceBc',
- type: 'sum',
- },
- {
- name: 'amount',
- type: 'sum',
- },
- ],
- column: [
- {
- label: '研发项目编号',
- prop: 'xmbh',
- span: 24,
- width: 100,
- align: 'center',
- showOverflowTooltip: true,
- },
- {
- label: '研发项目名称',
- prop: 'xmmc',
- span: 24,
- minWidth: 160,
- align: 'center',
- search: true,
- showOverflowTooltip: true,
- },
- {
- label: '研发项目分配的工资薪金',
- prop: 'averageMonthlySalary',
- span: 24,
- minWidth: 90,
- align: 'center',
- showOverflowTooltip: true,
- },
- {
- label: '研发项目分配的社保',
- prop: 'socSecTotal',
- span: 24,
- minWidth: 90,
- align: 'center',
- showOverflowTooltip: true,
- },
- {
- label: '研发项目分配的公积金',
- prop: 'providentFund',
- span: 24,
- minWidth: 90,
- align: 'center',
- showOverflowTooltip: true,
- },
- {
- label: '研发项目分配的奖金',
- prop: 'bonus',
- span: 24,
- minWidth: 90,
- align: 'center',
- showOverflowTooltip: true,
- },
- {
- label: '研发项目分配的福利费',
- prop: 'benefit',
- span: 24,
- minWidth: 90,
- align: 'center',
- showOverflowTooltip: true,
- },
- {
- label: '研发项目分配的补充养老保险',
- prop: 'pensionInsuranceBc',
- span: 24,
- minWidth: 90,
- align: 'center',
- showOverflowTooltip: true,
- },
- {
- label: '研发项目分配的补充医疗保险',
- prop: 'medicalInsuranceBc',
- span: 24,
- minWidth: 90,
- align: 'center',
- showOverflowTooltip: true,
- },
- {
- label: '研发费用合计(元)',
- prop: 'amount',
- span: 24,
- minWidth: 90,
- align: 'center',
- showOverflowTooltip: true,
- },
- ],
- };
|