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.
286 lines
7.3 KiB
286 lines
7.3 KiB
// pages/user/order/sceneOrderInfo/index.js
|
|
import commonApi from "../../../../utils/https/common"
|
|
import QRCode from '../../../../utils/weapp-qrcode.js'
|
|
let app = getApp()
|
|
Page({
|
|
|
|
/**
|
|
* 页面的初始数据
|
|
*/
|
|
data: {
|
|
info:null,
|
|
orderState:app.globalData.orderState,
|
|
productState:app.globalData.productState,
|
|
pay_methods:app.globalData.pay_methods,
|
|
product_model:null,
|
|
isRefund:false,
|
|
feeInfoFlag:false,
|
|
codeIndex:0,
|
|
codeImgs:[],
|
|
id:null,
|
|
minute:"",
|
|
second:"",
|
|
ids:[],
|
|
is_authentication:1, // 是否实名0否1是
|
|
phone:'',// 非实名时的电话
|
|
},
|
|
|
|
/**
|
|
* 生命周期函数--监听页面加载
|
|
*/
|
|
onLoad: function (options) {
|
|
this.setData({
|
|
id:options.id
|
|
})
|
|
|
|
},
|
|
getCodeImg:function(){
|
|
let that = this,sys =wx.getSystemInfoSync(),radio = sys.screenWidth / 750,qrcode=this.data.info.order_product_list[0].qrcode,codeImgs=[];
|
|
qrcode.map((item,index)=>{
|
|
if(item.use_url){
|
|
codeImgs.push(item.use_url);
|
|
if(codeImgs.length==qrcode.length){
|
|
that.setData({
|
|
codeImgs:codeImgs
|
|
})
|
|
}
|
|
}
|
|
else {
|
|
new QRCode('damocode'+index,{
|
|
text: item.use_code,
|
|
width: 300 * radio,
|
|
height: 300 * radio,
|
|
padding: 12, // 生成二维码四周自动留边宽度,不传入默认为0
|
|
correctLevel: QRCode.CorrectLevel.L, // 二维码可辨识度
|
|
callback: (res) => {
|
|
codeImgs.push(res.path);
|
|
if(codeImgs.length==qrcode.length){
|
|
that.setData({
|
|
codeImgs:codeImgs
|
|
})
|
|
}
|
|
}
|
|
})
|
|
}
|
|
})
|
|
},
|
|
prevCodeImg:function(){
|
|
let qrcode=this.data.info.order_product_list[0].qrcode,codeIndex = this.data.codeIndex;
|
|
if(codeIndex==0){
|
|
this.setData({
|
|
codeIndex:qrcode.length-1
|
|
})
|
|
}
|
|
else {
|
|
this.setData({
|
|
codeIndex:codeIndex-1
|
|
})
|
|
}
|
|
},
|
|
nextCodeImg:function(){
|
|
let qrcode=this.data.info.order_product_list[0].qrcode,codeIndex = this.data.codeIndex;
|
|
codeIndex = codeIndex + 1;
|
|
if(codeIndex==qrcode.length){
|
|
codeIndex = 0;
|
|
}
|
|
this.setData({
|
|
codeIndex:codeIndex
|
|
})
|
|
},
|
|
showFeeInfo:function(){
|
|
this.setData({
|
|
feeInfoFlag:!this.data.feeInfoFlag
|
|
})
|
|
},
|
|
close:function(){
|
|
let _this = this,info = _this.data.info;
|
|
wx.showModal({
|
|
title:'提示',
|
|
content:"确定取消吗",
|
|
success:function(res){
|
|
if(res.confirm){
|
|
commonApi.user_post("order/close",{
|
|
order_id:info.order_id
|
|
}).then(res=>{
|
|
if(res.code==1){
|
|
wx.showToast({
|
|
title: '取消成功',
|
|
icon:'success'
|
|
})
|
|
info.state = "CLOSED";
|
|
info.order_product_list.map(item=>{
|
|
item.state='CLOSED'
|
|
})
|
|
_this.setData({
|
|
info:info
|
|
})
|
|
}
|
|
})
|
|
}
|
|
}
|
|
})
|
|
},
|
|
refund:function(){
|
|
let _this = this,info = _this.data.info;
|
|
wx.showModal({
|
|
title:'提示',
|
|
content:"确定取消吗",
|
|
success:function(res){
|
|
if(res.confirm){
|
|
commonApi.user_post("order/refund",{
|
|
order_id:info.order_id
|
|
}).then(res=>{
|
|
if(res.code==1){
|
|
wx.showToast({
|
|
title: '取消成功',
|
|
icon:'success'
|
|
})
|
|
info.state = "WAIT_REFUND";
|
|
info.order_product_list.map(item=>{
|
|
item.state='WAIT_REFUND'
|
|
})
|
|
_this.setData({
|
|
info:info
|
|
})
|
|
}
|
|
})
|
|
}
|
|
}
|
|
})
|
|
},
|
|
// 查看苏康码
|
|
gotoSku:function(){
|
|
commonApi.user_post("pbservice/Ztfw/sukangCode").then(res=>{
|
|
console.log(res)
|
|
app.globalData.weburl = res.data.url;
|
|
wx.navigateTo({
|
|
url: '/pages/pbService/web/index'
|
|
})
|
|
return;
|
|
})
|
|
},
|
|
|
|
/**
|
|
* 生命周期函数--监听页面初次渲染完成
|
|
*/
|
|
onReady: function () {
|
|
|
|
},
|
|
|
|
/**
|
|
* 生命周期函数--监听页面显示
|
|
*/
|
|
onShow: function () {
|
|
commonApi.user_post("order/query",{
|
|
order_id:this.data.id
|
|
}).then(res=>{
|
|
if(res.data.create_time && res.data.auto_close_time && res.data.state=='UNPAID'){
|
|
let time = (new Date(res.data.create_time.replace(/-/g,'/')).getTime() + Number(res.data.auto_close_time) * 1000);
|
|
this.daojishi(time);
|
|
}
|
|
let proId = []
|
|
res.data.order_product_list.forEach(item => {
|
|
proId.push(item.product_id)
|
|
})
|
|
let state = "";
|
|
res.data.order_product_list.map(order=>{
|
|
order.qrcode.map(item=>{
|
|
item.stateText = app.globalData.codeState[item.state];
|
|
})
|
|
order.contacts_info = order.contacts_info?JSON.parse(order.contacts_info):[];
|
|
state = state + order.state;
|
|
})
|
|
if(state.indexOf('PAID')>-1 && res.data.state=='PAID'){
|
|
res.data.orderStateText = "待出票";
|
|
}
|
|
else if(state.indexOf('WAIT_USE')>-1 && res.data.state=='PAID'){
|
|
res.data.orderStateText = "已出票";
|
|
}
|
|
else if(state.indexOf('TICKET_ERROR')>-1){
|
|
res.data.orderStateText = "出票失败";
|
|
}
|
|
else if(res.data.state=='WAIT_REFUND'){
|
|
res.data.orderStateText = "退票中";
|
|
}
|
|
else if(res.data.state=='REFUND'){
|
|
res.data.orderStateText = "已退票";
|
|
}
|
|
this.setData({
|
|
isRefund:state.indexOf("REFUND")!=-1,
|
|
info:res.data,
|
|
product_model:res.data.order_product_list[0].product_model,
|
|
ids: proId.join(","),
|
|
is_authentication:res.data.order_product_list[0].sku_model.is_authentication,
|
|
phone:res.data.order_product_list[0].phone
|
|
})
|
|
console.log(res.data.order_product_list[0]);
|
|
this.getCodeImg()
|
|
// 获取行程规划
|
|
let that = this;
|
|
wx.getLocation({
|
|
type: 'gcj02',
|
|
success: function (r) {
|
|
let ajaxes=[];
|
|
res.data.order_product_list.map(item=>{
|
|
ajaxes.push(commonApi.user_post("order/tripplan",{
|
|
point_type:"gd",
|
|
child_order_id:item.child_order_id,
|
|
lon:r.longitude,
|
|
lat:r.latitude
|
|
}))
|
|
})
|
|
Promise.all(ajaxes).then(r=>{
|
|
console.log(r)
|
|
let orderInfo = that.data.info;
|
|
r.map((item,index)=>{
|
|
if(item && item.data && item.data.url){
|
|
orderInfo.order_product_list[index].btnUrl = item.data.url;
|
|
}
|
|
})
|
|
that.setData({
|
|
info:orderInfo
|
|
})
|
|
})
|
|
}
|
|
})
|
|
|
|
})
|
|
},
|
|
// 行程规划
|
|
leadRoad:function(e){
|
|
let url = e.currentTarget.dataset.url;
|
|
app.globalData.weburl = url;
|
|
wx.navigateTo({
|
|
url: '/pages/pbService/web/index'
|
|
})
|
|
},
|
|
|
|
/**
|
|
* 生命周期函数--监听页面隐藏
|
|
*/
|
|
onHide: function () {
|
|
clearTimeout(timer);
|
|
timer = null
|
|
},
|
|
|
|
/**
|
|
* 生命周期函数--监听页面卸载
|
|
*/
|
|
onUnload: function () {
|
|
|
|
},
|
|
|
|
/**
|
|
* 页面相关事件处理函数--监听用户下拉动作
|
|
*/
|
|
onPullDownRefresh: function () {
|
|
|
|
},
|
|
|
|
/**
|
|
* 页面上拉触底事件的处理函数
|
|
*/
|
|
onReachBottom: function () {
|
|
|
|
}
|
|
})
|