保存进度!

This commit is contained in:
2022-12-15 09:25:51 +08:00
parent 5c72437e2d
commit 5dcff64bf5
130 changed files with 0 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;