diff --git a/src/views/wms/agvManage/backflushDetailbQad/backflushDetailbQad.data.ts b/src/views/wms/agvManage/backflushDetailbQad/backflushDetailbQad.data.ts index 8cf4a2e33..01ee0aa4e 100644 --- a/src/views/wms/agvManage/backflushDetailbQad/backflushDetailbQad.data.ts +++ b/src/views/wms/agvManage/backflushDetailbQad/backflushDetailbQad.data.ts @@ -39,7 +39,6 @@ export const BackflushDetailbQad = useCrudSchemas(reactive([ field: 'createTime', sort: 'custom', formatter: dateFormatter, - isSearch: true, search: { component: 'DatePicker', componentProps: { @@ -50,20 +49,52 @@ export const BackflushDetailbQad = useCrudSchemas(reactive([ }, isForm: false, }, + // { + // label: '创建者Id', + // field: 'creator', + // sort: 'custom', + // isForm: false, + // }, { - label: '创建者Id', - field: 'creator', - sort: 'custom', - isForm: false, - }, - { - label: '执行状态0未执行1成功2失败', + label: '执行状态', field: 'status', sort: 'custom', isSearch: true, - form: { - component: 'SelectV2' - }, + search: { + component: 'Select', + componentProps: { + options: [{ + value: 0, + label: '未执行' + }, + { + value: 1, + label: '成功' + }, + { + value: 2, + label: '失败' + }] + }, + }, + form: { + component: 'Select', + componentProps: { + options: [{ + value: 0, + label: '未执行' + }, + { + value: 1, + label: '成功' + }, + { + value: 2, + label: '失败' + }] + }, + }, + }, { label: '操作', diff --git a/src/views/wms/agvManage/backflushDetailbQad/index.vue b/src/views/wms/agvManage/backflushDetailbQad/index.vue index 38c711b8d..748ff3607 100644 --- a/src/views/wms/agvManage/backflushDetailbQad/index.vue +++ b/src/views/wms/agvManage/backflushDetailbQad/index.vue @@ -27,6 +27,9 @@ v-model:currentPage="tableObject.currentPage" v-model:sort="tableObject.sort" > +