|
|
<!DOCTYPE html>
|
|
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org">
|
|
|
<head>
|
|
|
<meta charset="utf-8">
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
<meta name="renderer" content="webkit">
|
|
|
<title>若依系统首页</title>
|
|
|
<!-- 避免IE使用兼容模式 -->
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
<link th:href="@{favicon.ico}" rel="shortcut icon"/>
|
|
|
<link th:href="@{/css/bootstrap.min.css}" rel="stylesheet"/>
|
|
|
<link th:href="@{/css/jquery.contextMenu.min.css}" rel="stylesheet"/>
|
|
|
<link th:href="@{/css/font-awesome.min.css}" rel="stylesheet"/>
|
|
|
<link th:href="@{/css/animate.min.css}" rel="stylesheet"/>
|
|
|
<link th:href="@{/css/style.min.css}" rel="stylesheet"/>
|
|
|
<link th:href="@{/css/skins.css?v=20200902}" rel="stylesheet"/>
|
|
|
<link th:href="@{/ruoyi/css/ry-ui.css?v=4.8.2}" rel="stylesheet"/>
|
|
|
<style type="text/css">.fixed-sidebar .nav:not(.navbar-toolbar)>li.active{border-left:0px!important;}#noticeItems li a{transition:background .15s;border-radius:2px}#noticeItems li a:hover{background:#f7f9fb;text-decoration:none}#noticeItems li a:active{background:#eef2f7}#noticeItems li a:focus{background:transparent;outline:0}#noticeList .mark-all-read{font-size:12px;color:#5b9bd5;text-decoration:none;padding:2px 8px;border-radius:3px;transition:background 0.15s}#noticeList .mark-all-read:hover{background:#eef5fc;color:#2b7cc1}#noticeList .mark-all-read:active{background:#eef5fc;color:#2b7cc1}#noticeList .mark-all-read:focus{outline:none;background:transparent}
|
|
|
</style>
|
|
|
<body class="fixed-sidebar full-height-layout gray-bg" th:classappend="${isMobile} ? 'canvas-menu'" style="overflow: hidden">
|
|
|
<div id="wrapper">
|
|
|
|
|
|
<!--左侧导航开始-->
|
|
|
<nav class="navbar-default navbar-static-side" role="navigation">
|
|
|
<div class="nav-close">
|
|
|
<i class="fa fa-times-circle"></i>
|
|
|
</div>
|
|
|
<a th:href="@{/index}">
|
|
|
<li class="logo hidden-xs">
|
|
|
<span class="logo-lg">RuoYi</span>
|
|
|
</li>
|
|
|
</a>
|
|
|
<div class="sidebar-collapse tab-content" id="side-menu">
|
|
|
<div class="user-panel">
|
|
|
<a class="menuItem noactive" title="个人中心" th:href="@{/system/user/profile}">
|
|
|
<div class="hide" th:text="个人中心"></div>
|
|
|
<div class="pull-left image">
|
|
|
<img th:src="(${#strings.isEmpty(user.avatar)}) ? @{/img/profile.jpg} : @{${user.avatar}}" th:onerror="this.src='img/profile.jpg'" class="img-circle" alt="User Image">
|
|
|
</div>
|
|
|
</a>
|
|
|
<div class="pull-left info">
|
|
|
<p>[[${user.loginName}]]</p>
|
|
|
<a href="javascript:;"><i class="fa fa-circle text-success"></i> 在线</a>
|
|
|
<a th:href="@{logout}" style="padding-left:5px;"><i class="fa fa-sign-out text-danger"></i> 注销</a>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
<!-- 左侧菜单 -->
|
|
|
<th:block th:each="menu : ${menus}">
|
|
|
<div class="tab-pane fade height-full" th:id="|menu_${menu.menuId}|">
|
|
|
<ul class="nav">
|
|
|
<li th:each="cmenu : ${menu.children}">
|
|
|
<a class="menu-content" th:if="${#lists.isEmpty(cmenu.children)}" th:href="@{${cmenu.url}}" th:classappend="${#strings.isEmpty(cmenu.target)} ? |menuItem| : ${cmenu.target}" th:data-refresh="${cmenu.isRefresh == '0'}">
|
|
|
<i th:class="${cmenu.icon} + ' fa-fw'"></i> <span class="nav-label">[[${cmenu.menuName}]]</span>
|
|
|
</a>
|
|
|
<a class="menu-content" th:if="${not #lists.isEmpty(cmenu.children)}" href="javascript:;">
|
|
|
<i th:class="${cmenu.icon} + ' fa-fw'"></i>
|
|
|
<span class="nav-label">[[${cmenu.menuName}]]</span>
|
|
|
<span class="fa arrow"></span>
|
|
|
</a>
|
|
|
<ul th:if="${not #lists.isEmpty(cmenu.children)}" class="nav nav-second-level collapse">
|
|
|
<li th:each="emenu : ${cmenu.children}">
|
|
|
<a th:if="${#lists.isEmpty(emenu.children)}" th:href="@{${emenu.url}}" th:class="${#strings.isEmpty(emenu.target)} ? |menuItem| : ${emenu.target}" th:data-refresh="${emenu.isRefresh == '0'}">
|
|
|
<i th:class="${emenu.icon} + ' fa-fw'"></i>
|
|
|
[[${emenu.menuName}]]
|
|
|
</a>
|
|
|
<a th:if="${not #lists.isEmpty(emenu.children)}" href="javascript:;">
|
|
|
<i th:class="${emenu.icon} + ' fa-fw'"></i>
|
|
|
[[${emenu.menuName}]]
|
|
|
<span class="fa arrow"></span>
|
|
|
</a>
|
|
|
<ul th:if="${not #lists.isEmpty(emenu.children)}" class="nav nav-third-level collapse">
|
|
|
<li th:each="fmenu : ${emenu.children}"><a th:if="${#lists.isEmpty(fmenu.children)}" th:class="${#strings.isEmpty(fmenu.target)} ? |menuItem| : ${fmenu.target}" th:href="@{${fmenu.url}}" th:data-refresh="${fmenu.isRefresh == '0'}">[[${fmenu.menuName}]]</a></li>
|
|
|
</ul>
|
|
|
</li>
|
|
|
</ul>
|
|
|
</li>
|
|
|
</ul>
|
|
|
</div>
|
|
|
</th:block>
|
|
|
|
|
|
<!-- 首页菜单 -->
|
|
|
<div class="tab-pane fade height-full" id="index">
|
|
|
<ul class="nav">
|
|
|
<li>
|
|
|
<a class="menuItem" th:href="@{/system/main}">
|
|
|
<i class="fa fa-home"></i> <span class="nav-label">首页</span></a>
|
|
|
</li>
|
|
|
</ul>
|
|
|
</div>
|
|
|
|
|
|
<!-- 实例演示菜单 -->
|
|
|
<div class="tab-pane fade height-full" id="demo" th:if="${demoEnabled}">
|
|
|
<ul class="nav">
|
|
|
<li>
|
|
|
<a href="javascript:;"><i class="fa fa-edit"></i> <span class="nav-label">表单</span><span class="fa arrow"></span></a>
|
|
|
<ul class="nav nav-second-level collapse">
|
|
|
<li><a class="menuItem" th:href="@{/demo/form/button}">按钮</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/form/grid}">栅格</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/form/select}">下拉框</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/form/timeline}">时间轴</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/form/progress_bars}">进度条</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/form/basic}">基本表单</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/form/cards}">卡片列表</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/form/jasny}">功能扩展</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/form/sortable}">拖动排序</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/form/invoice}">单据打印</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/form/labels_tips}">标签 & 提示</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/form/tabs_panels}">选项卡 & 面板</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/form/validate}">表单校验</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/form/wizard}">表单向导</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/form/upload}">文件上传</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/form/datetime}">日期和时间</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/form/summernote}">富文本编辑器</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/form/duallistbox}">左右互选组件</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/form/autocomplete}">搜索自动补全</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/form/cxselect}">多级联动下拉</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/form/localrefresh}">Ajax局部刷新</a></li>
|
|
|
</ul>
|
|
|
</li>
|
|
|
<li>
|
|
|
<a href="javascript:;"><i class="fa fa-table"></i> <span class="nav-label">表格</span><span class="fa arrow"></span></a>
|
|
|
<ul class="nav nav-second-level collapse">
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/search}">查询条件</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/footer}">数据汇总</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/groupHeader}">组合表头</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/export}">表格导出</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/textSearch}">全文索引</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/exportSelected}">导出选择列</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/remember}">翻页记住选择</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/cookie}">表格保存状态</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/pageGo}">跳转至指定页</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/params}">自定义查询参数</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/multi}">初始多表格</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/button}">点击按钮加载表格</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/data}">直接加载表格数据</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/fixedColumns}">表格冻结列</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/event}">自定义触发事件</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/headerStyle}">表格标题格式化</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/detail}">表格细节视图</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/child}">表格父子视图</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/image}">表格图片预览</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/curd}">动态增删改查</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/reorderRows}">表格行拖拽操作</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/reorderColumns}">表格列拖拽操作</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/resizable}">表格列宽拖动</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/editable}">表格行内编辑</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/subdata}">主子表提交</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/refresh}">表格自动刷新</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/print}">表格打印配置</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/dynamicColumns}">表格动态列</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/virtualScroll}">表格虚拟滚动</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/customView}">自定义视图分页</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/asynTree}">异步加载表格树</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/table/other}">表格其他操作</a></li>
|
|
|
</ul>
|
|
|
</li>
|
|
|
<li>
|
|
|
<a href="javascript:;"><i class="fa fa-flask"></i> <span class="nav-label">弹框</span><span class="fa arrow"></span></a>
|
|
|
<ul class="nav nav-second-level collapse">
|
|
|
<li><a class="menuItem" th:href="@{/demo/modal/dialog}">模态窗口</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/modal/layer}">弹层组件</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/modal/table}">弹层表格</a></li>
|
|
|
</ul>
|
|
|
</li>
|
|
|
<li>
|
|
|
<a href="javascript:;"><i class="fa fa-wpforms"></i> <span class="nav-label">操作</span><span class="fa arrow"></span></a>
|
|
|
<ul class="nav nav-second-level collapse">
|
|
|
<li><a class="menuItem" th:href="@{/demo/operate/table}">表格</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/operate/other}">其他</a></li>
|
|
|
</ul>
|
|
|
</li>
|
|
|
<li>
|
|
|
<a href="javascript:;"><i class="fa fa-bar-chart-o"></i> <span class="nav-label">报表</span><span class="fa arrow"></span></a>
|
|
|
<ul class="nav nav-second-level collapse">
|
|
|
<li><a class="menuItem" th:href="@{/demo/report/echarts}">百度ECharts</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/report/peity}">peity</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/report/sparkline}">sparkline</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/report/metrics}">图表组合</a></li>
|
|
|
</ul>
|
|
|
</li>
|
|
|
<li>
|
|
|
<a href="javascript:;"><i class="fa fa-book"></i> <span class="nav-label">图标</span><span class="fa arrow"></span></a>
|
|
|
<ul class="nav nav-second-level collapse">
|
|
|
<li><a class="menuItem" th:href="@{/demo/icon/fontawesome}">Font Awesome</a></li>
|
|
|
<li><a class="menuItem" th:href="@{/demo/icon/glyphicons}">Glyphicons</a></li>
|
|
|
</ul>
|
|
|
</li>
|
|
|
<li>
|
|
|
<a href="javascript:;"><i class="fa fa-navicon"></i> <span class="nav-label">四层菜单</span><span class="fa arrow"></span></a>
|
|
|
<ul class="nav nav-second-level collapse">
|
|
|
<li>
|
|
|
<a href="javascript:;" id="damian">三级菜单1<span class="fa arrow"></span></a>
|
|
|
<ul class="nav nav-third-level collapse">
|
|
|
<li>
|
|
|
<a href="javascript:;">四级菜单1</a>
|
|
|
</li>
|
|
|
<li>
|
|
|
<a href="javascript:;">四级菜单2</a>
|
|
|
</li>
|
|
|
</ul>
|
|
|
</li>
|
|
|
<li><a href="javascript:;">三级菜单2</a></li>
|
|
|
</ul>
|
|
|
</li>
|
|
|
</ul>
|
|
|
</div>
|
|
|
</div>
|
|
|
</nav>
|
|
|
<!--左侧导航结束-->
|
|
|
|
|
|
<!--右侧部分开始-->
|
|
|
<div id="page-wrapper" class="gray-bg dashbard-1">
|
|
|
<div class="row border-bottom">
|
|
|
<nav class="navbar navbar-static-top" role="navigation" style="margin-bottom: 0">
|
|
|
<div class="navbar-header">
|
|
|
<a class="navbar-minimalize minimalize-styl-2" style="color:#FFF;" href="javascript:;" title="收起菜单">
|
|
|
<i class="fa fa-bars"></i>
|
|
|
</a>
|
|
|
</div>
|
|
|
<!-- 顶部栏 -->
|
|
|
<div id="navMenu">
|
|
|
<ul class="nav navbar-toolbar nav-tabs navbar-left hidden-xs">
|
|
|
|
|
|
<!-- 顶部菜单列表 -->
|
|
|
<th:block th:each="menu : ${menus}">
|
|
|
<li role="presentation" th:id="|tab_${menu.menuId}|">
|
|
|
<a th:if="${#lists.isEmpty(menu.children)}" data-toggle="tab" th:class="@{${!#strings.isEmpty(menu.target) && menu.target == 'menuBlank'} ? 'menuBlank' : 'menuItem noactive'}" th:href="@{${menu.url}}">
|
|
|
<i th:class="${menu.icon}"></i> <span>[[${menu.menuName}]]</span>
|
|
|
</a>
|
|
|
<a th:if="${not #lists.isEmpty(menu.children)}" data-toggle="tab" th:class="@{${!#strings.isEmpty(menu.target) && menu.target == 'menuBlank'} ? 'menuBlank'}" th:href="@{${!#strings.isEmpty(menu.target) && menu.target == 'menuBlank'} ? @{${menu.url}} : |#menu_${menu.menuId}|}">
|
|
|
<i th:class="${menu.icon}"></i> <span>[[${menu.menuName}]]</span>
|
|
|
</a>
|
|
|
</li>
|
|
|
</th:block>
|
|
|
|
|
|
<li role="presentation" id="tab_index">
|
|
|
<a data-toggle="tab" href="#index">
|
|
|
<i class="fa fa-area-chart"></i> <span>统计报表</span>
|
|
|
</a>
|
|
|
</li>
|
|
|
|
|
|
<li role="presentation" id="tab_demo" th:if="${demoEnabled}">
|
|
|
<a data-toggle="tab" href="#demo">
|
|
|
<i class="fa fa-desktop"></i> <span>实例演示</span>
|
|
|
</a>
|
|
|
</li>
|
|
|
</ul>
|
|
|
</div>
|
|
|
<!-- 右侧栏 -->
|
|
|
<ul class="nav navbar-top-links navbar-right welcome-message">
|
|
|
<li><a data-toggle="tooltip" data-trigger="hover" data-placement="bottom" title="开发文档" href="http://doc.ruoyi.vip/ruoyi" target="_blank"><i class="fa fa-question-circle"></i> 文档</a></li>
|
|
|
<li><a data-toggle="tooltip" data-trigger="hover" data-placement="bottom" title="锁定屏幕" href="javascript:;" id="lockScreen"><i class="fa fa-lock"></i> 锁屏</a></li>
|
|
|
<li><a data-toggle="tooltip" data-trigger="hover" data-placement="bottom" title="全屏显示" href="javascript:;" id="fullScreen"><i class="fa fa-arrows-alt"></i> 全屏</a></li>
|
|
|
<li class="dropdown" id="noticeDropdown">
|
|
|
<a href="javascript:void(0)" class="dropdown-toggle" style="position:relative;" data-hover="dropdown">
|
|
|
<i class="fa fa-bell-o"></i> 消息
|
|
|
<span id="noticeBadge" style="display:none;position:absolute;top:8px;right:-4px;background:#e74c3c;color:#fff;border-radius:50%;width:16px;height:16px;font-size:10px;line-height:16px;text-align:center;font-style:normal;"></span>
|
|
|
</a>
|
|
|
<ul class="dropdown-menu" id="noticeList" style="width:320px;padding:0;left:auto;right:0;">
|
|
|
<li style="padding:10px 16px;background:#f7f9fb;border-bottom:1px solid #eee;display:flex;align-items:center;justify-content:space-between;">
|
|
|
<span style="font-size:13px;font-weight:600;color:#333;">通知公告</span>
|
|
|
<a href="javascript:void(0)" onclick="markAllRead()" class="mark-all-read">全部已读</a>
|
|
|
</li>
|
|
|
<li id="noticeItems"><div style="padding:20px;text-align:center;color:#aaa;font-size:12px;"><i class="fa fa-spinner fa-spin"></i> 加载中...</div></li>
|
|
|
</ul>
|
|
|
</li>
|
|
|
<li class="dropdown user-menu">
|
|
|
<a href="javascript:void(0)" class="dropdown-toggle" data-hover="dropdown">
|
|
|
<img th:src="(${#strings.isEmpty(user.avatar)}) ? @{/img/profile.jpg} : @{${user.avatar}}" th:onerror="this.src='img/profile.jpg'" class="user-image">
|
|
|
<span class="hidden-xs">[[${#strings.defaultString(user.userName, '-')}]]</span>
|
|
|
</a>
|
|
|
<ul class="dropdown-menu">
|
|
|
<li class="mt5">
|
|
|
<a th:href="@{/system/user/profile}" class="menuItem noactive">
|
|
|
<i class="fa fa-user"></i> 个人中心</a>
|
|
|
</li>
|
|
|
<li>
|
|
|
<a onclick="resetPwd()">
|
|
|
<i class="fa fa-key"></i> 修改密码</a>
|
|
|
</li>
|
|
|
<li>
|
|
|
<a onclick="switchSkin()">
|
|
|
<i class="fa fa-dashboard"></i> 切换主题</a>
|
|
|
</li>
|
|
|
<li>
|
|
|
<a onclick="toggleMenu()">
|
|
|
<i class="fa fa-toggle-off"></i> 左侧菜单</a>
|
|
|
</li>
|
|
|
<li class="divider"></li>
|
|
|
<li>
|
|
|
<a th:href="@{logout}">
|
|
|
<i class="fa fa-sign-out"></i> 退出登录</a>
|
|
|
</li>
|
|
|
</ul>
|
|
|
</li>
|
|
|
</ul>
|
|
|
</nav>
|
|
|
</div>
|
|
|
<div class="row content-tabs" th:classappend="${#bools.isFalse(tagsView)} ? |hide|">
|
|
|
<button class="roll-nav roll-left tabLeft">
|
|
|
<i class="fa fa-backward"></i>
|
|
|
</button>
|
|
|
<nav class="page-tabs menuTabs">
|
|
|
<div class="page-tabs-content">
|
|
|
<a href="javascript:;" class="menuTab" th:data-id="@{/system/main}">首页</a>
|
|
|
</div>
|
|
|
</nav>
|
|
|
<button class="roll-nav roll-right tabRight">
|
|
|
<i class="fa fa-forward"></i>
|
|
|
</button>
|
|
|
<a href="javascript:void(0);" class="roll-nav roll-right tabReload"><i class="fa fa-refresh"></i> 刷新</a>
|
|
|
</div>
|
|
|
|
|
|
<a id="ax_close_max" class="ax_close_max" href="javascript:;" title="关闭全屏"> <i class="fa fa-times-circle-o"></i> </a>
|
|
|
|
|
|
<div class="row mainContent" id="content-main" th:classappend="${mainClass}">
|
|
|
<iframe class="RuoYi_iframe" name="iframe0" width="100%" height="100%" th:data-id="@{/system/main}"
|
|
|
frameborder="0" seamless></iframe>
|
|
|
</div>
|
|
|
|
|
|
<div th:if="${footer}" class="footer">
|
|
|
<div class="pull-right">© [[${copyrightYear}]] RuoYi Copyright </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<!--右侧部分结束-->
|
|
|
</div>
|
|
|
<!-- 全局js -->
|
|
|
<script th:src="@{/js/jquery.min.js}"></script>
|
|
|
<script th:src="@{/js/bootstrap.min.js}"></script>
|
|
|
<script th:src="@{/js/plugins/metisMenu/jquery.metisMenu.js}"></script>
|
|
|
<script th:src="@{/js/plugins/slimscroll/jquery.slimscroll.min.js}"></script>
|
|
|
<script th:src="@{/js/jquery.contextMenu.min.js}"></script>
|
|
|
<script th:src="@{/ajax/libs/blockUI/jquery.blockUI.js}"></script>
|
|
|
<script th:src="@{/ajax/libs/layer/layer.min.js}"></script>
|
|
|
<script th:src="@{/ruoyi/js/ry-ui.js?v=4.8.2}"></script>
|
|
|
<script th:src="@{/ruoyi/js/common.js?v=4.8.2}"></script>
|
|
|
<script th:src="@{/ruoyi/index.js?v=20201208}"></script>
|
|
|
<script th:src="@{/ajax/libs/fullscreen/jquery.fullscreen.js}"></script>
|
|
|
<script th:src="@{/js/resize-tabs.js}"></script>
|
|
|
<script th:inline="javascript">
|
|
|
window.history.forward(1);
|
|
|
var ctx = [[@{/}]];
|
|
|
var lockscreen = [[${session.lockscreen}]];
|
|
|
if(lockscreen){window.top.location=ctx+"lockscreen";}
|
|
|
// 皮肤缓存
|
|
|
var skin = storage.get("skin");
|
|
|
// history(表示去掉地址的#)否则地址以"#"形式展示
|
|
|
var mode = "history";
|
|
|
// 历史访问路径缓存
|
|
|
var historyPath = storage.get("historyPath");
|
|
|
// 是否页签与菜单联动
|
|
|
var isLinkage = true;
|
|
|
// 是否页签切换滚动到顶部
|
|
|
var isScrollToTop = true;
|
|
|
|
|
|
// 本地主题优先,未设置取系统配置
|
|
|
if($.common.isNotEmpty(skin)){
|
|
|
$("body").addClass(skin.split('|')[0]);
|
|
|
$("body").addClass(skin.split('|')[1]);
|
|
|
} else {
|
|
|
$("body").addClass([[${sideTheme}]]);
|
|
|
$("body").addClass([[${skinName}]]);
|
|
|
}
|
|
|
|
|
|
/* 用户管理-重置密码 */
|
|
|
function resetPwd() {
|
|
|
var url = ctx + 'system/user/profile/resetPwd';
|
|
|
$.modal.open("重置密码", url, '770', '380');
|
|
|
}
|
|
|
/* 切换主题 */
|
|
|
function switchSkin() {
|
|
|
layer.open({
|
|
|
type : 2,
|
|
|
shadeClose : true,
|
|
|
title : "切换主题",
|
|
|
area : ["530px", "386px"],
|
|
|
content : [ctx + "system/switchSkin", 'no']
|
|
|
})
|
|
|
}
|
|
|
|
|
|
/* 切换菜单 */
|
|
|
function toggleMenu() {
|
|
|
$.modal.confirm("确认要切换成左侧菜单吗?", function() {
|
|
|
$.get(ctx + 'system/menuStyle/default', function(result) {
|
|
|
window.location.reload();
|
|
|
});
|
|
|
})
|
|
|
}
|
|
|
|
|
|
/** 刷新时访问路径页签 */
|
|
|
function applyPath(url) {
|
|
|
var $dataObj = $('a[href$="' + decodeURI(url) + '"]');
|
|
|
$dataObj.click();
|
|
|
if (!$dataObj.hasClass("noactive")) {
|
|
|
$dataObj.parent("li").addClass("selected").parents("li").addClass("active").end().parents("ul").addClass("in");
|
|
|
}
|
|
|
// 顶部菜单同步处理
|
|
|
var tabStr = $dataObj.parents(".tab-pane").attr("id");
|
|
|
if ($.common.isNotEmpty(tabStr)) {
|
|
|
var sepIndex = tabStr.lastIndexOf('_');
|
|
|
var menuId = tabStr.substring(sepIndex + 1, tabStr.length);
|
|
|
$("#tab_" + menuId + " a").click();
|
|
|
}
|
|
|
}
|
|
|
|
|
|
//默认激活页签(首页)
|
|
|
function tabActive() {
|
|
|
var $mainTab = $('.menuTab[data-id="' + ctx + 'system/main"]');
|
|
|
$mainTab.addClass('active');
|
|
|
// 懒加载:首次激活首页时才设置 src 并显示
|
|
|
var $mainIframe = $('.mainContent .RuoYi_iframe[data-id="' + ctx + 'system/main"]');
|
|
|
if ($mainIframe.length) {
|
|
|
openToCurrentTab($mainIframe[0]);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
$(function() {
|
|
|
var lockPath = storage.get('lockPath');
|
|
|
if($.common.equals("history", mode) && window.performance.navigation.type == 1) {
|
|
|
var url = storage.get('publicPath');
|
|
|
if ($.common.isNotEmpty(url)) {
|
|
|
applyPath(url);
|
|
|
} else {
|
|
|
tabActive();
|
|
|
$(".navbar-toolbar li a").eq(0).click();
|
|
|
}
|
|
|
} else if($.common.isNotEmpty(lockPath)) {
|
|
|
applyPath(lockPath);
|
|
|
storage.remove('lockPath');
|
|
|
} else {
|
|
|
var hash = location.hash;
|
|
|
if ($.common.isNotEmpty(hash)) {
|
|
|
var url = hash.substring(1, hash.length);
|
|
|
applyPath(url);
|
|
|
} else {
|
|
|
if($.common.equals("history", mode)) {
|
|
|
storage.set('publicPath', "");
|
|
|
}
|
|
|
tabActive();
|
|
|
$(".navbar-toolbar li a").eq(0).click();
|
|
|
}
|
|
|
}
|
|
|
|
|
|
/* 初始密码提示 */
|
|
|
if([[${isDefaultModifyPwd}]]) {
|
|
|
layer.confirm("您的密码还是初始密码,请修改密码!", {
|
|
|
icon: 0,
|
|
|
title: "安全提示",
|
|
|
btn: ['确认' , '取消'],
|
|
|
offset: ['30%']
|
|
|
}, function (index) {
|
|
|
resetPwd();
|
|
|
layer.close(index);
|
|
|
});
|
|
|
}
|
|
|
|
|
|
/* 过期密码提示 */
|
|
|
if(![[${isDefaultModifyPwd}]] && [[${isPasswordExpired}]]) {
|
|
|
layer.confirm("您的密码已过期,请尽快修改密码!", {
|
|
|
icon: 0,
|
|
|
title: "安全提示",
|
|
|
btn: ['确认' , '取消'],
|
|
|
offset: ['30%']
|
|
|
}, function (index) {
|
|
|
resetPwd();
|
|
|
layer.close(index);
|
|
|
});
|
|
|
}
|
|
|
|
|
|
$("[data-toggle='tooltip']").tooltip();
|
|
|
/* 页面加载时拉取公告 */
|
|
|
loadNoticeTop();
|
|
|
});
|
|
|
|
|
|
/* 加载顶部公告列表 */
|
|
|
function loadNoticeTop() {
|
|
|
$.ajax({
|
|
|
url: ctx + "system/notice/listTop",
|
|
|
type: "get",
|
|
|
dataType: "json",
|
|
|
success: function(res) {
|
|
|
if (res.code !== 0 || !res.data || res.data.length === 0) {
|
|
|
$("#noticeItems").html('<div style="padding:24px;text-align:center;color:#bbb;font-size:12px;"><i class=\"fa fa-inbox\"></i><br>暂无公告</div>');
|
|
|
return;
|
|
|
}
|
|
|
var list = res.data;
|
|
|
var unread = (res.unreadCount !== undefined && res.unreadCount !== null) ? res.unreadCount : list.length;
|
|
|
if (unread > 0) {
|
|
|
$("#noticeBadge").text(unread).show();
|
|
|
} else {
|
|
|
$("#noticeBadge").hide();
|
|
|
}
|
|
|
var html = '';
|
|
|
for (var i = 0; i < list.length; i++) {
|
|
|
var n = list[i];
|
|
|
var typeClass = n.noticeType === '1' ? 'warning' : 'success';
|
|
|
var typeLabel = n.noticeType === '1' ? '通知' : '公告';
|
|
|
var isRead = n.isRead === true || n.isRead === 'true' || n.read === true || n.read === 'true';
|
|
|
var aColor = isRead ? '#999' : '#333';
|
|
|
var titleColor = isRead ? 'color:#999;' : '';
|
|
|
var readAttr = isRead ? ' data-read="1"' : '';
|
|
|
var badgeHtml = isRead
|
|
|
? '<span style="flex-shrink:0;display:inline-block;padding:2px 6px;border-radius:3px;font-size:11px;font-weight:600;background:#e9ecef;color:#aaa;">' + typeLabel + '</span>'
|
|
|
: '<span class="badge badge-' + typeClass + '" style="flex-shrink:0;">' + typeLabel + '</span>';
|
|
|
html += '<li id="notice-item-' + n.noticeId + '"' + readAttr + ' style="border-bottom:1px solid #f5f5f5;">';
|
|
|
html += '<a href="javascript:void(0)" onclick="previewNotice(' + n.noticeId + ')" style="display:flex;align-items:center;padding:10px 16px;gap:10px;text-decoration:none;color:' + aColor + ';">';
|
|
|
html += badgeHtml;
|
|
|
html += '<span style="flex:1;font-size:12px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;' + titleColor + '" title="' + (n.noticeTitle||'') + '">' + (n.noticeTitle||'') + '</span>';
|
|
|
html += '<span style="font-size:11px;color:#bbb;flex-shrink:0;">' + (n.createTime ? n.createTime.substring(0,10) : '') + '</span>';
|
|
|
html += '</a></li>';
|
|
|
}
|
|
|
$("#noticeItems").html(html);
|
|
|
},
|
|
|
error: function() {
|
|
|
$("#noticeItems").html('<div style="padding:20px;text-align:center;color:#e74c3c;font-size:12px;">加载失败</div>');
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
|
|
|
/* 预览公告 */
|
|
|
function previewNotice(noticeId) {
|
|
|
var url = ctx + "system/notice/view/" + noticeId;
|
|
|
// 先立即更新样式并标记已读
|
|
|
var $item = $("#notice-item-" + noticeId);
|
|
|
$item.attr("data-read", "1");
|
|
|
$item.find("a").css("color", "#999");
|
|
|
$item.find("span").css("color", "#999");
|
|
|
var $badge = $item.find(".badge");
|
|
|
if ($badge.length) {
|
|
|
$badge.replaceWith('<span style="flex-shrink:0;display:inline-block;padding:2px 6px;border-radius:3px;font-size:11px;font-weight:600;background:#e9ecef;color:#aaa;">' + $badge.text() + '</span>');
|
|
|
}
|
|
|
// 用 data-read 属性计数未读
|
|
|
var unread = $("#noticeItems li:not([data-read])").length;
|
|
|
if (unread > 0) {
|
|
|
$("#noticeBadge").text(unread).show();
|
|
|
} else {
|
|
|
$("#noticeBadge").hide();
|
|
|
}
|
|
|
// 异步通知后端记录已读(fire and forget)
|
|
|
$.post(ctx + "system/notice/markRead", { noticeId: noticeId });
|
|
|
var _layerIdx;
|
|
|
_layerIdx = top.layer.open({
|
|
|
type: 2,
|
|
|
offset: 'r',
|
|
|
anim: 'slideLeft',
|
|
|
move: false,
|
|
|
title: false,
|
|
|
closeBtn: 0,
|
|
|
shade: [0.25, '#1a202c'],
|
|
|
shadeClose: true,
|
|
|
area: ['600px', '100%'],
|
|
|
content: url,
|
|
|
success: function(layero) {
|
|
|
// 去掉 layer 默认 padding,让内容完全填满
|
|
|
layero.css({ 'border-radius': '0', 'border': 'none' });
|
|
|
layero.find('.layui-layer-content').css({ 'border-radius': '0' });
|
|
|
// 悬浮关闭按钮,紧贴面板左边缘外侧
|
|
|
var $btn = $('<button id="noticeCloseBtn" style="position:fixed;top:20px;right:608px;width:34px;height:34px;border-radius:50%;background:#fff;border:1px solid #e2e8f0;box-shadow:0 2px 10px rgba(0,0,0,0.12);cursor:pointer;font-size:13px;color:#718096;line-height:1;z-index:19891017;transition:all 0.18s;"><i class="fa fa-times"></i></button>');
|
|
|
$btn.hover(
|
|
|
function(){ $(this).css({'background':'#f7fafc','color':'#2d3748','border-color':'#cbd5e0'}); },
|
|
|
function(){ $(this).css({'background':'#fff','color':'#718096','border-color':'#e2e8f0'}); }
|
|
|
);
|
|
|
$btn.on('click', function(){ top.layer.close(_layerIdx); });
|
|
|
$('body', top.document).append($btn);
|
|
|
},
|
|
|
end: function() {
|
|
|
$('body', top.document).find('#noticeCloseBtn').remove();
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
|
|
|
function markAllRead() {
|
|
|
var ids = [];
|
|
|
$("#noticeItems li").each(function() {
|
|
|
var id = $(this).attr("id").replace("notice-item-", "");
|
|
|
if (id) ids.push(id);
|
|
|
$(this).attr("data-read", "1");
|
|
|
$(this).find("a").css("color", "#999");
|
|
|
$(this).find("span").css("color", "#999");
|
|
|
var $b = $(this).find(".badge");
|
|
|
$b.replaceWith('<span style="flex-shrink:0;display:inline-block;padding:2px 6px;border-radius:3px;font-size:11px;font-weight:600;background:#e9ecef;color:#aaa;">' + $b.text() + '</span>');
|
|
|
});
|
|
|
$("#noticeBadge").hide();
|
|
|
if (ids.length > 0) {
|
|
|
$.post(ctx + "system/notice/markReadAll", { ids: ids.join(",") });
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
</body>
|
|
|
</html>
|