12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <!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('企业荣誉列表')" />
- </head>
- <body class="gray-bg">
- <div class="container-div">
- <div class="row">
- <div class="col-sm-12 search-collapse">
- </div>
- <div class="btn-group-sm" id="toolbar" role="group">
- <a class="btn btn-success" onclick="$.operate.add()" shiro:hasPermission="company:honour:add">
- <i class="fa fa-plus"></i> 添加
- </a>
- <a class="btn btn-primary single disabled" onclick="$.operate.edit()" shiro:hasPermission="company:honour:edit">
- <i class="fa fa-edit"></i> 修改
- </a>
- <a class="btn btn-danger multiple disabled" onclick="$.operate.removeAll()" shiro:hasPermission="company:honour: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" />
- <script th:inline="javascript">
- var editFlag = [[${@permission.hasPermi('company:honour:edit')}]];
- var removeFlag = [[${@permission.hasPermi('company:honour:remove')}]];
- var prefix = ctx + "company/honour";
- $(function() {
- var options = {
- url: prefix + "/list",
- createUrl: prefix + "/add",
- updateUrl: prefix + "/edit/{id}",
- removeUrl: prefix + "/remove",
- modalName: "企业荣誉",
- columns: [{
- checkbox: true
- },
- {
- field : 'honourId',
- title : '商户荣誉id',
- visible: false
- },
- {
- field : 'companyId',
- title : '商户id',
- visible: false
- },
- {
- field : 'title',
- title : '荣誉标题'
- },
- {
- field : 'des',
- title : '荣誉描述'
- },
- {
- field : 'img',
- title : '荣誉图片',
- formatter: function(value, row, index) {
- // 图片预览(注意:如存储在本地直接获取数据库路径,如有配置context-path需要使用ctx+路径)
- // 如:/profile/upload/2019/08/08/3b7a839aced67397bac694d77611ce72.png
- return $.table.imageView(value,250,250);
- }
- },
- {
- field : 'remark',
- title : '备注'
- },
- {
- 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.honourId + '\')"><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.honourId + '\')"><i class="fa fa-remove"></i>删除</a>');
- return actions.join('');
- }
- }]
- };
- $.table.init(options);
- });
- </script>
- </body>
- </html>
|