| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- export const option ={
- searchShow: true,
- searchMenuSpan: 8,
- align: "center",
- searchSpan: 8,
- tip: false,
- border: true,
- index: true,
- addBtn: false,
- viewBtn: false,
- editBtn: false,
- delBtn: false,
- menuWidth: 90,
- searchIcon: true,
- searchIndex: 2,
- column: [
- {
- label: "系统编号",
- prop: "sysNo",
- },
- {
- label: "客户",
- prop: "corpId",
- searchSpan: 8,
- },
- {
- label: "融资日期",
- prop: "financingDate",
- type: "date",
- format: 'yyyy-MM-dd',
- valueFormat: 'yyyy-MM-dd',
- searchSpan: 8,
- },
- {
- label: "融资类别",
- prop: "financingType",
- type: "select",
- dataType: 'number',
- props: {
- label: "dictValue",
- value: "dictKey"
- },
- dicData: [],
- },
- {
- label: "融资金额",
- prop: "financingAmount",
- },
- {
- label: "通过公司",
- prop: "company",
- }
- ]
- }
- export const optionList ={
- align: "center",
- addBtn: false,
- refreshBtn: false,
- editBtn: false,
- delBtn: false,
- border: true,
- menuWidth: 120,
- stripe: true,
- column: [
- {
- label: "分类明细",
- prop: "parameter",
- overHidden: true,
- index: 1
- },
- {
- label: "工资标准",
- prop: "salary",
- precision: 2,
- type: "number",
- controls: false,
- overHidden: true,
- cell: true,
- index: 2
- },
- {
- label: "工作量工资标准",
- prop: "workloadSalaryName",
- precision: 2,
- type: "number",
- controls: false,
- overHidden: true,
- cell: true,
- hide: true,
- showColumn: false,
- width: 120,
- index: 3
- },
- {
- label: "虚拟工作量工资标准",
- prop: "virtualWorkloadSalary",
- precision: 2,
- type: "number",
- controls: false,
- overHidden: true,
- cell: true,
- hide: true,
- showColumn: false,
- width: 140,
- index: 4
- },
- {
- label: "双休日工作量工资标准",
- prop: "doubleCease",
- precision: 2,
- type: "number",
- controls: false,
- overHidden: true,
- cell: true,
- hide: true,
- showColumn: false,
- width: 160,
- index: 5
- },
- {
- label: "日常考核工资标准",
- prop: "dailyAssessmentCriteriaName",
- precision: 2,
- type: "number",
- controls: false,
- overHidden: true,
- cell: true,
- hide: true,
- showColumn: false,
- width: 120,
- index: 6
- },
- {
- label: "虚拟双休日工作量工资标准",
- prop: "virtualDoubleCease",
- precision: 2,
- type: "number",
- controls: false,
- overHidden: true,
- cell: true,
- hide: true,
- showColumn: false,
- width: 170,
- index: 7
- },
- {
- label: "虚拟日常考核标准",
- prop: "virtualDailyAssessmentCriteria",
- precision: 2,
- type: "number",
- controls: false,
- overHidden: true,
- cell: true,
- hide: true,
- showColumn: false,
- width: 120,
- index: 8
- },
- {
- label: "学期绩效工资标准",
- prop: "termPerformanceSalaryName",
- precision: 2,
- type: "number",
- controls: false,
- overHidden: true,
- cell: true,
- hide: true,
- showColumn: false,
- width: 120,
- index: 9
- },
- {
- label: "备注",
- prop: "remarks",
- overHidden: true,
- cell: true,
- index: 10
- }
- ]
- }
|