123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- const app = getApp()
- const util = require('../../utils/util')
- Page({
-
- data: {
- childTitle:"支付完成",
- otherList:[],
- type:""
- },
- redirectTo:function(){
- let pages = getCurrentPages();
- let prevPage = pages[pages.length - 2];
- prevPage.setData({
- payDone: true,
- })
- wx.navigateBack({
- delta: 1,
- })
- },
- toIndex:function(){
- wx.switchTab({
- url: '/pages/index/index',
- })
-
- },
- toOrder:function(){
- wx.redirectTo({
- url:'/pages/cardList/cardList',
- })
- },
- tapClass:function(event){
- const id = event.currentTarget.id
- wx.redirectTo({
- url:'/pages/cardList/cardList',
- })
- },
-
-
- onLoad: function (options) {
- const money = options.money
- this.setData({
- money:money,
- })
- },
-
- onReady: function () {
- },
-
- onShow: function () {
- },
-
- onHide: function () {
- },
-
- onUnload: function () {
-
- },
-
- onPullDownRefresh: function () {
- },
-
- onReachBottom: function () {
- },
-
- onShareAppMessage: function () {
- }
- })
|