quan_list.js
4.15 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
var t = require("../../../utils/util.js"), ut = t,
e = require("../../../utils/common.js"),
oo = getApp().globalData,
os = getApp().globalData.setting;
var utils = require('../../../utils/util.js'),ut=utils;
Page({
data: {
stoid: os.stoid,
url: os.url,
resourceUrl: os.resourceUrl,
iurl: os.imghost,
defaultAvatar: os.resourceUrl + "/static/images/user68.jpg",
dataList: null,
config2:null,
curpage:1,
loading:0,
get_item:null,
show_success:0,
getcurday:null,
},
//------初始化加载----------
onLoad: function(t) {
var th=this;
getApp().getConfig2(function (conf) {
conf.couponset=conf.couponset.replace(/\<img/g,'<img style="width:100%;height:auto;display:block"');
th.setData({config2:conf});
})
},
//---展示---
onShow: function() {
this.data.curpage=1;
this.setData({dataList:null});
this.get_quan_list();
//券的模拟数据
//var data = [{ is_get:0,money:50,condition:500,id:1,name: "券名字", endtype: 0, use_start_time: 1579596090, use_end_time: 1611218490, everyone_num: 2,interval_time:1,color:"red"}];
//th.setData({dataList: data});
this.setData({getcurday:ut.gettimestamp()});
},
onHide: function() {
},
//--券的列表页面的函数--
get_quan_list:function(){
var th=this;
if(th.data.loading) return false;
th.data.loading=1;
var user_id=getApp().globalData.user_id;
getApp().request.promiseGet("/api/weshop/prom/coupon/pageCouponList", {
data:{store_id:os.stoid,type:1,pageSize:10,page:th.data.curpage,user_id:user_id,is_share:0}
}).then(res => {
th.data.loading=0;
if(res.data.code==0){
if(!th.data.dataList) th.data.dataList=new Array();
th.data.dataList=th.data.dataList.concat(res.data.data.pageData);
th.data.curpage++;
th.setData({dataList:th.data.dataList});
}
});
},
//---加载更多是靠这个函数----
onReachBottom: function() {
this.get_quan_list();
},
//--滚动到顶部--
doScrollTop: function() {
wx.pageScrollTo({ scrollTop: 0 });
},
//-----领取券-----
get_quan: function(e) {
var cid = e.currentTarget.dataset.cid;
var index = e.currentTarget.dataset.ind;
var item = this.data.dataList[index];
//--先判断会员状态--
var user_info = getApp().globalData.userInfo;
if (user_info == null || user_info.mobile == undefined || user_info.mobile == "" || user_info.mobile == null) {
wx.navigateTo({
url: '/pages/getphone/getphone',
})
return false;
}
//如果券还在领取中,不能再点
if (item.linging == 1) {
getApp().my_warnning('领取中..', 0, this);
return false;
}
//如果领取的次数到了
if (item.everyone_num > 0 && item.lqnum >= item.everyone_num) {
getApp().my_warnning('领取失败,您已领完该券', 0, this);
return false;
}
var lq_num = item.lqnum;
var pdata = {
'uid': oo.user_id,
'cid': cid,
'store_id': os.stoid,
'type': 5
};
//-- 导购ID --
if(getApp().globalData.guide_id){
pdata.guide_id=getApp().globalData.guide_id;
}
var app = getApp(),
th = this;
app.request.post("/api/weshop/couponList/saveCouponList", {
data: pdata,
success: function(res) {
if (res.data.code == 0) {
var text = "dataList[" + index + "].is_get";
var text2 = "dataList[" + index + "].linging";
var text3 = "get_item";
var obj = {};obj[text] = 1; obj[text2] = 0;obj[text3] = item;obj['show_success']=1;
th.setData(obj);
} else {
app.confirmBox(res.data.msg);
var text2 = "dataList[" + index + "].linging";
th.setData({[text2]:0});
}
}
})
},
close_show:function () {
this.setData({show_success:0,get_item:null})
},
go_quan:function () {
getApp().goto("/pages/user/coupons/coupons");
},
go_detail:function (e) {
var index=e.currentTarget.dataset.ind;
var item=this.data.dataList[index];
getApp().goto("/packageA/pages/quan_pro/quan_pro?id="+item.id);
}
});