123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- const app = getApp()
- const WXAPI = require('apifm-wxapi')
- const AUTH = require('../../utils/auth')
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- wxlogin: true,
- score: 0,
- uid: undefined
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- AUTH.checkHasLogined().then(isLogined => {
- this.setData({
- wxlogin: isLogined
- })
- if (isLogined) {
- this.initData()
- }
- })
- },
- async initData(){
- const token = wx.getStorageSync('token')
- const res1 = await WXAPI.userAmount(token)
- if (res1.code == 0) {
- this.data.score = res1.data.score
- }
- const res2 = await WXAPI.scoreDeductionRules(1);
- if (res2.code == 0) {
- this.data.deductionRules = res2.data
- }
- this.setData({
- score: this.data.score,
- deductionRules: this.data.deductionRules,
- })
- },
- async bindSave(e) {
- const score = e.detail.value.score;
- if (!score) {
- wx.showToast({
- title: '请输入积分数量',
- icon: 'none'
- })
- return
- }
- const res = await WXAPI.exchangeScoreToGrowth(wx.getStorageSync('token'), score)
- if (res.code == 0) {
- wx.showModal({
- title: '成功',
- content: '恭喜您,成功兑换'+ res.data +'成长值',
- showCancel: false
- })
- } else {
- wx.showToast({
- title: res.msg,
- icon: 'none'
- })
- }
- },
- cancelLogin() {
- this.setData({
- wxlogin: true
- })
- },
- processLogin(e) {
- if (!e.detail.userInfo) {
- wx.showToast({
- title: '已取消',
- icon: 'none',
- })
- return;
- }
- AUTH.register(this);
- },
- })
|