You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

191 lines
4.9 KiB

var Api = require('../../../utils/common.js');
var re = require('../../../utils/request.js');
Page({
/**
* 页面的初始数据
*/
data: {
id:'',
val:{status:'1',order_number:'223444',image:'../../../images/logo.jpg',name:'动感光波',intro:'欢乐游园亲子活动,全家人一起畅游欢乐谷,享受天...'
,pay_price:'222',jointime:'2020-10-10 08:00',activetime:'2020-10-10 08:00',plan:'报名费',people:'222',clubName:'众行天下',clubTel:'23445555'},
array: ['微信支付','线下支付'],
index:'',
payType:'1',
company:''
},
/**
* 生命周期函数--监听页面加载
*/
topick:function(){
var that = this;
wx.navigateTo({
url: '../../index/order/order?id='+that.data.val.orderSerial+''
})
},
onLoad: function (options) {
var that = this;
that.setData({
id:options.id
})
that.getOrderDetail(options.id)
},
getOrderDetail:function(id){
var that = this;
var postData = {
orderSerial :id
};
var header = {
token: wx.getStorageSync('token'),
"Content-Type": "application/x-www-form-urlencoded"
};
re.request(Api.getOrderDetailSer(), postData, header).then((res) => {
console.log(res.data.data)
that.getactiveInfo(res.data.data)
})
},
getactiveInfo:function(val){
var that = this;
const imgUrl = wx.getStorageSync('imgUrl')
var header = {
token:wx.getStorageSync('token'),
"Content-Type": "application/x-www-form-urlencoded"
};
var pastData = {
activityId:val.activityId
}
re.request(Api.getactiveInfo(), pastData, header).then((res) => {
let datas = res.data.data;
if(datas.activityLogo){
datas.activityLogo = imgUrl + datas.activityLogo
}
datas.orderSerial = val.orderSerial;
datas.orderStatus = val.orderStatus;
datas.cost = val.cost;
datas.createdTime = val.createdTime;
datas.orderId = val.orderId;
datas.startRegisterTime = that.timeFormat(datas.startRegisterTime, 'yyyy-MM-dd HH:mm');
datas.endRegisterTime = that.timeFormat(datas.endRegisterTime, 'yyyy-MM-dd HH:mm');
datas.startTime = that.timeFormat(datas.startTime, 'yyyy-MM-dd HH:mm');
datas.endTime = that.timeFormat(datas.endTime, 'yyyy-MM-dd HH:mm');
that.setData({
val:datas
})
that.getClubInfo(datas.clubId);
})
},
timeFormat(d, format = 'yyyy-MM-dd HH:mm:ss'){
let fnumber = v => v > 10 ? `${v}` : ('0' + v);
let date = new Date(d);
let result = format.replace('yyyy', date.getFullYear());
result = result.replace('MM', fnumber(date.getMonth() + 1));
result = result.replace('dd', fnumber(date.getDay()));
result = result.replace('HH', fnumber(date.getHours()));
result = result.replace('mm', fnumber(date.getMinutes()));
result = result.replace('ss', fnumber(date.getSeconds()));
return result;
},
getClubInfo:function(id){
var that = this;
const imgUrl = wx.getStorageSync('imgUrl');
var postData = {
clubId:id
};
var header = {
token:wx.getStorageSync('token'),
"Content-Type": "application/x-www-form-urlencoded"
};
re.request(Api.getclubInfo(), postData, header).then((res) => {
let datas = res.data.data;
console.log(datas);
datas.clubLogo = imgUrl + datas.clubLogo;
that.setData({
company:datas
})
})
},
toPay:function(){
var that = this;
var postData = {
id:that.data.id
};
let datainfo = requestSign.requestSign(postData.id);
var header = {
sign:datainfo,
random:postData.id,
token:wx.getStorageSync('token')
};
re.request(Api.toPay(), postData, header).then((res) => {
wx.requestPayment(
{
'timeStamp': res.data.data.timeStamp,
'nonceStr': res.data.data.nonceStr,
'package': res.data.data.package,
'signType': 'MD5',
'paySign': res.data.data.paySign,
'success':function(res){
wx.navigateTo({
url: '../../../center/payOk/index',
})
},
'fail':function(res){
wx.showToast({
title: res.data.msg,
icon: 'none',
duration: 1000
})
},
})
})
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
}
})