vue3:review 代码生成、文件配置、文件列表、配置管理、访问日志、错误日志、定时任务

This commit is contained in:
YunaiV
2022-11-26 23:05:29 +08:00
parent c5f1cad033
commit e1a05c1374
11 changed files with 32 additions and 3 deletions

View File

@ -16,7 +16,7 @@ export const rules = reactive({
// CrudSchema
const crudSchemas = reactive<VxeCrudSchema>({
primaryKey: 'id',
primaryType: 'seq',
primaryType: null,
action: true,
columns: [
{
@ -91,4 +91,5 @@ const crudSchemas = reactive<VxeCrudSchema>({
}
]
})
// TODO 星语:“创建时间”的筛选,超过 table 的边框
export const { allSchemas } = useVxeCrudSchemas(crudSchemas)