123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- import {
- get,
- post
- } from '../../utils/http';
- Page({
-
- data: {
- current: 0,
- list: [],
- total: 0,
- page: 1,
- visible: false,
- order_id: 0
- },
-
- onLoad: function (options) {
- this.getCardList()
- },
-
- onReady: function () {
- },
-
- onShow: function () {
- },
-
- onHide: function () {
- },
-
- onUnload: function () {
- },
-
- onPullDownRefresh: function () {
- },
-
- onReachBottom: function () {
- if(this.data.page * 10 < this.data.total) {
- this.getCardList(++this.data.page)
- }
- },
-
- onShareAppMessage: function () {
- },
-
- onTabsChange(e) {
- let current = e.currentTarget.dataset.id
- if(current == this.data.current) {
- return;
- }
- this.setData({
- current,
- page: 1,
- },() => {
- this.getCardList()
- })
- },
-
- onOpenPopup(e) {
- console.log(e)
- this.setData({
- visible:true,
- order_id:e.currentTarget.dataset.id
- })
- },
-
- onCancelUse() {
- this.setData({ visible: false })
- },
-
- onConfirmUse(e) {
- let that = this;
- post('api/card/active',{
- order_id: this.data.order_id
- },(res) => {
- wx.showToast({
- title: res.msg,
- icon: 'none',
- })
- that.getCardList(1)
- this.setData({ visible: false })
- })
-
- },
-
- onCancelOrder(e) {
- let that = this;
- wx.showModal({
- title: '提示',
- content: '是否取消当前订单',
- success (res) {
- console.log('用户点击确定')
- if (res.confirm) {
- post('api/card/refund',{
- order_id: e.currentTarget.dataset.id
- },(res) => {
- wx.showToast({
- title: res.msg,
- icon: 'success',
- duration: 2000
- })
- that.getCardList(1)
- })
- } else if (res.cancel) {
- console.log('用户点击取消')
- }
- }
- })
- },
-
- getCardList(_page) {
- let { list,current,page } = this.data;
- get('api/user/card',{
- type: Number(current)+1,
- page: _page || page,
- limit: 10
- },(res) => {
- if(_page == 1 || page == 1) {
- list = []
- this.data.page = 1
- }
- list.push(...res.data.list)
- this.setData({ list,total:res.data.total })
- console.log(res)
- })
- }
- })
|