邮箱账号,增加详情弹窗

This commit is contained in:
YunaiV
2023-04-05 20:45:19 +08:00
parent 37ffc2bf37
commit 06e1e27652
3 changed files with 49 additions and 2 deletions

View File

@ -61,12 +61,16 @@ const crudSchemas = reactive<CrudSchema[]>([
label: '创建时间',
field: 'createTime',
isForm: false,
formatter: dateFormatter
formatter: dateFormatter,
detail: {
dateFormat: 'YYYY-MM-DD HH:mm:ss'
}
},
{
label: '操作',
field: 'action',
isForm: false
isForm: false,
isDetail: false
}
])
export const { allSchemas } = useCrudSchemas(crudSchemas)