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', 'xzxPayRequestInfoApi'], function(exports) {
| var xzxPayRequestInfoApi = layui.xzxPayRequestInfoApi;
| var table=layui.table;
| var view = {
| init:function(){
| },
| delBatch:function(){
| var data = Common.getMoreDataFromTable(table,"xzxPayRequestInfoTable");
| if(data==null){
| return ;
| }
| Common.openConfirm("确认要删除这些XzxPayRequestInfo?",function(){
| var ids =Common.concatBatchId(data,"payOrderId");
| xzxPayRequestInfoApi.del(ids,function(){
| Common.info("删除成功");
| dataReload();
| })
| })
| }
| }
| exports('del',view);
|
| });
|
|