| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- <!DOCTYPE html>
- <html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
- <head>
- <th:block th:include="include :: header('走马灯提示语列表')" />
- <th:block th:include="include :: bootstrap-select-css" />
- </head>
- <body class="gray-bg">
- <div class="container-div">
- <div class="row">
- <div class="col-sm-12 search-collapse">
- <form id="formId">
- <div class="select-list">
- <ul>
- <li>
- <p>内容:</p>
- <input type="text" name="content"/>
- </li>
- <li class="select-time">
- <p>开始时间:</p>
- <input type="text" class="time-input" id="startTime" placeholder="开始时间" name="startTime"/>
- </li>
- <li class="select-time">
- <p>结束时间:</p>
- <input type="text" class="time-input" id="endTime" placeholder="结束时间" name="endTime"/>
- </li>
- <li>
- <p>公告人员:</p>
- <select title="请选择" class="selectpicker" name="userType" th:with="type=${@dict.getType('sys_lantern_permission')}" multiple>
- <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
- </select>
- </li>
- <li>
- <a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i> 搜索</a>
- <a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i> 重置</a>
- </li>
- </ul>
- </div>
- </form>
- </div>
- <div class="btn-group-sm" id="toolbar" role="group">
- <a class="btn btn-success" onclick="$.operate.add()" shiro:hasPermission="system:lantern:add">
- <i class="fa fa-plus"></i> 添加
- </a>
- <a class="btn btn-primary single disabled" onclick="$.operate.edit()" shiro:hasPermission="system:lantern:edit">
- <i class="fa fa-edit"></i> 修改
- </a>
- <a class="btn btn-danger multiple disabled" onclick="$.operate.removeAll()" shiro:hasPermission="system:lantern:remove">
- <i class="fa fa-remove"></i> 删除
- </a>
- </div>
- <div class="col-sm-12 select-table table-striped">
- <table id="bootstrap-table"></table>
- </div>
- </div>
- </div>
- <th:block th:include="include :: footer" />
- <th:block th:include="include :: bootstrap-select-js" />
- <script th:inline="javascript">
- var editFlag = [[${@permission.hasPermi('system:lantern:edit')}]];
- var removeFlag = [[${@permission.hasPermi('system:lantern:remove')}]];
- var prefix = ctx + "system/lantern";
- $(function() {
- var options = {
- url: prefix + "/list",
- createUrl: prefix + "/add",
- updateUrl: prefix + "/edit/{id}",
- removeUrl: prefix + "/remove",
- exportUrl: prefix + "/export",
- modalName: "走马灯提示语",
- columns: [{
- checkbox: true
- },
- {
- field : 'id',
- title : 'null',
- visible: false
- },
- {
- field : 'content',
- title : '内容',
- width : '200',
- formatter: function(value, row, index) {
- return $.table.tooltip(value);
- }
- },
- {
- field : 'startTime',
- title : '开始时间'
- },
- {
- field : 'endTime',
- title : '结束时间'
- },
- {
- field : 'userType',
- title : '公告人员',
- formatter: function(value, row, index) {
- if (value == null){
- return '全部人员';
- } else {
- var userStr = '';
- if (value.indexOf('0') != -1){
- userStr += '立邦员工 ';
- }
- if (value.indexOf('1') != -1){
- userStr += '经销商 ';
- }
- if (value.indexOf('2') != -1){
- userStr += '服务商 ';
- }
- if (value.indexOf('3') != -1){
- userStr += '金牌店 ';
- }
- return userStr;
- }
- }
- },
- {
- title: '操作',
- align: 'center',
- formatter: function(value, row, index) {
- var actions = [];
- actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.id + '\')"><i class="fa fa-edit"></i>编辑</a> ');
- actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="javascript:void(0)" onclick="$.operate.remove(\'' + row.id + '\')"><i class="fa fa-remove"></i>删除</a>');
- return actions.join('');
- }
- }]
- };
- $.table.init(options);
- });
- </script>
- </body>
- </html>
|