diff --git a/README.md b/README.md index 6caed28c..b5deac4e 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ 一直想做一款后台管理系统,看了很多优秀的开源项目但是发现没有合适的。于是利用空闲休息时间开始自己写了一套后台系统。如此有了若依。她可以用于所有的Web应用程序,如网站管理后台,网站会员中心,CMS,CRM,OA。所有前端后台代码封装过后十分精简易上手,出错概率低。同时支持移动客户端访问。系统会陆续更新一些实用功能。 -寓意:你若不离不弃,我必生死相依 +性别男,若依是给还没有出生女儿取的名字(寓意:你若不离不弃,我必生死相依) 若依基于hplus和inspinia两套后台系统模板开发。有需要可自行到群内下载。 diff --git a/ruoyi-admin/src/main/resources/static/ruoyi/js/common.js b/ruoyi-admin/src/main/resources/static/ruoyi/js/common.js index fec49f4b..a65185d1 100644 --- a/ruoyi-admin/src/main/resources/static/ruoyi/js/common.js +++ b/ruoyi-admin/src/main/resources/static/ruoyi/js/common.js @@ -101,7 +101,7 @@ $(function() { $("#bootstrap-table").on("check.bs.table uncheck.bs.table check-all.bs.table uncheck-all.bs.table", function () { var ids = $("#bootstrap-table").bootstrapTable("getSelections"); $('#toolbar .btn-del').toggleClass('disabled', !ids.length); - $('#toolbar .btn-edit').toggleClass('disabled', ids.length!=1);; + $('#toolbar .btn-edit').toggleClass('disabled', ids.length!=1); }); // tree表格树 展开/折叠 var expandFlag = false; diff --git a/sql/ry_20181203.sql b/sql/ry_20181203.sql index 321abe4e..9cd8eb08 100644 --- a/sql/ry_20181203.sql +++ b/sql/ry_20181203.sql @@ -604,8 +604,8 @@ drop table if exists sys_notice; create table sys_notice ( notice_id int(4) not null auto_increment comment '公告ID', notice_title varchar(50) not null comment '公告标题', - notice_type char(2) not null comment '公告类型(1通知 2公告)', - notice_content varchar(500) not null comment '公告内容', + notice_type char(1) not null comment '公告类型(1通知 2公告)', + notice_content varchar(500) default '' comment '公告内容', status char(1) default '0' comment '公告状态(0正常 1关闭)', create_by varchar(64) default '' comment '创建者', create_time datetime comment '创建时间',