初始代码

This commit is contained in:
hhh
2026-04-02 10:38:23 +08:00
parent d8b4140f50
commit aed67ce1fd
1937 changed files with 447678 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
-- =====================================================
-- 设备状态页面新增OEE和报工按钮权限
-- 说明:为设备状态(index.vue)和设备列表(indexLibiao.vue)页面的OEE和报工按钮添加权限控制
-- 父菜单:设备状态(menu_id=2205)
-- =====================================================
-- 新增"查看OEE"按钮权限
INSERT INTO `sys_menu` (`menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`)
VALUES ('查看OEE', 2205, 6, '', '', '', 1, 0, 'F', '0', '0', 'equipment:equipment:oee', '#', 'admin', NOW(), '', NOW(), '设备状态/设备列表-查看OEE按钮');
-- 新增"跳转报工"按钮权限
INSERT INTO `sys_menu` (`menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`)
VALUES ('跳转报工', 2205, 7, '', '', '', 1, 0, 'F', '0', '0', 'equipment:equipment:report', '#', 'admin', NOW(), '', NOW(), '设备状态/设备列表-跳转报工按钮');