123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248 |
- <%@ page contentType="text/html;charset=UTF-8" %>
- <script>
- $(document).ready(function() {
- $('#appBaseNewsTable').bootstrapTable({
- //请求方法
- method: 'post',
- //类型json
- dataType: "json",
- contentType: "application/x-www-form-urlencoded",
- //显示检索按钮
- showSearch: true,
- //显示刷新按钮
- showRefresh: true,
- //显示切换手机试图按钮
- showToggle: true,
- //显示 内容列下拉框
- showColumns: true,
- //显示到处按钮
- showExport: false,
- //显示切换分页按钮
- showPaginationSwitch: true,
- //最低显示2行
- minimumCountColumns: 2,
- //是否显示行间隔色
- striped: true,
- //是否使用缓存,默认为true,所以一般情况下需要设置一下这个属性(*)
- cache: false,
- //是否显示分页(*)
- pagination: true,
- //排序方式
- sortOrder: "asc",
- //初始化加载第一页,默认第一页
- pageNumber:1,
- //每页的记录行数(*)
- pageSize: 10,
- //可供选择的每页的行数(*)
- pageList: [10, 25, 50, 100],
- //这个接口需要处理bootstrap table传递的固定参数,并返回特定格式的json数据
- url: "${ctx}/app/base/appBaseNews/data",
- //默认值为 'limit',传给服务端的参数为:limit, offset, search, sort, order Else
- //queryParamsType:'',
- ////查询参数,每次调用是会带上这个参数,可自定义
- queryParams : function(params) {
- var searchParam = $("#searchForm").serializeJSON();
- searchParam.pageNo = params.limit === undefined? "1" :params.offset/params.limit+1;
- searchParam.pageSize = params.limit === undefined? -1 : params.limit;
- searchParam.orderBy = params.sort === undefined? "" : params.sort+ " "+ params.order;
- return searchParam;
- },
- //分页方式:client客户端分页,server服务端分页(*)
- sidePagination: "server",
- contextMenuTrigger:"right",//pc端 按右键弹出菜单
- contextMenuTriggerMobile:"press",//手机端 弹出菜单,click:单击, press:长按。
- contextMenu: '#context-menu',
- onContextMenuItem: function(row, $el){
- if($el.data("item") == "edit"){
- edit(row.id);
- }else if($el.data("item") == "view"){
- view(row.id);
- } else if($el.data("item") == "delete"){
- jp.confirm('确认要删除该要闻内容管理记录吗?', function(){
- jp.loading();
- jp.get("${ctx}/app/base/appBaseNews/delete?id="+row.id, function(data){
- if(data.success){
- $('#appBaseNewsTable').bootstrapTable('refresh');
- jp.success(data.msg);
- }else{
- jp.error(data.msg);
- }
- })
- });
- }
- },
- onClickRow: function(row, $el){
- },
- onShowSearch: function () {
- $("#search-collapse").slideToggle();
- },
- columns: [{
- checkbox: true
- },{
- field: 'title',
- title: '标题',
- sortable: true,
- sortName: 'title',
- formatter:function(value, row , index){
- <c:choose>
- <c:when test="${fns:hasPermission('app:base:appBaseNews:edit')}">
- return "<a href='javascript:edit(\""+row.id+"\")'>"+value+"</a>";
- </c:when>
- <c:when test="${fns:hasPermission('app:base:appBaseNews:view')}">
- return "<a href='javascript:view(\""+row.id+"\")'>"+value+"</a>";
- </c:when>
- <c:otherwise>
- return value;
- </c:otherwise>
- </c:choose>
- }
- },
- {
- field: 'navId.title',
- title: '栏目',
- sortable: true,
- sortName: 'navId.title'
- }
- ,{
- field: 'createDate',
- title: '创建时间',
- sortable: true,
- sortName: 'createDate'
- }
- ,{
- field: 'display',
- title: '是否在首页中显示',
- sortable: true,
- sortName: 'display',
- formatter:function(value, row , index){
- return jp.getDictLabel(${fns:toJson(fns:getDictList('yes_no'))}, value, "-");
- }
- },{
- field: 'dept.name',
- title: '所属部门',
- sortable: true,
- sortName: 'dept.name'
- }
- ]
- });
- if(navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)){//如果是移动端
- $('#appBaseNewsTable').bootstrapTable("toggleView");
- }
- $('#appBaseNewsTable').on('check.bs.table uncheck.bs.table load-success.bs.table ' +
- 'check-all.bs.table uncheck-all.bs.table', function () {
- $('#remove').prop('disabled', ! $('#appBaseNewsTable').bootstrapTable('getSelections').length);
- $('#view,#edit').prop('disabled', $('#appBaseNewsTable').bootstrapTable('getSelections').length!=1);
- });
- $("#btnImport").click(function(){
- jp.open({
- type: 2,
- area: [500, 200],
- auto: true,
- title:"导入数据",
- content: "${ctx}/tag/importExcel" ,
- btn: ['下载模板','确定', '关闭'],
- btn1: function(index, layero){
- jp.downloadFile('${ctx}/app/base/appBaseNews/import/template');
- },
- btn2: function(index, layero){
- var iframeWin = layero.find('iframe')[0]; //得到iframe页的窗口对象,执行iframe页的方法:iframeWin.method();
- iframeWin.contentWindow.importExcel('${ctx}/app/base/appBaseNews/import', function (data) {
- if(data.success){
- jp.success(data.msg);
- refresh();
- }else{
- jp.error(data.msg);
- }
- });//调用保存事件
- jp.close(index);
- },
- btn3: function(index){
- jp.close(index);
- }
- });
- });
- $("#export").click(function(){//导出Excel文件
- jp.downloadFile('${ctx}/app/base/appBaseNews/export');
- });
- $("#search").click("click", function() {// 绑定查询按扭
- $('#appBaseNewsTable').bootstrapTable('refresh');
- });
- $("#reset").click("click", function() {// 绑定查询按扭
- $("#navId").val("");
- $("#title").val("")
- $('#appBaseNewsTable').bootstrapTable('refresh');
- });
- });
- function getIdSelections() {
- return $.map($("#appBaseNewsTable").bootstrapTable('getSelections'), function (row) {
- return row.id
- });
- }
- function deleteAll(){
- jp.confirm('确认要删除该栏目内容记录吗?', function(){
- jp.loading();
- jp.get("${ctx}/app/base/appBaseNews/deleteAll?ids=" + getIdSelections(), function(data){
- if(data.success){
- $('#appBaseNewsTable').bootstrapTable('refresh');
- jp.success(data.msg);
- }else{
- jp.error(data.msg);
- }
- })
- })
- }
- //刷新列表
- function refresh(){
- $('#appBaseNewsTable').bootstrapTable('refresh');
- }
- function add(){
- jp.openSaveDialog('新增栏目内容', "${ctx}/app/base/appBaseNews/navInfoForm?typeId=3",'800px', '500px');
- }
- function edit(id){//没有权限时,不显示确定按钮
- if(id == undefined){
- id = getIdSelections();
- }
- jp.openSaveDialog('编辑栏目内容', "${ctx}/app/base/appBaseNews/navInfoForm?id=" + id+"&typeId=3", '800px', '500px');
- }
- function view(id){//没有权限时,不显示确定按钮
- if(id == undefined){
- id = getIdSelections();
- }
- jp.openViewDialog('查看栏目内容', "${ctx}/app/base/appBaseNews/navInfoForm?oprType=view&id=" + id+"&typeId=3", '800px', '500px');
- }
- </script>
|