123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- // pages/quan/quan.js
- const app = getApp()
- const util = require("../../utils/util")
- const urlDef = require("../../utils/urls")
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- status: '0',
- list: [
- ],
- loading: '上拉加载',
- flag: 0,
- pageNum: 0,
- hasNextPage: true,
- switchTitle: [
- '可使用', '已使用'
- ]
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- this.queryList();
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide: function () {
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload: function () {
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
- if (this.data.hasNextPage) {
- let pn = this.data.pageNum
- this.setData({ loading: '加载中', 'pageNum': ++pn })
- this.queryList()
- }
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function () {
- },
- queryList: function () {
- const urls = urlDef.urls;
- let stu = wx.getStorageSync('student');
- if (stu) {
- let params = { 'q.studentId': stu.studentId, 'q.orgId': stu.orgId }
- let url = null;
- if (this.data.status == '0') { // 待领取 + 已领取
- url = urls.coupon_receive_list;
- } else if (this.data.status == '2') { // 已经使
- url = urls.my_coupon;
- params['q.status'] = '2';
- }
- params.pageNum = this.data.pageNum
- util.apiPost(url, params).then(rs => {
- let list = rs.list
- for (var i in list) {
- if (list[i].endDate) {
- list[i].lastTime = list[i].endDate.substring(0, 10)
- }
- let arr = list[i].instructions.split(" ")
- const oneBegin = arr[2].indexOf('元')
- list[i].tempMoney = arr[0] + arr[1] + arr[2].substring(0, oneBegin + 1)
-
- if (arr.length == 5) {
- const twoBegin = oneBegin + 1
- const threeBein = arr[3].indexOf(')')
- list[i].tempDate = (arr[2].substring(twoBegin, arr[2].length) + arr[3].substring(0, threeBein + 1)).trim()
-
- const fourBegin = threeBein + 1
- const fiveBegin = arr[3].indexOf("适")
- list[i].tempThreshold = arr[3].substring(fourBegin, fiveBegin).trim()
- list[i].tempThreshold = list[i].tempThreshold.substring(5,list[i].tempThreshold.length)
-
- const sixBegin = fiveBegin
- const sevenbegin = arr[3].lastIndexOf('适')
- list[i].tempRange = arr[3].substring(sixBegin, sevenbegin).trim()
-
- list[i].tempCrowd = (arr[3].substring(sevenbegin, arr[3].length) + arr[4]).trim()
- }
-
- if (arr.length == 6) {
- const twoBegin = arr[2].indexOf('有')
- const threeBegin = arr[4].indexOf('金')
- list[i].tempDate = arr[2].substring(twoBegin, arr[2].length).trim() + ' 至 ' + arr[4].substring(0, threeBegin).trim()
-
-
- const fourBegin = threeBegin
- const fiveBegin = arr[4].indexOf('适')
- list[i].tempThreshold = arr[4].substring(fourBegin, fiveBegin).trim()
- list[i].tempThreshold = list[i].tempThreshold.substring(5,list[i].tempThreshold.length)
-
- const sixBegin = fiveBegin
- const sevenbegin = arr[4].lastIndexOf('适')
- list[i].tempRange = arr[4].substring(sixBegin, sevenbegin).trim()
-
- list[i].tempCrowd = (arr[4].substring(sevenbegin, arr[4].length) + arr[5]).trim()
-
- }
- }
- this.setData({
- 'hasNextPage': rs.hasNextPage,
- 'loading': rs.hasNextPage ? '下拉刷新' : '没有更多数据',
- 'list': this.data.list.concat(list)
- })
- })
- }
- },
- changeIndex: function (e) {
- if (e.detail == 0) {
- this.setData({ status: '0' })
- } else {
- this.setData({ status: '2' })
- }
- this.setData({
- list: [],
- loading: '上拉加载',
- pageNum: 0
- })
- this.queryList()
- },
- submitCilck: function (e) {console.log(JSON.stringify(e))
- const urls = urlDef.urls;
- let item = this.data.list[e.currentTarget.dataset.index]
- if (item.receiveDate) {
- wx.showToast({ title: '已领取过该优惠券', icon: 'none' });
- return;
- }
- wx.showLoading({
- title: '正在领取...',
- mask: true
- })
- util.apiPost(urls.coupon_receive + '?publishId=' + item.publishId + '&couponId=' + item.couponId).then((rs) => {
- wx.hideLoading({})
- if (rs.message) {
- wx.showToast({ title: rs.message, icon: 'none' });
- return;
- }
- item.receiveDate = new Date();
- wx.showToast({ title: '领取成功', icon: 'success' });
- this.setData({ list: [], pageNum: 0 })
- this.queryList();
- })
- }
- })
|