1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| layui.define(['table', 'xzxUserRoleInfoApi'], function(exports) {
| var xzxUserRoleInfoApi = layui.xzxUserRoleInfoApi;
| var table=layui.table;
| var view = {
| init:function(){
| },
| delBatch:function(){
| var data = Common.getMoreDataFromTable(table,"xzxUserRoleInfoTable");
| if(data==null){
| return ;
| }
| Common.openConfirm("确认要删除所选中的数据",function(){
| var ids =Common.concatBatchId(data,"id");
| xzxUserRoleInfoApi.del(ids,function(){
| Common.info("删除成功");
| dataReload();
| })
| })
| }
| }
| exports('del',view);
|
| });
|
|