123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- 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() {
- wx.redirectTo({
- url: '/pages/pay/pay',
- })
- },
- onReady:function(){
- // 页面渲染完成
- },
- onShow:function(){
- // 页面显示
- },
- onHide:function(){
- // 页面隐藏
- },
- onUnload:function(){
- // 页面关闭
- }
- })
|