sendHistory.js
1.25 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
/**
* Created by ty on 2016/5/23.
*/
'use strict';
var $ = require('jquery'),
common=require('../common/common');
var couponId = location.href.substring(location.href.lastIndexOf("/") + 1);
//下拉框
new common.dropDown({el: '#filter-status'});
//grid
var g = new common.grid({
el: '#content-list',
hash:false,
async:false,
parms:function(){
return {
couponId: couponId
//status:common.util.__input("filter-status")
};
},
columns:[
{display:"单券号", name:"couponCode"},
{display:"用户ID",name:"uid"},
{display: '状态', render: function(item) {
var status = "";
if(item.status == 0) {
status = "未使用";
} else if(item.status == 1) {
status = "已使用";
}
return '<p class="audit-time">' + status + '</p>';
}}
]
});
g.init("/couponLogs/queryUserCouponLogsList");
$("#count").html(g.total);
$(document).on("click", "#filter-btn", function() {
g.reload(1);
});
//导出
$(document).on('click', '#export-btn', function() {
var queryConf = JSON.stringify({couponId:couponId});
window.open("/ajax/down?queryConf=" + queryConf + "&type=couponLogsExport");
});