This commit is contained in:
walkor 2022-12-11 21:35:16 +08:00
parent 525ac3c926
commit c42d7e5c0e
2 changed files with 4 additions and 3 deletions

View File

@ -62,8 +62,8 @@ layui.define(["jquery","layer"], function (exports) {
style += 'xm-select > .xm-body .xm-toolbar .toolbar-tag:hover{color:'+color+'!important;}';//变更 style += 'xm-select > .xm-body .xm-toolbar .toolbar-tag:hover{color:'+color+'!important;}';//变更
style += '.layui-layer-dialog .layui-layer-content .layui-icon-ok{color:'+color+'!important;}';//变更 style += '.layui-layer-dialog .layui-layer-content .layui-icon-ok{color:'+color+'!important;}';//变更
style += '.layui-layer-dialog .layui-layer-content .layui-icon-ok{color:'+color+'!important;}';//变更 style += '.layui-layer-dialog .layui-layer-content .layui-icon-ok{color:'+color+'!important;}';//变更
style += 'a{color:'+color+'!important;opacity:.8}';//变更 style += 'a{color:'+color+';opacity:.8}';//变更
style += 'a:hover{color:'+color+'!important;opacity:1}';//变更 style += 'a:hover{color:'+color+';opacity:1}';//变更
style += '.pear-this,.pear-text{color:' + color + '!important}'; style += '.pear-this,.pear-text{color:' + color + '!important}';
style += '.pear-back{background-color:'+ color +'!important}'; style += '.pear-back{background-color:'+ color +'!important}';
style += '.pear-collapsed-pe{background-color:'+color+'!important}' style += '.pear-collapsed-pe{background-color:'+color+'!important}'

View File

@ -78,6 +78,7 @@ CREATE TABLE `wa_roles` (
`rules` text COMMENT '权限', `rules` text COMMENT '权限',
`created_at` datetime NOT NULL COMMENT '创建时间', `created_at` datetime NOT NULL COMMENT '创建时间',
`updated_at` datetime NOT NULL COMMENT '更新时间', `updated_at` datetime NOT NULL COMMENT '更新时间',
`pid` int(10) unsigned DEFAULT NULL COMMENT '上级id',
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='管理员角色'; ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='管理员角色';
/*!40101 SET character_set_client = @saved_cs_client */; /*!40101 SET character_set_client = @saved_cs_client */;
@ -88,7 +89,7 @@ CREATE TABLE `wa_roles` (
LOCK TABLES `wa_roles` WRITE; LOCK TABLES `wa_roles` WRITE;
/*!40000 ALTER TABLE `wa_roles` DISABLE KEYS */; /*!40000 ALTER TABLE `wa_roles` DISABLE KEYS */;
INSERT INTO `wa_roles` VALUES (1,'超级管理员','*','2022-08-13 16:15:01','2022-11-29 16:45:36'); INSERT INTO `wa_roles` VALUES (1,'超级管理员','*','2022-08-13 16:15:01','2022-11-29 16:45:36',NULL);
/*!40000 ALTER TABLE `wa_roles` ENABLE KEYS */; /*!40000 ALTER TABLE `wa_roles` ENABLE KEYS */;
UNLOCK TABLES; UNLOCK TABLES;