| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- 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: 70,
- searchIcon: true,
- searchIndex: 2,
- column: [
- {
- label: "系统编号",
- prop: "sysNo",
- },
- {
- label: "客户",
- prop: "corpId",
- search: true,
- searchSpan: 8,
- },
- {
- label: "融资日期",
- prop: "financingDate",
- type: "date",
- format: 'yyyy-MM-dd',
- valueFormat: 'yyyy-MM-dd',
- search: true,
- searchSpan: 8,
- },
- {
- label: "融资类别",
- prop: "financingType",
- type: "select",
- dataType: 'number',
- props: {
- label: "dictValue",
- value: "dictKey"
- },
- dicData: [],
- },
- {
- label: "融资金额",
- prop: "financingAmount",
- },
- {
- label: "状态",
- prop: "status",
- type: "select",
- dataType: 'number',
- props: {
- label: "dictValue",
- value: "dictKey"
- },
- dicData: [],
- },
- {
- label: "备注",
- prop: "remarks",
- }
- ]
- }
- export const optionList ={
- align: "center",
- addBtn: false,
- refreshBtn: false,
- editBtn: false,
- delBtn: false,
- border: true,
- menuWidth: 120,
- stripe: true,
- column: [
- {
- label: "费用名称",
- prop: "feeId",
- overHidden: true,
- cell:true,
- width: 120,
- },
- {
- label: "计价单位",
- prop: "feeUnitId",
- overHidden: true,
- cell:true,
- width: 120,
- },
- {
- label: "开始天数",
- prop: "fromDays",
- overHidden: true,
- cell:true,
- width: 120,
- },
- {
- label: "结束天数",
- prop: "enDays",
- overHidden: true,
- cell:true,
- width: 120,
- },
- {
- label: "单价",
- prop: "price",
- overHidden: true,
- cell:true,
- width: 120,
- },
- {
- label: "状态",
- prop: "status",
- overHidden: true,
- cell:true,
- width: 120,
- },
- {
- label: "备注",
- prop: "remark",
- overHidden: true,
- cell:true,
- width: 120,
- },
- ]
- }
|