vipamount.js
2.29 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
'use strict';
var $ = require('jquery'),
common=require('../common/common');
var g = new common.grid({
el: '#basicTable',
parms: function(){
return {
type: 1,
status: 1
};
},
columns:[
{display: '活动名称', name: 'title'},
{display: '活动类型', render: function(item) {
return '积分翻倍';
}},
{display: '倍数', name: 'num'},
{display: '活动时间', render: function(item) {
var startTime = new Date(item.startTime * 1000),
endTime = new Date(item.endTime * 1000);
return startTime.getFullYear() + '-' + (startTime.getMonth() + 1) + '-' + startTime.getDate() + ' ' +
startTime.getHours() + ':' + startTime.getMinutes() + ':' + startTime.getSeconds() + '至' +
endTime.getFullYear() + '-' + (endTime.getMonth() + 1) + '-' + endTime.getDate() + ' ' +
endTime.getHours() + ':' + endTime.getMinutes() + ':' + endTime.getSeconds();
}},
{display: '创建人员', name: 'addUserName'},
{display: '活动创建时间', render: function(item) {
var date = new Date(item.createTime * 1000);
return date.getFullYear() + '-' + (date.getMonth() + 1) + '-' + date.getDate() + ' '
+ date.getHours() + ':' + date.getMinutes() + ':' + date.getSeconds();
}},
{display: '操作', render: function(item) {
if (item.validFlag == 1) {
$('#add-btn').addClass('disabled');
return '<a class="btn btn-info end-btn" data-id="' + item.id + '" href="javascript:;">停止</a>';
} else {
return '活动已结束';
}
}}
],
callback: function(data) {
if (data.activity.data.list.length > 0) {
$('#add-btn').addClass('disabled');
}
return data.vipList.data;
}
});
g.init($("#gridurl").val());
$('#basicTable').on('click', '.end-btn', function() {
var activeId = $(this).data('id');
common.dialog.confirm("温馨提示", "您确定要停止此活动吗?", function(){
common.util.__ajax({
url:'/market/vipamount/save',
data: {
status: 1,
id: activeId
}
},function(){
$('#add-btn').removeClass('disabled');
g.reload();
});
});
});