case.js
2.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
$(function(){
init();
moreSpan();
table();
})
//初始化显示查询条件
function init(){
var len=$("#caseFindBox div").length;
for(i=0;i<len;i++){
$("#caseFindBox").find(".caseFind_p").eq(i).find("ul li:gt(9)").hide();
}
}
function moreSpan(){
$("#caseFindBox span").click(function(){
var text=$(this).text();
if(text=="+"){
$(this).text("-");
$(this).parent().find("ul li:gt(9)").show();
}
if(text=="-"){
$(this).text("+");
$(this).parent().find("ul li:gt(9)").hide();
}
})
}
//表格部分
function table(){
$('#table').bootstrapTable({
method: "get",
url: "json/case.json",
striped: true,
singleSelect: false,
dataType: "json",
pagination: true, //分页
pageSize: 10,
pageNumber: 1,
search: false, //显示搜索框
contentType: "application/x-www-form-urlencoded",
queryParams: null,
//sidePagination: "server", //服务端请求
columns: [
{
title: "",
field: 'ch',
align: 'center',
width:'30px',
valign: 'middle',
formatter:function(val,row){
return '<div class="cliclRed"></div>';
}
}
,
{
title: "事项名称",
field: 'name',
align: 'center',
valign: 'middle'
},
{
title: '负责部门',
field: 'part',
align: 'center',
valign: 'middle'
},
{
title: '操作',
field: 'opear',
width:'250px',
align: 'center',
formatter: function (value, row) {
var e = '<a href="javascript:void(0)" title="咨询" onclick="edit(\'' + row.id + '\')">编辑</a> ';
var c = '<a href="javascript:void(0)" title="删除" onclick="del(\'' + row.id + '\')">删除</a> ';
return e+c ;
}
}
]
});
}
// 公用弹出框
function edit(){
layer.open({
type: 2,
title: '信息详情页面',
shade: 0.5,
skin: 'layui-layer-rim',
area: ['1000px', '610px'],
shadeClose: true,
closeBtn: 1,
content: 'caseTail.html'
});
}