1234567891011121314151617181920212223242526272829303132333435363738 |
- // pages/user/walletDetails/walletDetails.js
- import Date from '../../../utils/util.js'
- import APIClient from '../../../utils/APIClient.js'
- Page({
- data: {
- buyBtnText: '立即开通',
- price: '29',
- originPrice: '99',
- productId: 0,
- modalType: 'image',
- isModalShow: false,
- },
- onLoad: function (options) {
- if (options.title) {
- wx.setNavigationBarTitle({
- title: '激活码激活'
- });
- }
- },
- activeVIP() {
- // APIClient.postOrder(this.data.productId).success(res => {
- // this.prePayMap(res.data.data)
- // }).fail(err => {
- // console.log(err);
- // });
- },
- modalConfirmHandler() {
- this.setData({
- isModalShow: false
- })
- wx.redirectTo({
- url: `/pages/index/index`
- })
- },
- })
|