初始化

This commit is contained in:
aixianling
2021-12-14 18:36:19 +08:00
parent 9afa4101b6
commit a8dff862d2
327 changed files with 88702 additions and 0 deletions

7
packages/core.import.js Normal file
View File

@@ -0,0 +1,7 @@
export default [
{label: "账号管理", name: "AppAccount"},
{label: "数据字典", name: "AppDictionary"},
{label: "企业微信配置", name: "AppQyWxConfig"},
{label: "个人中心", name: "AppUserInfo"},
{label: "权限管理", name: "AppRightsManager"},
].map(e => ({...e, component: require(`../core/apps/${e.name}/${e.name}`)?.default}))