Merge pull request #2906 from dataease/pr@dev@fix_plugin_icon

fix(系统管理-插件管理): 替换菜单图标
This commit is contained in:
fit2cloud-chenyw 2022-08-23 12:43:00 +08:00 committed by GitHub
commit f99bbfcaee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,3 +35,9 @@ CREATE TABLE IF NOT EXISTS `sys_param_assist` (
ALTER TABLE `sys_task_email`
MODIFY COLUMN `view_ids` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '关联视图' AFTER `task_id`;
BEGIN;
update `sys_menu` set icon = 'plugins-new' where `menu_id` = 101;
update `sys_menu` set icon = 'sys-setting' where `menu_id` = 700;
update `sys_menu` set icon = 'sys-param' where `menu_id` = 6;
update `sys_menu` set icon = 'display-setting' where `menu_id` = 710;
COMMIT;