|
@ -8,12 +8,6 @@ export const OnlinesettlementInfoDetailRules = reactive({ |
|
|
}) |
|
|
}) |
|
|
|
|
|
|
|
|
export const OnlinesettlementInfoDetail = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
export const OnlinesettlementInfoDetail = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
{ |
|
|
|
|
|
label: 'id', |
|
|
|
|
|
field: 'id', |
|
|
|
|
|
sort: 'custom', |
|
|
|
|
|
isForm: false, |
|
|
|
|
|
}, |
|
|
|
|
|
{ |
|
|
{ |
|
|
label: '单据号', |
|
|
label: '单据号', |
|
|
field: 'number', |
|
|
field: 'number', |
|
@ -24,39 +18,29 @@ export const OnlinesettlementInfoDetail = useCrudSchemas(reactive<CrudSchema[]>( |
|
|
label: '主表ID', |
|
|
label: '主表ID', |
|
|
field: 'masterId', |
|
|
field: 'masterId', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
isSearch: true, |
|
|
isTable:false, |
|
|
form: { |
|
|
|
|
|
component: 'InputNumber', |
|
|
|
|
|
value: 0 |
|
|
|
|
|
}, |
|
|
|
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
label: '结算数量', |
|
|
label: '结算数量', |
|
|
field: 'settlementQty', |
|
|
field: 'settlementQty', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
isSearch: true, |
|
|
|
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
label: '结算记录单号', |
|
|
label: '结算记录单号', |
|
|
field: 'settlementRecordNumber', |
|
|
field: 'settlementRecordNumber', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
isSearch: true, |
|
|
|
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
label: '结算业务类型', |
|
|
label: '结算业务类型', |
|
|
field: 'settlementBusinessType', |
|
|
field: 'settlementBusinessType', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
isSearch: true, |
|
|
|
|
|
form: { |
|
|
|
|
|
component: 'SelectV2' |
|
|
|
|
|
}, |
|
|
|
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
label: '结算日期', |
|
|
label: '结算日期', |
|
|
field: 'settlementDatetime', |
|
|
field: 'settlementDatetime', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
formatter: dateFormatter, |
|
|
formatter: dateFormatter, |
|
|
isSearch: true, |
|
|
isSearch: false, |
|
|
search: { |
|
|
search: { |
|
|
component: 'DatePicker', |
|
|
component: 'DatePicker', |
|
|
componentProps: { |
|
|
componentProps: { |
|
@ -73,16 +57,6 @@ export const OnlinesettlementInfoDetail = useCrudSchemas(reactive<CrudSchema[]>( |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
|
|
|
label: '并发乐观锁', |
|
|
|
|
|
field: 'concurrencyStamp', |
|
|
|
|
|
sort: 'custom', |
|
|
|
|
|
isSearch: true, |
|
|
|
|
|
form: { |
|
|
|
|
|
component: 'InputNumber', |
|
|
|
|
|
value: 0 |
|
|
|
|
|
}, |
|
|
|
|
|
}, |
|
|
|
|
|
{ |
|
|
{ |
|
|
label: '备注', |
|
|
label: '备注', |
|
|
field: 'remark', |
|
|
field: 'remark', |
|
@ -105,13 +79,13 @@ export const OnlinesettlementInfoDetail = useCrudSchemas(reactive<CrudSchema[]>( |
|
|
}, |
|
|
}, |
|
|
isForm: false, |
|
|
isForm: false, |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
// {
|
|
|
label: '操作', |
|
|
// label: '操作',
|
|
|
field: 'action', |
|
|
// field: 'action',
|
|
|
isForm: false, |
|
|
// isForm: false,
|
|
|
table: { |
|
|
// table: {
|
|
|
width: 150, |
|
|
// width: 150,
|
|
|
fixed: 'right' |
|
|
// fixed: 'right'
|
|
|
} |
|
|
// }
|
|
|
} |
|
|
// }
|
|
|
])) |
|
|
])) |
|
|