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