fix : 修改所有工单时间格式
This commit is contained in:
@@ -81,10 +81,10 @@ const searchConfig = reactive([
|
||||
component: 'el-input',
|
||||
},
|
||||
{
|
||||
label: '创建日期',
|
||||
label: '创建时间',
|
||||
prop: 'createdTime',
|
||||
props: {
|
||||
placeholder: '请选择',
|
||||
placeholder: '请选择创建时间',
|
||||
type: 'datetime',
|
||||
clearable: true,
|
||||
checkStrictly: true,
|
||||
@@ -96,18 +96,22 @@ const searchConfig = reactive([
|
||||
label: '处理时间',
|
||||
prop: 'processedTime',
|
||||
props: {
|
||||
placeholder: '请选择',
|
||||
placeholder: '请选择处理时间',
|
||||
type: 'datetime',
|
||||
clearable: true,
|
||||
checkStrictly: true
|
||||
checkStrictly: true,
|
||||
valueFormat: 'YYYY-MM-DD HH:mm:ss',
|
||||
},
|
||||
component: 'el-date-picker',
|
||||
}, {
|
||||
label: '完成时间',
|
||||
prop: 'completionTime',
|
||||
props: {
|
||||
placeholder: '请选择',
|
||||
placeholder: '请选择完成时间',
|
||||
type: 'datetime',
|
||||
clearable: true,
|
||||
checkStrictly: true
|
||||
checkStrictly: true,
|
||||
valueFormat: 'YYYY-MM-DD HH:mm:ss',
|
||||
},
|
||||
component: 'el-date-picker',
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user