|
|
@ -1,5 +1,5 @@ |
|
|
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
|
|
|
import { dateFormatter } from '@/utils/formatTime' |
|
|
|
import { dateFormatter, dateFormatterHHMMSS } from '@/utils/formatTime' |
|
|
|
|
|
|
|
// 表单校验
|
|
|
|
export const DeliTimeRules = reactive({ |
|
|
@ -36,23 +36,30 @@ export const DeliTimeWms = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
label: '开始时间', |
|
|
|
field: 'beginTime', |
|
|
|
sort: 'custom', |
|
|
|
formatter: dateFormatter, |
|
|
|
formatter: dateFormatterHHMMSS, |
|
|
|
isSearch: true, |
|
|
|
table: { |
|
|
|
width:120 |
|
|
|
}, |
|
|
|
search: { |
|
|
|
component: 'DatePicker', |
|
|
|
component: 'TimePicker', |
|
|
|
componentProps: { |
|
|
|
valueFormat: 'YYYY-MM-DD HH:mm:ss', |
|
|
|
type: 'daterange', |
|
|
|
defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] |
|
|
|
type: 'time', |
|
|
|
dateFormat: 'HH:mm:ss', |
|
|
|
valueFormat: 'x' |
|
|
|
} |
|
|
|
}, |
|
|
|
form: { |
|
|
|
component: 'DatePicker', |
|
|
|
component: 'TimePicker', |
|
|
|
componentProps: { |
|
|
|
type: 'datetime', |
|
|
|
type: 'time', |
|
|
|
dateFormat: 'HH:mm:ss', |
|
|
|
valueFormat: 'x' |
|
|
|
} |
|
|
|
}, |
|
|
|
detail: { |
|
|
|
dateFormat:'HH:mm:ss' |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '创建者', |
|
|
|