创建项目

This commit is contained in:
2023-01-29 09:13:43 +08:00
parent e8c34e4758
commit f000da0167
212 changed files with 64998 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
const globalData = {
whether: [
{ value: "1", label: "是" },
{ value: "0", label: "否" },
]
}
export default globalData;

View File

@@ -0,0 +1,15 @@
const elemCode = {
// 信息模块
"init:add": 'M001F001E001', // 信息 - 添加按钮
"init:edit": 'M001F001E002', // 信息 -编辑按钮
"init:del": 'M001F001E003', // 信息 -删除按钮
// 菜单模块
"menu:add": 'M002F001E001', // 菜单 - 添加按钮
"menu:edit": 'M002F001E002', // 菜单 -编辑按钮
"menu:del": 'M002F001E003', // 菜单 -删除按钮
// 角色模块
"role:add": 'M003F001E001', // 角色 - 添加按钮
"role:edit": 'M003F001E002', // 角色 -编辑按钮
"role:del": 'M003F001E003', // 角色 -删除按钮
}
export default elemCode;