12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- var util = require('../../../utils/util.js');
- var api = require('../../../config/api.js');
- Page({
- data: {
- orderId: 0,
- orderInfo: {},
- orderGoods: [],
- handleOption: {}
- },
- onLoad: function (options) {
- // 页面初始化 options为页面跳转所带来的参数
- this.setData({
- orderId: options.id
- });
- this.getOrderDetail();
- },
- getOrderDetail() {
- let that = this;
- util.request(api.OrderDetail, {
- orderId: that.data.orderId
- }).then(function (res) {
- if (res.errno === 0) {
- console.log(res.data);
- that.setData({
- orderInfo: res.data.orderInfo,
- orderGoods: res.data.orderGoods,
- handleOption: res.data.handleOption
- });
- //that.payTimer();
- }
- });
- },
- payTimer() {
- let that = this;
- let orderInfo = that.data.orderInfo;
- setInterval(() => {
- console.log(orderInfo);
- orderInfo.add_time -= 1;
- that.setData({
- orderInfo: orderInfo,
- });
- }, 1000);
- },
- payOrder() {
- let that = this;
- util.request(api.PayPrepayId, {
- orderId: that.data.orderId || 15
- }).then(function (res) {
- if (res.errno === 0) {
- const payParam = res.data;
- wx.requestPayment({
- 'timeStamp': payParam.timeStamp,
- 'nonceStr': payParam.nonceStr,
- 'package': payParam.package,
- 'signType': payParam.signType,
- 'paySign': payParam.paySign,
- 'success': function (res) {
- console.log(res)
- },
- 'fail': function (res) {
- console.log(res)
- }
- });
- }
- });
- },
- onReady: function () {
- // 页面渲染完成
- },
- onShow: function () {
- // 页面显示
- },
- onHide: function () {
- // 页面隐藏
- },
- onUnload: function () {
- // 页面关闭
- }
- })
|