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'),