perf: typo

This commit is contained in:
xingyu
2022-11-29 23:23:33 +08:00
parent 4e860eb254
commit 3cfa787ede
16 changed files with 181 additions and 54 deletions

View File

@ -11,10 +11,12 @@ const crudSchemas = reactive<VxeCrudSchema>({
columns: [
{
title: '文件名',
field: 'name'
},
{
title: '文件路径',
field: 'path',
search: {
show: true
}
isSearch: true
},
{
title: 'URL',
@ -25,9 +27,15 @@ const crudSchemas = reactive<VxeCrudSchema>({
}
}
},
{
title: '文件大小',
field: 'size',
formatter: 'formatSize'
},
{
title: '文件类型',
field: 'type'
field: 'type',
isSearch: true
},
{
title: t('common.createTime'),

View File

@ -23,16 +23,15 @@ const crudSchemas = reactive<VxeCrudSchema>({
{
title: '任务名称',
field: 'name',
search: {
show: true
}
isSearch: true
},
{
title: t('common.status'),
field: 'status',
dictType: DICT_TYPE.INFRA_JOB_STATUS,
dictClass: 'number',
isForm: false
isForm: false,
isSearch: true
},
{
title: '处理器的名字',

View File

@ -41,7 +41,7 @@ const crudSchemas = reactive<VxeCrudSchema>({
search: {
show: true,
itemRender: {
name: 'XDataTimePicker'
name: 'XDataPicker'
}
}
},
@ -53,7 +53,7 @@ const crudSchemas = reactive<VxeCrudSchema>({
search: {
show: true,
itemRender: {
name: 'XDataTimePicker'
name: 'XDataPicker'
}
}
},