12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- var app = getApp()
- Page({
- data: {
- index:0,
- arr:[],
- arr1:[]
- },
- onLoad: function (options) {
- var that = this;
- wx.showLoading({
- title: '加载中...',
- mask:true
- })
- app.request('/coupon?status=1', '', 'GET').then(res => {
- //未使用
- console.log(res)
- that.setData({arr:res.data.data})
- })
- app.request('/coupon?status=0', '', 'GET').then(res => {
- //已过期
- console.log(res)
- that.setData({arr1:res.data.data})
- app.request('/coupon?status=2', '', 'GET').then(res => {
- //已使用
- console.log(res)
- that.setData({arr1:that.data.arr1.concat(res.data.data)})
- wx.hideLoading({
- complete: (res) => {},
- })
- })
- })
- },
- select:function(e){
- // console.log(e)
- this.setData({index:e.currentTarget.dataset.index})
- },
- onReady: function () {
- },
- onShow: function () {
- },
- onHide: function () {
- },
- onUnload: function () {
- },
- onPullDownRefresh: function () {
- },
- onReachBottom: function () {
- },
- onShareAppMessage: function () {
- }
- })
|