导游中台-游客端
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.

854 lines
18 KiB

11 months ago
<template>
<view class="bg">
<view class="top-box">
<view>{{info.status_text}}</view>
<!-- 待支付时会显示自动取消时间 -->
<view v-if="info.status=='WAIT_PAYMENT'" class="close-time">订单将在{{info.close_time.slice(-8)}}自动取消</view>
<!-- 待退款 -->
<view v-if="info.status=='WAIT_REFUND'" class="close-time">系统将在1-7个工作日内原路退回您的原支付账户</view>
<!-- 退款完成 -->
<view v-if="info.status=='REFUND_SUCCESS'" class="close-time">您的退款金额已退还到您的原支付账户</view>
</view>
<!-- 景点美食二维码 -->
<view v-if="isQrcode" style="margin-top: -66rpx;">
<view class="qrcode-remain">还剩<span>{{remainNum}}</span>张未核销</view>
<swiper class="qrcode-box" :circular="false" previous-margin="120rpx" next-margin="120rpx" :duration="800"
:current="current" @change="swiperChange">
<swiper-item v-for="(item, index) in info.order_child" :key="index" class="flex-center">
<view class="qrcode-item flex-column">
<view class="qrcode-title">{{item.specifications_name}}</view>
<image :src="item.qrcodeimg" style="width: 300rpx;height: 300rpx;" mode="aspectFill"></image>
<view class="qrcode-subtitle">核销码:{{item.third_order_id||item.child_id}}</view>
<view class="complete-text flex-center"
v-if="['WAIT_REFUND','REFUND_SUCCESS','WAIT_COMMENT','COMPLETE'].includes(item.status)">
<view class="flex-center" v-if="item.status == 'WAIT_COMMENT'">
已核销
</view>
<view class="flex-center" v-else>
已失效
</view>
</view>
</view>
</swiper-item>
</swiper>
<!-- 指示点 -->
<view class="swiper-point flex-center">
<view v-for="(item,index) in info.order_child" :key="index"
:class="[{'swiper-points': index == current}]"></view>
</view>
<!-- 提示语 -->
<view class="swiper-prompt">左右滑动核销其他二维码</view>
</view>
<view :style="{margin: isQrcode ? '0' : '-66rpx auto 0'}" v-if="info.order_child">
<!-- 景点订单 -->
<view>
<!-- 景点详情 -->
<view class="scenic-detail">
<view>
11 months ago
<view class="scenic-title" @click="gotoDetailByTypeId(info.order_child[0].goods_id, info.order_child[0].type_id)">
11 months ago
{{info.order_child[0].goods_title}}
<image src="https://static.ticket.sz-trip.com/yandu/images/order/rightIcon.png"></image>
</view>
<view class="scenic-subtitle">
出行时间<span>{{info.order_child[0].use_date}}</span>
</view>
</view>
<!-- 子订单规格 -->
<view>
<view v-for="(item,index) in info.order_child" :key="index"
class="specifications-item flex-between">
<view>{{item.specifications_name}}</view>
<view class="flex-between" style="width: 150rpx;">
<view>{{item.money / 100}}</view>
<view>x{{item.num}}</view>
</view>
</view>
</view>
<!-- 商品价格 -->
<view class="public-price">
<view class="flex-between">
商品总额<span>{{info.money / 100}}</span>
</view>
<view class="flex-between" v-if="info.discounts">
优惠券<span>-{{info.discounts / 100}}</span>
</view>
<view class="flex-between">
实付金额<span style="font-size: 35rpx;color: #EE3E3B;">{{info.pay_money / 100}}</span>
</view>
</view>
</view>
<!-- 出行人 -->
11 months ago
<view class="novice-box" v-if="info.order_child[0].contact_name">
11 months ago
出行人
<view v-for="(item,index) in info.order_child" :key="index" class="novice-item">
<view class="novice-title">{{item.specifications_name}}</view>
<view class="novice-subtitle" v-if="item.contact_name">
<span>姓名</span>{{item.contact_name}}
</view>
<view class="novice-subtitle" v-if="item.id_number">
<span>身份证</span>{{item.id_number}}
</view>
</view>
11 months ago
<view class="novice-subtitle novice-item" style="padding-top: 26rpx;" v-if="info.reserve_phone">
<span>联系电话</span>{{info.reserve_phone}}
</view>
11 months ago
</view>
</view>
</view>
<!-- 订单信息 -->
<view class="order-info">
订单信息
<view class="order-subtitle" style="display: flex;align-items: center;">
10 months ago
<span>订单编号</span>{{info.order_id}}
11 months ago
<view class="copy flex-around" @click="clickCopy">
<image src="https://static.ticket.sz-trip.com/yandu/images/order/copy.png" class="copy-img"></image>
复制
</view>
</view>
<view class="order-subtitle">
<span>下单时间</span>{{info.create_time}}
</view>
<view class="order-subtitle" v-if="info.pay_time">
<span>支付时间</span>{{info.pay_time}}
</view>
</view>
<!-- 联系客服 -->
<!-- <view class="kefu-box" @click="$refs.popup.open()">
<image src="https://static.ticket.sz-trip.com/yandu/images/order/kefu.png" mode="" class="kefu-img"></image>
联系客服
</view> -->
<!-- 底部按钮 -->
<footer>
<view class="bottom-price" v-if="info.status == 'WAIT_PAYMENT'">
合计
<span class="price">{{info.pay_money/100}}</span>
</view>
<view class="btn-box">
<view class="btn" v-if="info.status == 'PAYMENT_SUCCESSFULLY'" @click="refund(info.order_id)">
取消订单
</view>
<view class="btn" v-if="info.status == 'WAIT_PAYMENT'" @click="closeOrder(info.order_id)">
关闭订单
</view>
<view class="btn"
v-if="['WAIT_REFUND','REFUND_SUCCESS','WAIT_COMMENT','COMPLETE','CLOSED'].includes(info.status)"
11 months ago
@click="gotoDetailByTypeId(info.order_child[0].goods_id, info.order_child[0].type_id)">
11 months ago
再次购买
</view>
<view class="btn pay-btn" v-if="info.status == 'WAIT_PAYMENT'" @click="setOrderId(info.order_id)">
立即支付
</view>
</view>
</footer>
<!-- 客服弹框 -->
<uni-popup ref="popup" type="center">
<view class="consult-popup">
即将拨打客服电话
<view class="consult-subtitle">服务时间周一至周五<br>8:30-11:3014:30-18:00</view>
<view class="consult-btns">
<view @click="$refs.popup.close()">取消</view>
<view @click="clickPhone('0515-69186109')">确定</view>
</view>
</view>
</uni-popup>
</view>
</template>
<script>
11 months ago
import QRCode from 'qrcode';
11 months ago
export default {
data() {
return {
order_id: '',
info: {},
foodInfo: {},
current: 0,
isQrcode: false,
remainNum: 0,
postInfo: []
}
},
onLoad(option) {
this.order_id = option.id
this.getDetail()
},
onShow() {
},
methods: {
// 获取订单详情
getDetail() {
this.Post({
order_id: this.order_id,
lon: uni.getStorageSync('location').lon || '110.43785794300781',
lat: uni.getStorageSync('location').lat || '36.95286642085422'
}, '/api/order/orderDetail').then(res => {
this.info = res.data;
11 months ago
// 二维码
11 months ago
if (['PAYMENT_SUCCESSFULLY', 'WAIT_REFUND', 'REFUND_SUCCESS', 'WAIT_COMMENT', 'COMPLETED']
.includes(this.info.status)) {
this.isQrcode = true
for (let i = 0; i < this.info.order_child.length; i++) {
// 有third_order_id 优先用third_order_id
this.getCodeImg(this.info.order_child[i].third_order_id||this.info.order_child[i].child_id, i);
// 未核销数量
if (this.info.order_child[i].status == 'SUCCESS') this.remainNum += 1
}
} else if (!['WAIT_PAYMENT', 'CLOSED'].includes(this.info.status)) {
for (let i = 0; i < this.info.order_child.length; i++) {
if (this.info.order_child[i].is_display_order_qrcode) {
this.isQrcode = true
this.getCodeImg(this.info.order_child[i].third_order_id||this.info.order_child[i].child_id, i);
// 未核销数量
if (this.info.order_child[i].status == 'SUCCESS') this.remainNum += 1
}
}
}
})
},
// 生成二维码
getCodeImg(code, index) {
11 months ago
QRCode.toDataURL(code)
.then(url => {
this.$set(this.info.order_child[index], 'qrcodeimg', url);
this.$forceUpdate();
})
.catch(err => {
console.error(err);
11 months ago
});
},
//轮播图左右滑动
swiperChange(e) {
let {
current,
source
} = e.detail;
//在自动或手动的时候才赋予current值
if (source === 'autoplay' || source === 'touch') {
this.current = current;
}
},
// 复制订单号
clickCopy() {
uni.setClipboardData({
data: this.info.order_id, //要被复制的内容
success: () => {
//复制成功的回调函数
uni.showToast({
title: '复制成功',
icon: 'none'
});
}
});
},
// 申请退款
refund(id) {
let that = this;
uni.showModal({
title: '提示',
content: '是否申请退款?',
success: successRes => {
if (successRes.confirm) {
that.Post({
order_id: id
},
'/api/order/applyRefund'
).then(res => {
if (res.code == 1) {
uni.showToast({
title: '申请成功',
icon: 'success'
});
this.getDetail()
uni.$emit("updateDataByConnect", {
msgType: 'updateOrderTrades',
data: {}
})
}
});
}
}
});
},
// 关闭订单
closeOrder(id, index) {
let that = this;
uni.showModal({
title: '提示',
content: '确认关闭订单?',
success: successRes => {
if (successRes.confirm) {
that.Post({
order_id: id
}, '/api/order/closeOrder').then(res => {
if (res.code == 1) {
uni.showToast({
title: '关闭成功',
icon: 'success'
});
that.getDetail();
uni.$emit("updateDataByConnect", {
msgType: 'updateOrderTrades',
data: {}
})
}
});
}
}
});
},
// 立即支付
setOrderId(id) {
let that = this;
that.orderId = id;
that.Post({
order_id: id,
type: "miniprogram",
platform: 'miniprogram'
}, '/api/pay/unify').then(res => {
if (res.code == 1) {
uni.requestPayment({
nonceStr: res.data.nonceStr,
package: res.data.package,
paySign: res.data.paySign,
signType: res.data.signType,
timeStamp: res.data.timeStamp,
success: () => {
that.getDetail();
uni.$emit("updateDataByConnect", {
msgType: 'updateOrderTrades',
data: {}
})
}
});
}
});
},
}
}
</script>
<style lang="scss" scoped>
.bg {
width: 750rpx;
overflow-x: hidden;
min-height: 100vh;
background-color: #F7F7F7;
padding-bottom: 200rpx;
}
.top-box {
width: 750rpx;
11 months ago
height: 240rpx;
background: url('https://static.ticket.sz-trip.com/tourist/user/topBg.png') no-repeat;
background-size: 100% 100%;
padding: 50rpx 0 0 50rpx;
11 months ago
font-weight: bold;
font-size: 43rpx;
color: #000000;
.close-time {
font-weight: 400;
font-size: 27rpx;
margin-top: 20rpx;
}
}
// 景点、美食 二维码
.qrcode-remain {
font-weight: bold;
font-size: 29rpx;
color: #000000;
text-align: center;
span {
width: 60rpx;
text-align: center;
color: rgba(238, 62, 59, 1);
display: inline-block;
}
}
.qrcode-box {
height: 456rpx;
display: flex;
align-items: center;
margin-top: 32rpx;
.qrcode-item {
width: 467rpx !important;
height: 456rpx !important;
background: #FFFFFF;
box-shadow: 0rpx 0rpx 33rpx 0rpx rgba(102, 102, 102, 0.2);
border-radius: 20rpx;
padding: 25rpx 0;
justify-content: space-between;
align-items: center;
position: relative;
image {
width: 300rpx;
height: 300rpx;
}
.qrcode-title {
font-weight: bold;
font-size: 32rpx;
color: #000000;
}
.qrcode-subtitle {
font-weight: 500;
font-size: 27rpx;
color: #888888;
}
.complete-text {
position: absolute;
width: 300rpx;
height: 300rpx;
left: 0;
top: 0;
right: 0;
bottom: 0;
margin: auto;
background: rgba(0, 0, 0, .5);
view {
width: 200rpx;
height: 200rpx;
background: #FFFFFF;
border-radius: 100rpx;
font-weight: bold;
font-size: 36rpx;
color: #000000;
}
}
}
}
.swiper-point {
height: 63rpx;
view {
width: 11rpx;
height: 11rpx;
background: #CCCCCC;
border-radius: 50%;
}
view:not(:first-child) {
margin-left: 13rpx;
}
.swiper-points {
background: #71B580;
}
}
.swiper-prompt {
font-weight: 500;
font-size: 29rpx;
color: #EE3E3B;
text-align: center;
margin-bottom: 45rpx;
}
// 景点订单详情
.scenic-detail {
width: 697rpx;
height: auto;
background: #FFFFFF;
border-radius: 20rpx;
padding: 26rpx;
margin: auto;
&>view:nth-child(2) {
margin: 30rpx 0;
11 months ago
border-top: 1rpx solid rgba(216, 216, 216, .5);
11 months ago
}
.scenic-title {
font-weight: bold;
font-size: 36rpx;
color: #000000;
image {
width: 17.33rpx;
height: 29.33rpx;
margin-left: 20rpx;
vertical-align: middle;
}
}
.scenic-subtitle {
font-weight: 500;
font-size: 27rpx;
color: #666666;
margin-top: 20rpx;
span {
color: #000;
}
}
.specifications-item {
font-weight: 500;
font-size: 27rpx;
color: #000000;
margin: 25rpx 0;
}
}
.novice-box {
width: 697rpx;
height: auto;
background: #FFFFFF;
border-radius: 20rpx;
padding: 26rpx;
font-weight: bold;
font-size: 36rpx;
color: #010101;
margin: 20rpx auto;
.novice-item {
view {
margin: 20rpx 0;
}
.novice-title {
font-weight: 800;
font-size: 27rpx;
color: #333333;
}
}
11 months ago
.novice-subtitle {
11 months ago
font-weight: 500;
font-size: 27rpx;
color: #000000;
11 months ago
11 months ago
span {
11 months ago
display: inline-block;
width: 130rpx;
11 months ago
color: #666666;
}
}
11 months ago
.novice-item:nth-child(n+2) {
11 months ago
border-top: 1rpx solid #D8D8D8;
}
}
// 商品价格
.public-price {
11 months ago
margin-top: 50rpx;
11 months ago
view {
font-weight: 500;
font-size: 27rpx;
color: #666666;
margin-top: 25rpx;
span {
font-weight: bold;
font-size: 27rpx;
color: #111111;
}
}
}
// 订单信息
.order-info {
width: 697rpx;
height: auto;
background: #FFFFFF;
border-radius: 20rpx;
margin: 20rpx auto;
padding: 33rpx 26rpx;
font-weight: bold;
font-size: 36rpx;
color: #000000;
.order-subtitle {
font-weight: 500;
font-size: 27rpx;
color: #000;
margin: 30rpx 0;
span {
display: inline-block;
width: 130rpx;
color: #666666;
white-space: nowrap;
}
}
.copy {
width: 93rpx;
height: 37rpx;
border-radius: 11rpx;
11 months ago
border: 1rpx solid #515150;
11 months ago
font-weight: 500;
font-size: 22rpx;
11 months ago
color: #515150;
11 months ago
margin-left: 30rpx;
.copy-img {
width: 22rpx;
height: 23.33rpx;
11 months ago
filter: brightness(0)
11 months ago
}
}
}
// 客服
.kefu-box {
width: 697rpx;
height: 96rpx;
background: #FFFFFF;
border-radius: 20rpx;
margin: 20rpx auto;
display: flex;
align-items: center;
font-weight: 500;
font-size: 31rpx;
color: #000000;
padding-left: 27rpx;
.kefu-img {
width: 44rpx;
height: 44rpx;
margin-right: 14rpx;
}
}
// 底部按钮
footer {
width: 750rpx;
height: 167rpx;
position: fixed;
bottom: 0;
display: flex;
align-items: center;
background-color: #fff;
border-top: 10rpx solid #F7F7F7;
padding: 0 26rpx;
11 months ago
box-sizing: border-box;
11 months ago
.bottom-price {
font-weight: 500;
font-size: 28rpx;
color: #000000;
span {
font-weight: bold;
font-size: 48rpx;
color: #EE3E3B;
}
span::before {
content: '¥';
font-size: 27rpx;
}
}
.btn-box {
margin-left: auto;
display: flex;
.btn {
11 months ago
width: 200rpx;
height: 73rpx;
line-height: 73rpx;
border-radius: 11rpx;
border: 1rpx solid #D8D8D8;
11 months ago
text-align: center;
margin-right: 14rpx;
font-weight: 500;
11 months ago
font-size: 32rpx;
11 months ago
color: #000000;
}
.btn:last-of-type {
margin-right: 0;
}
.pay-btn {
11 months ago
background: #DC2525;
color: #fff;
11 months ago
border: none;
}
}
}
// 快递查询
.mask {
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.6);
z-index: 1000;
display: flex;
align-items: flex-end;
justify-content: center;
}
.mask-bg {
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
.mask-content {
width: 100%;
padding: 28rpx 0;
border-radius: 20rpx 20rpx 0 0;
background: white;
height: 70%;
position: relative;
overflow-y: auto;
}
.mask-content .icon-close {
position: absolute;
right: 20rpx;
top: 20rpx;
}
.mask-content .close-btn {
background-image: url("https://static.ticket.sz-trip.com/taizhou/images/close.png");
width: 80rpx;
height: 80rpx;
position: absolute;
bottom: -100rpx;
left: 0;
right: 0;
margin: auto;
}
.mask-title {
font-size: 36rpx;
font-weight: bold;
padding-left: 37rpx;
}
.mask-content .iconfont {
position: absolute;
right: 30rpx;
top: 20rpx;
}
.express-all {
margin: 40rpx;
position: relative;
}
.express-item {
display: flex;
justify-content: space-between;
padding-bottom: 60rpx;
position: relative;
z-index: 1;
}
.line {
width: 1rpx;
height: 100%;
background: #CCCCCC;
position: absolute;
left: 13rpx;
}
.express-info {
width: 600rpx;
font-size: 26rpx;
line-height: 40rpx;
color: #999;
}
.express-info.active {
color: #000;
}
.express-time {
font-size: 22rpx;
color: #666;
margin-top: 10rpx;
}
.express-item-icon {
width: 27rpx;
height: 27rpx;
background: #CCCCCC;
border-radius: 50%;
position: relative;
}
.express-item-icons {
background: #71B580;
}
.consult-popup {
width: 487rpx;
height: 367rpx;
background: #F0F0F0;
border-radius: 20rpx;
padding: 65rpx 0 23rpx;
font-weight: bold;
font-size: 32rpx;
color: #000000;
text-align: center;
.consult-subtitle {
font-weight: 500;
font-size: 27rpx;
color: #333333;
margin-top: 43rpx;
}
.consult-btns {
display: flex;
margin-top: 75rpx;
view {
width: 50%;
font-weight: bold;
font-size: 32rpx;
color: #71B580;
line-height: 54rpx;
}
view:first-child {
border-right: 1rpx solid #D8D8D8;
color: #000000;
}
}
}
</style>