user_commission_apply.js
7.1 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
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
define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
var Controller = {
index: function () {
// 初始化表格参数配置
Table.api.init({
extend: {
index_url: 'user_commission_apply/index' + location.search,
add_url: 'user_commission_apply/add',
edit_url: 'user_commission_apply/edit',
del_url: 'user_commission_apply/del',
multi_url: 'user_commission_apply/multi',
import_url: 'user_commission_apply/import',
table: 'user_commission_apply',
}
});
var table = $("#table");
// 初始化表格
table.bootstrapTable({
url: $.fn.bootstrapTable.defaults.extend.index_url,
pk: 'id',
sortName: 'id',
columns: [
[
{checkbox: true},
{field: 'id', title: __('Id')},
{field: 'user_id', title: __('User_id')},
{field: 'user.nickname', title: __('User.nickname'), operate: 'LIKE'},
{field: 'user.avatar', title: __('User.avatar'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image},
{field: 'money', title: __('Money'), operate:'BETWEEN'},
{field: 'status', title: __('Status'), searchList: {"0":__('Status 0'),"1":__('Status 1'),"-1":__('Status -1')}, formatter: Table.api.formatter.status},
{field: 'status_msg', title: __('Status_msg'), operate: 'LIKE'},
{field: 'partner_trade_no', title: __('Partner_trade_no'), operate: 'LIKE'},
{field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
{
field: 'buttons',
width: "120px",
title: '提现操作',
table: table,
operate: false,
formatter: function (value, row) {
if(row.status==0){
return `<div>
<button class="btn btn-xs btn-success withdrawreal" data-id="${row.id}" data-sta="1" >同意</button>
<button class="btn btn-xs btn-danger withdrawrefuse" data-id="${row.id}" data-sta="-1">拒绝</button>
</div>`
}else{
return `<div>已完成</div>`
}
},
},
{field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
]
]
});
$(document).on("click", ".withdrawrefuse", function () {
let id = $(this).attr("data-id")
let sta=$(this).attr("data-sta")
Layer.prompt({title: __('请输入驳回理由'), formType: 0}, function (value, index) {
Backend.api.ajax({
url: "user_commission_apply/applyOper/id/" + id,
data: {
status:sta,
status_msg:value
},
}, function () {
table.bootstrapTable('refresh');
Layer.close(index);
});
});
});
$(document).on("click", ".withdrawreal", function () {
let id = $(this).attr("data-id")
let sta=$(this).attr("data-sta")
Backend.api.ajax({
url: "user_commission_apply/applyOper/id/" + id,
data: {
status:sta,
status_msg:''
},
}, function () {
table.bootstrapTable('refresh');
});
});
// 为表格绑定事件
Table.api.bindevent(table);
},
recyclebin: function () {
// 初始化表格参数配置
Table.api.init({
extend: {
'dragsort_url': ''
}
});
var table = $("#table");
// 初始化表格
table.bootstrapTable({
url: 'user_commission_apply/recyclebin' + location.search,
pk: 'id',
sortName: 'id',
columns: [
[
{checkbox: true},
{field: 'id', title: __('Id')},
{
field: 'deletetime',
title: __('Deletetime'),
operate: 'RANGE',
addclass: 'datetimerange',
formatter: Table.api.formatter.datetime
},
{
field: 'operate',
width: '130px',
title: __('Operate'),
table: table,
events: Table.api.events.operate,
buttons: [
{
name: 'Restore',
text: __('Restore'),
classname: 'btn btn-xs btn-info btn-ajax btn-restoreit',
icon: 'fa fa-rotate-left',
url: 'user_commission_apply/restore',
refresh: true
},
{
name: 'Destroy',
text: __('Destroy'),
classname: 'btn btn-xs btn-danger btn-ajax btn-destroyit',
icon: 'fa fa-times',
url: 'user_commission_apply/destroy',
refresh: true
}
],
formatter: Table.api.formatter.operate
}
]
]
});
// 为表格绑定事件
Table.api.bindevent(table);
},
add: function () {
Controller.api.bindevent();
},
edit: function () {
Controller.api.bindevent();
},
api: {
bindevent: function () {
Form.api.bindevent($("form[role=form]"));
}
}
};
return Controller;
});