forked from wanghuisenior/tiku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
297 lines (288 loc) · 11.6 KB
/
index.html
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>题库</title>
<link rel="stylesheet" type="text/css" href="./easyui1.3.4/themes/default/easyui.css">
<link rel="stylesheet" type="text/css" href="./easyui1.3.4/themes/icon.css">
<script src="./jquery.min.js"></script>
<script src="./easyui1.3.4/jquery.easyui.min.js"></script>
<script src="./easyui1.3.4/locale/easyui-lang-zh_CN.js"></script>
<style>
.s1 {
width: 800px;
/*height: 500px; !*设置div的大小*!*/
border: 1px solid green; /*边框*/
text-align: center; /*文字水平居中对齐*/
overflow: hidden;
margin: 0 auto;
font-size: 20px;
}
.datagrid-header-rownumber, .datagrid-cell-rownumber {
width: 33px;
}
</style>
</head>
<body>
<div class="s1">
<h3></h3>
<h3></h3>
<!-- <select class="easyui-combobox" id="table_name" data-options="editable:false,panelHeight:'auto'"
style="width: 80px;">
<option value="tiku">tiku</option>
<option value="tikuNet">tikuNet</option>
</select> -->
<input type="text" id="question" autocomplete="off" placeholder="题目" value="">
<h3></h3>
<input type="text" id="answer" autocomplete="off" placeholder="答案" value="">
<br>
<button onclick="submit()">添加</button>
<br>
<input type="text" id="keyword" autocomplete="off" placeholder="关键字" value="">
<button onclick="search()">查询</button>
<br>
<br>
<table id="table"></table>
</div>
<div id="diaEdit" class="easyui-dialog" style="padding:30px;">
<form id="form" method="post">
<input type="hidden" id="form_id">
<table>
<tr>
<td>题目:</td>
<td><input class="easyui-textbox" id="form_q" data-options="multiline:true"
style="height:60px;width: 400px"></input></td>
</tr>
<tr>
<td>答案:</td>
<td><input class="easyui-textbox" id="form_a" data-options="multiline:true"
style="height:60px;width: 400px"></input></td>
</tr>
</table>
</form>
<div style="text-align:center;padding:5px">
<a href="javascript:void(0)" class="easyui-linkbutton" onclick="editRow()">提交</a>
</div>
</div>
<script>
$(function () {
// 关闭弹窗
$('#diaEdit').dialog('close');
})
function submit() {
var q = $("#question").val();
var a = $("#answer").val();
if (q && a) {
$.post("insertOrUpdate",
{"question": q, "answer": a},
function (res) {
$.messager.show({
title: '提示',
msg: res['code'] == 200 ? '添加成功' : '添加失败,已存在',
showType: 'fade', //设置显示类型
style: {}, //设置弹框的位置
// width:100, //设置弹框的宽度和高度
// height:200,
timeout: 500 //设置停留时间,1000毫秒
});
$("#table").datagrid("reload");
},'json');
}
}
function search() {
$("#table").datagrid('load', {
'keyword': $("#keyword").val(),
});
}
$('#table').datagrid({
url: 'search',
method: 'GET',
height: 360,
singleSelect: false,
// checkOnSelect: false,
pagination: true,
fitColumns: true,
striped: true,
rownumbers: true,
// fit:true,
pageSize: 10,//每页显示的记录条数,默认为10
pageList: [10, 20, 50, 100, 200, 500],
queryParams: {
table_name: 'tiku',
},
toolbar: [
{
iconCls: 'icon-no',
text: '删除选中行',
handler: function () {
var checked = $("#table").datagrid("getChecked");
var ids = [];
for (var i = 0; i < checked.length; i++) {
//ids.push(checked[i].id);
ids.push(checked[i].id);
}
$.messager.prompt('提示', '请输入操作密码', function (pwd) {
if (pwd) {
$("#table").datagrid("loading");
$.getJSON('deleteById', {'pwd': pwd, 'ids[]': JSON.stringify(ids)}, function (res) {
$.messager.show({
title: '提示',
msg: res == 200 ? '删除成功' : '删除失败',
showType: 'fade', //设置显示类型
style: {}, //设置弹框的位置
// width:100, //设置弹框的宽度和高度
// height:200,
timeout: 500 //设置停留时间,1000毫秒
});
$("#table").datagrid("reload");
})
}
});
}
}, '-',
{
iconCls: 'icon-search',
text: '查询题目相同的数据',
handler: function () {
$("#table").datagrid("loading");
$.getJSON('searchRepeatData', function (res) {
$("#table").datagrid("loadData", res);
$("#table").datagrid("loaded");
})
}
}, '-',
{
iconCls: 'icon-cancel',
text: '清除重复数据',
handler: function () {
$.messager.prompt('提示', '确认删除题目和答案相同的数据,仅保留最早的一条?确认请输入 yes', function (r) {
if (r == 'yes') {
$.getJSON('onekeyclear', function (res) {
$.messager.show({
title: '提示',
msg: res == 200 ? '删除成功' : '删除失败',
showType: 'fade', //设置显示类型
style: {}, //设置弹框的位置
// width:100, //设置弹框的宽度和高度
// height:200,
timeout: 500 //设置停留时间,1000毫秒
});
$("#table").datagrid("reload");
})
}
});
}
},
],
remoteSort: false,
columns: [[
{checkbox: true},
// {field: 'id', title: 'ID', width: 20},
{field: 'question', title: '题目', width: 180},
{field: 'answer', title: '答案', width: 60},
{
field: 'datetime', title: '创建时间', sortable: true,
sorter: function (a, b) {
a = a.split('/');
b = b.split('/');
if (a[2] == b[2]) {
if (a[0] == b[0]) {
return (a[1] > b[1] ? 1 : -1);
} else {
return (a[0] > b[0] ? 1 : -1);
}
} else {
return (a[2] > b[2] ? 1 : -1);
}
}
},
{
field: 'operate', title: '操作', align: 'center', width: 60,
formatter: function (value, row, index) {
var del = '<a name="edit" class="easyui-linkbutton" data-options="plain:true,iconCls:\'icon-edit\'" onclick="showEditPanel(' + index + ')"></a>' +
'<a name="delete" class="easyui-linkbutton" data-options="plain:true,iconCls:\'icon-remove\'" onclick="deleteRow(' + index + ')"></a>';
return del;
}
}
]],
onLoadSuccess: function (data) {
$("a[name='edit']").linkbutton({text: '修改', plain: true, iconCls: 'icon-edit'});
$("a[name='delete']").linkbutton({text: '删除', plain: true, iconCls: 'icon-remove'});
}
});
function showEditPanel(index) {
var row = $("#table").datagrid("getRows")[index];
if (row) {
$('#diaEdit').dialog('open').dialog({
title: "编辑",
width: 500,
height: 300,
modal: true
});
$("#form_id").val(row.id);
$("#form_q").val(row.question);
$("#form_a").val(row.answer);
} else {
$.messager.alert("提示", "请选中要编辑的行!");
}
}
function editRow() {
var qid = $("#form_id").val();
var que = $("#form_q").val();
var ans = $("#form_a").val();
$.post("update",
{'id': qid, "question": que, "answer": ans},
function (res) {
$.messager.show({
title: '提示',
msg: res == 200 ? '修改成功' : '修改失败',
showType: 'fade', //设置显示类型
style: {}, //设置弹框的位置
// width:100, //设置弹框的宽度和高度
// height:200,
timeout: 500 //设置停留时间,1000毫秒
});
$('#diaEdit').dialog('close');
$("#table").datagrid("reload");
},'json');
}
function deleteRow(index) {
var row = $("#table").datagrid("getRows")[index];
// $.messager.progress();
$.messager.prompt('提示', '请输入操作密码', function (pwd) {
if (pwd) {
$.getJSON('deleteById', {'pwd': pwd, 'id': row.id}, function (res) {
$.messager.show({
title: '提示',
msg: res == 200 ? '删除成功' : '删除失败',
showType: 'fade', //设置显示类型
style: {}, //设置弹框的位置
// width:100, //设置弹框的宽度和高度
// height:200,
timeout: 200 //设置停留时间,1000毫秒
});
$("#table").datagrid("reload");
})
}
});
}
//采用jquery easyui loading css效果
function ajaxLoading() {
$("<div class=\"datagrid-mask\"></div>").css({
display: "block",
width: "100%",
height: $(window).height()
}).appendTo("body");
$("<div class=\"datagrid-mask-msg\"></div>").html("正在处理,请稍候。。。").appendTo("body").css({
display: "block",
left: ($(document.body).outerWidth(true) - 190) / 2,
top: ($(window).height() - 45) / 2
});
}
function ajaxLoadEnd() {
$(".datagrid-mask").remove();
$(".datagrid-mask-msg").remove();
}
</script>
</body>
</html>