Browse Source

BUG修改

hella_online_20240829
叶佳兴 7 months ago
parent
commit
82f0c124b5
  1. 16
      src/utils/formatTime.ts
  2. 70
      src/views/wms/basicDataManage/orderManage/shift/shift.data.ts

16
src/utils/formatTime.ts

@ -30,7 +30,6 @@ export function addDay(date: Date | number,addDay:number) {
return dayjs(date).add(addDay, 'day') return dayjs(date).add(addDay, 'day')
} }
/** /**
* + * +
*/ */
@ -163,6 +162,21 @@ export const dateFormatter = (row, column, cellValue) => {
} }
return formatDate(cellValue) return formatDate(cellValue)
} }
/**
* element plus Formatter 使 YYYY-MM-DD HH:mm:ss
*
* @param row
* @param column
* @param cellValue
*/
// @ts-ignore
export const dateFormatter3 = (row, column, cellValue) => {
if (!cellValue) {
return
}
let str = formatDate(cellValue).split(' ')[1]
return str
}
// 获取时间戳 // 获取时间戳
export const formatGetTime = (row, column, cellValue) => { export const formatGetTime = (row, column, cellValue) => {
console.log(cellValue.getTime()) console.log(cellValue.getTime())

70
src/views/wms/basicDataManage/orderManage/shift/shift.data.ts

@ -1,5 +1,5 @@
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
import { dateFormatter } from '@/utils/formatTime' import { dateFormatter, dateFormatter3 } from '@/utils/formatTime'
const { t } = useI18n() // 国际化 const { t } = useI18n() // 国际化
import { validateYS } from '@/utils/validator' import { validateYS } from '@/utils/validator'
@ -7,7 +7,8 @@ import {validateYS} from '@/utils/validator'
/** /**
* @returns {Array} * @returns {Array}
*/ */
export const Shift = useCrudSchemas(reactive<CrudSchema[]>([ export const Shift = useCrudSchemas(
reactive<CrudSchema[]>([
{ {
label: '代码', label: '代码',
field: 'code', field: 'code',
@ -16,7 +17,7 @@ export const Shift = useCrudSchemas(reactive<CrudSchema[]>([
width: 150, width: 150,
fixed: 'left' fixed: 'left'
}, },
isSearch: true, isSearch: true
}, },
{ {
label: '名称', label: '名称',
@ -24,19 +25,19 @@ export const Shift = useCrudSchemas(reactive<CrudSchema[]>([
sort: 'custom', sort: 'custom',
table: { table: {
width: 150 width: 150
}, }
}, },
{ {
label: '开始时间', label: '开始时间',
field: 'beginTime', field: 'beginTime',
isTable: true, isTable: true,
formatter: dateFormatter, formatter: dateFormatter3,
detail: { detail: {
dateFormat: 'HH:mm:ss' dateFormat: 'HH:mm:ss'
}, },
sort: 'custom', sort: 'custom',
table: { table: {
width: 180, width: 180
}, },
form: { form: {
component: 'TimePicker', component: 'TimePicker',
@ -44,7 +45,7 @@ export const Shift = useCrudSchemas(reactive<CrudSchema[]>([
style: { width: '100%' }, style: { width: '100%' },
type: 'time', type: 'time',
dateFormat: 'HH:mm:ss', dateFormat: 'HH:mm:ss',
valueFormat: 'x', valueFormat: 'x'
} }
}, },
isSearch: false, isSearch: false,
@ -53,7 +54,7 @@ export const Shift = useCrudSchemas(reactive<CrudSchema[]>([
component: 'TimePicker', component: 'TimePicker',
componentProps: { componentProps: {
valueFormat: 'HH:mm:ss', valueFormat: 'HH:mm:ss',
type: 'timeSelect', type: 'timeSelect'
} }
} }
}, },
@ -61,9 +62,9 @@ export const Shift = useCrudSchemas(reactive<CrudSchema[]>([
label: '结束时间', label: '结束时间',
field: 'entTime', field: 'entTime',
isTable: true, isTable: true,
formatter: dateFormatter, formatter: dateFormatter3,
detail: { detail: {
dateFormat: 'HH:mm:ss', dateFormat: 'HH:mm:ss'
}, },
sort: 'custom', sort: 'custom',
table: { table: {
@ -75,7 +76,7 @@ export const Shift = useCrudSchemas(reactive<CrudSchema[]>([
style: { width: '100%' }, style: { width: '100%' },
type: 'time', type: 'time',
dateFormat: 'HH:mm:ss', dateFormat: 'HH:mm:ss',
valueFormat: 'x', valueFormat: 'x'
} }
}, },
isSearch: false, isSearch: false,
@ -84,7 +85,7 @@ export const Shift = useCrudSchemas(reactive<CrudSchema[]>([
component: 'TimePicker', component: 'TimePicker',
componentProps: { componentProps: {
valueFormat: 'HH:mm:ss', valueFormat: 'HH:mm:ss',
type: 'timeSelect', type: 'timeSelect'
} }
} }
}, },
@ -105,7 +106,7 @@ export const Shift = useCrudSchemas(reactive<CrudSchema[]>([
inactiveValue: 'FALSE', inactiveValue: 'FALSE',
activeValue: 'TRUE' activeValue: 'TRUE'
} }
}, }
}, },
{ {
label: '是否可用', label: '是否可用',
@ -125,7 +126,7 @@ export const Shift = useCrudSchemas(reactive<CrudSchema[]>([
inactiveValue: 'FALSE', inactiveValue: 'FALSE',
activeValue: 'TRUE' activeValue: 'TRUE'
} }
}, }
}, },
{ {
label: '生效时间', label: '生效时间',
@ -145,9 +146,9 @@ export const Shift = useCrudSchemas(reactive<CrudSchema[]>([
style: { width: '100%' }, style: { width: '100%' },
type: 'datetime', type: 'datetime',
dateFormat: 'YYYY-MM-DD HH:mm:ss', dateFormat: 'YYYY-MM-DD HH:mm:ss',
valueFormat: 'x', valueFormat: 'x'
}
} }
},
}, },
{ {
label: '失效时间', label: '失效时间',
@ -167,9 +168,9 @@ export const Shift = useCrudSchemas(reactive<CrudSchema[]>([
style: { width: '100%' }, style: { width: '100%' },
type: 'datetime', type: 'datetime',
dateFormat: 'YYYY-MM-DD HH:mm:ss', dateFormat: 'YYYY-MM-DD HH:mm:ss',
valueFormat: 'x', valueFormat: 'x'
}
} }
},
}, },
{ {
label: '备注', label: '备注',
@ -177,7 +178,7 @@ export const Shift = useCrudSchemas(reactive<CrudSchema[]>([
sort: 'custom', sort: 'custom',
table: { table: {
width: 150 width: 150
}, }
}, },
{ {
label: '创建时间', label: '创建时间',
@ -196,7 +197,7 @@ export const Shift = useCrudSchemas(reactive<CrudSchema[]>([
style: { width: '100%' }, style: { width: '100%' },
type: 'datetime', type: 'datetime',
dateFormat: 'YYYY-MM-DD HH:mm:ss', dateFormat: 'YYYY-MM-DD HH:mm:ss',
valueFormat: 'x', valueFormat: 'x'
} }
} }
}, },
@ -229,7 +230,7 @@ export const Shift = useCrudSchemas(reactive<CrudSchema[]>([
style: { width: '100%' }, style: { width: '100%' },
type: 'datetime', type: 'datetime',
dateFormat: 'YYYY-MM-DD HH:mm:ss', dateFormat: 'YYYY-MM-DD HH:mm:ss',
valueFormat: 'x', valueFormat: 'x'
} }
} }
}, },
@ -253,7 +254,8 @@ export const Shift = useCrudSchemas(reactive<CrudSchema[]>([
fixed: 'right' fixed: 'right'
} }
} }
])) ])
)
//表单校验 //表单校验
export const ShiftRules = reactive({ export const ShiftRules = reactive({
@ -262,22 +264,10 @@ export const ShiftRules = reactive({
{ max: 50, message: '不得超过50个字符', trigger: 'blur' }, { max: 50, message: '不得超过50个字符', trigger: 'blur' },
{ validator: validateYS, message: '请输入正确的代码', trigger: 'blur' } { validator: validateYS, message: '请输入正确的代码', trigger: 'blur' }
], ],
name: [ name: [{ max: 50, message: '不得超过50个字符', trigger: 'blur' }],
{ max: 50, message: '不得超过50个字符', trigger: 'blur' } remark: [{ max: 50, message: '不得超过50个字符', trigger: 'blur' }],
], beginTime: [{ required: true, message: '请输入开始时间', trigger: 'blur' }],
remark: [ entTime: [{ required: true, message: '请输入结束时间', trigger: 'blur' }],
{ max: 50, message: '不得超过50个字符', trigger: 'blur' } endAtNextDay: [{ required: true, message: '请选择是否跨天', trigger: 'change' }],
], available: [{ required: true, message: '请选择是否可用', trigger: 'change' }]
beginTime: [
{ required: true, message: '请输入开始时间', trigger: 'blur' }
],
entTime: [
{ required: true, message: '请输入结束时间', trigger: 'blur' }
],
endAtNextDay: [
{ required: true, message: '请选择是否跨天', trigger: 'change' }
],
available: [
{ required: true, message: '请选择是否可用', trigger: 'change' }
],
}) })

Loading…
Cancel
Save