|
@@ -35,6 +35,12 @@
|
35
|
35
|
</div>
|
36
|
36
|
</div>
|
37
|
37
|
</div>
|
|
38
|
+ <div class="layui-inline">
|
|
39
|
+ <label class="layui-form-label" style="width: 80px">身份证号</label>
|
|
40
|
+ <div class="layui-input-inline">
|
|
41
|
+ <input type="text" name="sfzh" autocomplete="off" class="layui-input">
|
|
42
|
+ </div>
|
|
43
|
+ </div>
|
38
|
44
|
<div class="layui-inline">
|
39
|
45
|
<div class="layui-inline">
|
40
|
46
|
<label class="layui-form-label " style="width: 40px;">状态</label>
|
|
@@ -278,10 +284,8 @@
|
278
|
284
|
data: JSON.stringify(data),
|
279
|
285
|
success: function (res) {
|
280
|
286
|
if (res.code === 0) {
|
281
|
|
- Message.success(1500, res.message, function () {
|
282
|
|
- // 重载表格
|
283
|
|
- currTable.reload();
|
284
|
|
- });
|
|
287
|
+ Message.success(1500, res.message);
|
|
288
|
+ table.reload('currentTableId');
|
285
|
289
|
} else {
|
286
|
290
|
Message.error(res.message, 1000);
|
287
|
291
|
}
|
|
@@ -297,7 +301,7 @@
|
297
|
301
|
AjaxUtil.get({
|
298
|
302
|
url:AjaxUtil.ctx +'lsUser/getAll',
|
299
|
303
|
success: function(res){
|
300
|
|
- table.exportFile('currentTableId',res.data,'xls');
|
|
304
|
+ table.exportFile('currentTableId',res.data,'xlsx');
|
301
|
305
|
},
|
302
|
306
|
error:function (error) {
|
303
|
307
|
Message.error(error,2000)
|
|
@@ -347,29 +351,18 @@
|
347
|
351
|
url: AjaxUtil.ctx + "lsUser/delete/" + data.id,
|
348
|
352
|
success: function (res) {
|
349
|
353
|
if (res.code === 0) {
|
350
|
|
- layer.msg('删除成功', {icon: 6}, function () {
|
351
|
|
- // 表格重载
|
352
|
|
- table.reload('currentTableId', {
|
353
|
|
- data: data, // 更新后的数据源
|
354
|
|
- page: false, // 不分页处理
|
355
|
|
- limit: data.length // 限制数据条数,取数据源长度
|
356
|
|
- }, true);
|
357
|
|
- })
|
|
354
|
+ layer.msg(res.message);
|
|
355
|
+ table.reload('currentTableId');
|
358
|
356
|
} else {
|
359
|
|
- layer.msg('删除失败', {icon: 5}, function () {
|
360
|
|
- // 表格重载
|
361
|
|
- table.reload('currentTableId', {
|
362
|
|
- data: data, // 更新后的数据源
|
363
|
|
- page: false, // 不分页处理
|
364
|
|
- limit: data.length // 限制数据条数,取数据源长度
|
365
|
|
- }, true);
|
366
|
|
- });
|
|
357
|
+ layer.msg(res.message);
|
|
358
|
+ table.reload('currentTableId');
|
367
|
359
|
}
|
368
|
360
|
},
|
369
|
361
|
error: function (error) {
|
370
|
362
|
|
371
|
363
|
layer.alert('服务器睡着了', {icon: 5});
|
372
|
364
|
console.log(error);
|
|
365
|
+ table.reload('currentTableId');
|
373
|
366
|
}
|
374
|
367
|
});
|
375
|
368
|
});
|
|
@@ -380,19 +373,6 @@
|
380
|
373
|
|
381
|
374
|
});
|
382
|
375
|
|
383
|
|
- function updateTable() {
|
384
|
|
- // 表格重载
|
385
|
|
- table.reload('currentTableId', {
|
386
|
|
- data: data, // 更新后的数据源
|
387
|
|
- page: false, // 不分页处理
|
388
|
|
- limit: data.length // 限制数据条数,取数据源长度
|
389
|
|
- }, true);
|
390
|
|
-
|
391
|
|
- }
|
392
|
|
-
|
393
|
|
- function setUpdateFlag() {
|
394
|
|
- updateflag = 1;
|
395
|
|
- }
|
396
|
376
|
</script>
|
397
|
377
|
</body>
|
398
|
378
|
</html>
|