Merge branch 'master' of https://gitee.com/gt_drc/RuoYi
This commit is contained in:
commit
e2e6fadd87
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="renderer" content="webkit">
|
||||
<title>若依系统首页</title>
|
||||
<title>企业法律服务平台系统首页</title>
|
||||
<!-- 避免IE使用兼容模式 -->
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<link th:href="@{favicon.ico}" rel="shortcut icon"/>
|
||||
|
|
|
|||
|
|
@ -3,8 +3,8 @@
|
|||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
|
||||
<title>登录若依系统</title>
|
||||
<meta name="description" content="若依后台管理框架">
|
||||
<title>企业法律服务平台管理系统</title>
|
||||
<meta name="description" content="企业法律服务平台管理系统">
|
||||
<link href="../static/css/bootstrap.min.css" th:href="@{/css/bootstrap.min.css}" rel="stylesheet"/>
|
||||
<link href="../static/css/font-awesome.min.css" th:href="@{/css/font-awesome.min.css}" rel="stylesheet"/>
|
||||
<link href="../static/css/style.css" th:href="@{/css/style.css}" rel="stylesheet"/>
|
||||
|
|
@ -29,7 +29,7 @@
|
|||
<h1><img alt="[ 若依 ]" src="../static/ruoyi.png" th:src="@{/ruoyi.png}"></h1>
|
||||
</div>
|
||||
<div class="m-b"></div>
|
||||
<h4>欢迎使用 <strong>若依 后台管理系统</strong></h4>
|
||||
<h4>欢迎使用 <strong>企业法律服务平台管理系统</strong></h4>
|
||||
<ul class="m-b">
|
||||
<li><i class="fa fa-arrow-circle-o-right m-r-xs"></i> SpringBoot</li>
|
||||
<li><i class="fa fa-arrow-circle-o-right m-r-xs"></i> Mybatis</li>
|
||||
|
|
@ -43,7 +43,7 @@
|
|||
<div class="col-sm-5">
|
||||
<form id="signupForm" autocomplete="off">
|
||||
<h4 class="no-margins">登录:</h4>
|
||||
<p class="m-t-md">你若不离不弃,我必生死相依</p>
|
||||
<p class="m-t-md"></p>
|
||||
<input type="text" name="username" class="form-control uname" placeholder="用户名" value="admin" />
|
||||
<input type="password" name="password" class="form-control pword" placeholder="密码" value="admin123" />
|
||||
<div class="row m-t" th:if="${captchaEnabled==true}">
|
||||
|
|
@ -65,7 +65,7 @@
|
|||
</div>
|
||||
<div class="signup-footer">
|
||||
<div class="pull-left">
|
||||
© 2019 All Rights Reserved. RuoYi <br>
|
||||
© 上海市黄浦区司法局 | 黄浦区商务委 <br>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@
|
|||
</div>
|
||||
<div class="signup-footer">
|
||||
<div class="pull-left">
|
||||
© 2019 All Rights Reserved. RuoYi <br>
|
||||
© 上海市黄浦区司法局 | 黄浦区商务委 <br>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,4 @@
|
|||
------------------------------
|
||||
-- 1、服务组织表
|
||||
------------------------------
|
||||
drop table if exists service_organization;
|
||||
create table service_organization (
|
||||
id bigint(20) not null auto_increment comment 'ID',
|
||||
|
|
@ -12,7 +10,7 @@ create table service_organization (
|
|||
introduction text not null comment '简介',
|
||||
content text not null comment '机构详情内容',
|
||||
hits int (6) default 0 comment '点击量',
|
||||
status char(1) default '0' comment '状态(0:待审核,1:审核不通过,2:审核通过)',
|
||||
audit_status char(1) default '0' comment '状态(0:待审核,1:审核不通过,2:审核通过)',
|
||||
picture_url varchar(500) not null comment '图片地址(多个地址用,分隔)',
|
||||
status char(1) default '0' comment '状态(0正常 1停用)',
|
||||
del_flag char(1) default '0' comment '删除标志(0代表存在 2代表删除)',
|
||||
|
|
@ -26,9 +24,7 @@ create table service_organization (
|
|||
primary key (id)
|
||||
) engine=innodb auto_increment=10 comment = '服务组织表';
|
||||
|
||||
-- ----------------------------
|
||||
-- 2、 合同分类表
|
||||
-- ----------------------------
|
||||
drop table if exists contract_type;
|
||||
create table contract_type (
|
||||
id bigint(20) not null auto_increment comment 'ID',
|
||||
|
|
@ -43,9 +39,7 @@ create table contract_type (
|
|||
primary key (id)
|
||||
) engine=innodb auto_increment=10 comment = '合同分类表';
|
||||
|
||||
------------------------------
|
||||
-- 3、 合同模板表
|
||||
------------------------------
|
||||
drop table if exists contract_template;
|
||||
create table contract_template (
|
||||
id bigint(20) not null auto_increment comment 'ID',
|
||||
|
|
@ -66,9 +60,7 @@ create table contract_template (
|
|||
) engine=innodb auto_increment=10 comment = '合同模板表';
|
||||
|
||||
|
||||
-- ----------------------------
|
||||
-- 4、 典型案例表
|
||||
-- ----------------------------
|
||||
drop table if exists classsic_cases;
|
||||
create table classsic_cases (
|
||||
id bigint(20) not null auto_increment comment 'ID',
|
||||
|
|
@ -88,9 +80,7 @@ create table classsic_cases (
|
|||
) engine=innodb auto_increment=10 comment = '典型案例表';
|
||||
|
||||
|
||||
------------------------------
|
||||
-- 5、 线上课程代表
|
||||
------------------------------
|
||||
drop table if exists online_courses;
|
||||
create table online_courses (
|
||||
id bigint(20) not null auto_increment comment 'ID',
|
||||
|
|
@ -112,9 +102,7 @@ create table online_courses (
|
|||
) engine=innodb auto_increment=10 comment = '线上课程表';
|
||||
|
||||
|
||||
-- ----------------------------
|
||||
-- 6、 线上课程评价表
|
||||
-- ----------------------------
|
||||
drop table if exists online_courses_evaluate;
|
||||
create table online_courses_evaluate (
|
||||
id bigint(20) not null auto_increment comment 'ID',
|
||||
|
|
@ -129,9 +117,7 @@ create table online_courses_evaluate (
|
|||
primary key (id)
|
||||
) engine=innodb auto_increment=10 comment = '线上课程评价表';
|
||||
|
||||
-- ----------------------------
|
||||
-- 7、 新闻动态表
|
||||
-- ----------------------------
|
||||
drop table if exists news_information;
|
||||
create table news_information (
|
||||
id bigint(20) not null auto_increment comment 'ID',
|
||||
|
|
@ -149,9 +135,7 @@ create table news_information (
|
|||
) engine=innodb auto_increment=10 comment = '新闻动态表';
|
||||
|
||||
|
||||
-- ----------------------------
|
||||
-- 8、在线留言表
|
||||
-- ----------------------------
|
||||
drop table if exists online_message;
|
||||
create table online_message (
|
||||
id bigint(20) not null auto_increment comment 'ID',
|
||||
|
|
@ -167,9 +151,7 @@ create table online_message (
|
|||
primary key (id)
|
||||
) engine=innodb auto_increment=10 comment = '在线留言表';
|
||||
|
||||
-- ----------------------------
|
||||
-- 9、联系方式表
|
||||
-- ----------------------------
|
||||
drop table if exists contact_information;
|
||||
create table contact_information (
|
||||
id bigint(20) not null auto_increment comment 'ID',
|
||||
|
|
@ -189,9 +171,7 @@ create table contact_information (
|
|||
) engine=innodb auto_increment=10 comment = '联系方式表';
|
||||
|
||||
|
||||
-- ----------------------------
|
||||
-- 10、法律服务表
|
||||
-- ----------------------------
|
||||
drop table if exists legal_services;
|
||||
create table legal_services (
|
||||
id bigint(20) not null auto_increment comment 'ID',
|
||||
|
|
@ -205,9 +185,7 @@ create table legal_services (
|
|||
primary key (id)
|
||||
) engine=innodb auto_increment=10 comment = '法律服务表';
|
||||
|
||||
-- ----------------------------
|
||||
-- 11、 常见问题表
|
||||
-- ----------------------------
|
||||
drop table if exists common_problem;
|
||||
create table common_problem (
|
||||
id bigint(20) not null auto_increment comment 'ID',
|
||||
|
|
@ -223,9 +201,7 @@ create table common_problem (
|
|||
) engine=innodb auto_increment=10 comment = '常见问题表';
|
||||
|
||||
|
||||
-- ----------------------------
|
||||
-- 12、 活动招募表
|
||||
-- ----------------------------
|
||||
drop table if exists event_recruitment;
|
||||
create table event_recruitment (
|
||||
id bigint(20) not null auto_increment comment 'ID',
|
||||
|
|
@ -243,9 +219,7 @@ create table event_recruitment (
|
|||
primary key (id)
|
||||
) engine=innodb auto_increment=10 comment = '活动招募表';
|
||||
|
||||
-- ----------------------------
|
||||
-- 13、首页轮播图表
|
||||
-- ----------------------------
|
||||
drop table if exists home_page_carousel;
|
||||
create table home_page_carousel (
|
||||
id bigint(20) not null auto_increment comment 'ID',
|
||||
|
|
|
|||
Loading…
Reference in New Issue