1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- var util = require('../../utils/util.js');
- var api = require('../../config/api.js');
- const pay = require('../../services/pay.js');
- var app = getApp();
- Page({
- data: {
- status: false,
- orderId: 0
- },
- onLoad: function (options) {
- // 页面初始化 options为页面跳转所带来的参数
- this.setData({
- orderId: options.orderId || 24,
- status: options.status
- })
- this.updateSuccess()
- },
- naback(){
- wx.switchTab({
- url: '/pages/index/index',
- })
- // wx.navigateBack({
- // delta:15
- // })
- },
- onReady: function () {
- },
- onShow: function () {
- // 页面显示
- },
- onHide: function () {
- // 页面隐藏
- },
- onUnload: function () {
- // 页面关闭
- },
-
- updateSuccess: function () {
- let that = this
- util.request(api.OrderQuery, { orderId: this.data.orderId}).then(function (res) {
- })
- },
- payOrder() {
- pay.payOrder(parseInt(this.data.orderId)).then(res => {
- this.setData({
- status: true
- });
- this.updateSuccess()
- }).catch(res => {
- util.showErrorToast('支付失败');
- });
- }
- })
|