marketing.CouponSend.SendHistory.js
4.17 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
webpackJsonp([82],[
/* 0 */
/***/ function(module, exports, __webpack_require__) {
/**
* Created by ty on 2016/5/23.
*/
'use strict';
var $ = __webpack_require__(1),
common = __webpack_require__(2);
var couponId = location.href.substring(location.href.lastIndexOf("/") + 1);
var isSent = 1;
//下拉框
new common.dropDown({el: '#isSent'});
var Bll = {
getTime: function (time) {
var t = new Date(time * 1000);
return common.util.__dateFormat(t, "yyyy-MM-dd hh:mm:ss");
},
toast:function(){
return common.dialog.open({title:"温馨提示",content:"导出中,请稍后....请不要关闭本窗口"});
}
};
//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) {
return Bll.getTime(item.createTime);
}
}
]
});
var g1 = new common.grid({
el: '#content-list',
hash: false,
async: false,
parms: function () {
return {
couponId: couponId
//status:common.util.__input("filter-status")
};
},
columns: [
{display: "用户ID", name: "uid"},
{display: "异常原因", name: "errMsg"},
{display: "操作", render: function (item) {
return '<a class="btn btn-primary btn-xs reSend" data-index="'+ item.__index+'" href="javascript:;">重发</a>';
}},
]
});
g.init("/couponLogs/queryUserCouponLogsList");
$("#count").html(g.total);
$(document).on("click", "#filter-btn", function () {
isSent = $("#isSent").val();
if(isSent == 2) {
g1.init("/couponSendError/query");
$("#count").html(g1.total);
} else {
g.init("/couponLogs/queryUserCouponLogsList");
$("#count").html(g.total);
}
});
var t;
var path;
var api;
var f={
check:function(){
common.util.__ajax({
url: '/checkCouponExportFileIsExist',
data: {
queryConf: path
},async:false
},function(res) {
if(res.data===0){
console.log("go on");
}else{
console.log("over");
clearInterval(t);
var a = document.createElement("a");
a.setAttribute("href", "/ajax/download?path="+path);
a.setAttribute("id", "openwin");
document.body.appendChild(a);
a.click();
api.close();
}
},true);
}
}
//导出
$(document).on('click', '#export-btn', function () {
var type=isSent==1?"couponLogsExport":"couponSendErrorExport";
var total = isSent==1?g.total:g1.total;
if (total <= 0) {
common.util.__tip("当前0条数据,无需导出!", "warning")
} else {
var queryConf = JSON.stringify({couponId: couponId});
common.util.__ajax({
url: '/couponExport',
data: {
queryConf: queryConf,
type:type
}
},function(res) {
api=Bll.toast();
if(res&&res.data){
$(document).ready(function(){
path=res.data;
t=window.setInterval(f.check,2000);
});
}
});
}
});
//输入限制
$(document).on("keyup", ".number", function () {
$(this).val($(this).val().replace(/\D/g, ''));
});
//重发
$(document).on("click", ".reSend", function () {
var item = g1.rows[$(this).data("index")];
common.dialog.confirm("重发确认","是否确认重发?",function() {
common.util.__ajax({
url: '/couponSendError/retrySend',
data: {
id: item.id
},
},function() {
g1.reload();
});
});
});
/***/ }
]);