去掉多余;

master
RuoYi 6 years ago committed by Limy
parent 5319972062
commit 463957c882

@ -2,7 +2,7 @@
一直想做一款后台管理系统看了很多优秀的开源项目但是发现没有合适的。于是利用空闲休息时间开始自己写了一套后台系统。如此有了若依。她可以用于所有的Web应用程序如网站管理后台网站会员中心CMSCRMOA。所有前端后台代码封装过后十分精简易上手出错概率低。同时支持移动客户端访问。系统会陆续更新一些实用功能。 一直想做一款后台管理系统看了很多优秀的开源项目但是发现没有合适的。于是利用空闲休息时间开始自己写了一套后台系统。如此有了若依。她可以用于所有的Web应用程序如网站管理后台网站会员中心CMSCRMOA。所有前端后台代码封装过后十分精简易上手出错概率低。同时支持移动客户端访问。系统会陆续更新一些实用功能。
寓意:你若不离不弃,我必生死相依 性别男,若依是给还没有出生女儿取的名字(寓意:你若不离不弃,我必生死相依
若依基于hplus和inspinia两套后台系统模板开发。有需要可自行到群内下载。 若依基于hplus和inspinia两套后台系统模板开发。有需要可自行到群内下载。

@ -101,7 +101,7 @@ $(function() {
$("#bootstrap-table").on("check.bs.table uncheck.bs.table check-all.bs.table uncheck-all.bs.table", 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"); var ids = $("#bootstrap-table").bootstrapTable("getSelections");
$('#toolbar .btn-del').toggleClass('disabled', !ids.length); $('#toolbar .btn-del').toggleClass('disabled', !ids.length);
$('#toolbar .btn-edit').toggleClass('disabled', ids.length!=1);; $('#toolbar .btn-edit').toggleClass('disabled', ids.length!=1);
}); });
// tree表格树 展开/折叠 // tree表格树 展开/折叠
var expandFlag = false; var expandFlag = false;

@ -604,8 +604,8 @@ drop table if exists sys_notice;
create table sys_notice ( create table sys_notice (
notice_id int(4) not null auto_increment comment '公告ID', notice_id int(4) not null auto_increment comment '公告ID',
notice_title varchar(50) not null comment '公告标题', notice_title varchar(50) not null comment '公告标题',
notice_type char(2) not null comment '公告类型1通知 2公告', notice_type char(1) not null comment '公告类型1通知 2公告',
notice_content varchar(500) not null comment '公告内容', notice_content varchar(500) default '' comment '公告内容',
status char(1) default '0' comment '公告状态0正常 1关闭', status char(1) default '0' comment '公告状态0正常 1关闭',
create_by varchar(64) default '' comment '创建者', create_by varchar(64) default '' comment '创建者',
create_time datetime comment '创建时间', create_time datetime comment '创建时间',

Loading…
Cancel
Save