Browse Source

HL-5424 物料隔离任务 创建人创建时间

hella_online_20240823
TengXF 3 months ago
parent
commit
0f4219c99f
  1. 71
      src/views/wms/moveManage/inventorymove/inventorymoveJobMain/inventorymoveJobMain.data.ts

71
src/views/wms/moveManage/inventorymove/inventorymoveJobMain/inventorymoveJobMain.data.ts

@ -494,7 +494,7 @@ export const InventorymoveJobMain = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 180 width: 180
}, },
isTable: true, isTable: false,
form: { form: {
component: 'DatePicker', component: 'DatePicker',
componentProps: { componentProps: {
@ -503,7 +503,7 @@ export const InventorymoveJobMain = useCrudSchemas(reactive<CrudSchema[]>([
valueFormat: 'x', valueFormat: 'x',
} }
}, },
isSearch: true, isSearch: false,
search: { search: {
component: 'DatePicker', component: 'DatePicker',
componentProps: { componentProps: {
@ -520,7 +520,7 @@ export const InventorymoveJobMain = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
}, },
isTable: true, isTable: false,
}, },
{ {
label: '最后更新时间', label: '最后更新时间',
@ -806,34 +806,43 @@ export const InventorymoveJobDetail = useCrudSchemas(reactive<CrudSchema[]>([
// width: 150 // width: 150
// }, // },
// }, // },
// { {
// label: '创建时间', label: '创建时间',
// field: 'createTime', field: 'createTime',
// formatter: dateFormatter, formatter: dateFormatter,
// detail: { detail: {
// dateFormat: 'YYYY-MM-DD HH:mm:ss' dateFormat: 'YYYY-MM-DD HH:mm:ss'
// }, },
// sort: 'custom', sort: 'custom',
// table: { table: {
// width: 180 width: 180
// }, },
// form: { form: {
// component: 'DatePicker', component: 'DatePicker',
// componentProps: { componentProps: {
// type: 'datetime', type: 'datetime',
// dateFormat: 'YYYY-MM-DD HH:mm:ss', dateFormat: 'YYYY-MM-DD HH:mm:ss',
// valueFormat: 'x', valueFormat: 'x',
// } }
// }, },
// }, isSearch: true,
// { search: {
// label: '创建者', component: 'DatePicker',
// field: 'creator', componentProps: {
// sort: 'custom', valueFormat: 'YYYY-MM-DD HH:mm:ss',
// table: { type: 'daterange',
// width: 150 defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')]
// }, }
// }, },
},
{
label: '创建者',
field: 'creator',
sort: 'custom',
table: {
width: 150
},
},
])) ]))
//表单校验 //表单校验

Loading…
Cancel
Save