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

1240 lines
24 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>
<canvas :id="'qrcodeT'+index" :canvas-id="'qrcodeT'+index"
style="width:150px;height:150px;z-index: -20;bottom: -500px;position: absolute;"></canvas>
<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>
<!-- 子订单里info.order_child[0].goods_genre景点ticket酒店hotel美食food邮寄自提pgoods -->
<view :style="{margin: isQrcode ? '0' : '-66rpx auto 0'}" v-if="info.order_child">
<!-- 景点订单 -->
<view>
<!-- 景点详情 -->
<view class="scenic-detail">
<view>
<view class="scenic-title" @click="gotoDetail">
{{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>
<!-- 出行人 -->
<view class="novice-box" v-if="order_child[0].contact_name">
出行人
<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>
</view>
</view>
</view>
<!-- 订单信息 -->
<view class="order-info">
订单信息
<view class="order-subtitle" style="display: flex;align-items: center;">
<span>订单账号</span>{{info.order_id}}
<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)"
@click="gotoDetailByTypeId(info.order_id[0].goods_id, info.order_id[0].type_id)">
再次购买
</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>
import QRCode from '@/static/js/weapp-qrcode.js'
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;
// 景点、美食二维码
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) {
new QRCode('qrcodeT' + index, {
text: code,
width: 150,
height: 150,
padding: 2,
colorDark: 'rgb(0,0,0)',
colorLight: 'rgb(255,255,255)',
correctLevel: QRCode.CorrectLevel.M, // 二维码可辨识度
callback: res => {
this.$set(this.info.order_child[index], 'qrcodeimg', res.path);
this.$forceUpdate();
}
});
},
//轮播图左右滑动
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;
}
.title-box {
position: absolute;
left: 5rpx;
top: 101rpx;
font-size: 40rpx;
padding: 0 26.67rpx;
z-index: 2;
display: flex;
align-items: center;
width: 100%;
view {
font-weight: 400;
font-size: 36rpx;
color: #000000;
margin-left: 245rpx;
}
}
.top-box {
width: 750rpx;
height: 414rpx;
background: linear-gradient(180deg, #DDF2E2, #DDF2E2, #DDF2E2, #DDF2E2, #DDF2E2, #F7F7F7);
padding: 200rpx 0 0 50rpx;
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;
border-top: 1rpx solid #D8D8D8;
border-bottom: 1rpx solid #D8D8D8;
}
.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;
}
.novice-subtitle {
font-weight: 500;
font-size: 27rpx;
color: #000000;
span {
display: inline-block;
width: 130rpx;
color: #666666;
}
}
}
.novice-item:nth-child(n+2) {
border-top: 1rpx solid #D8D8D8;
}
}
// 邮寄订单详情
.shipping-address {
width: 697rpx;
height: 235rpx;
background: #FFFFFF;
border-radius: 20rpx;
padding: 26rpx;
font-weight: bold;
font-size: 36rpx;
color: #000000;
margin: auto;
&>view {
margin-top: 25rpx;
font-weight: 500;
}
&>view:first-child {
font-size: 31rpx;
color: #222222;
}
&>view:last-child {
font-size: 31rpx;
color: #222222;
font-size: 27rpx;
color: #666666;
}
}
.pgoods-detail {
width: 697rpx;
height: auto;
background: #FFFFFF;
border-radius: 20rpx;
padding: 26rpx;
margin: 20rpx auto;
font-weight: bold;
font-size: 32rpx;
color: #000000;
.pgoods-product {
display: flex;
margin-top: 24rpx;
padding-bottom: 33rpx;
border-bottom: 1rpx solid #D8D8D8;
.product-img {
width: 140rpx;
height: 140rpx;
border-radius: 13rpx;
}
.product-content {
width: 485rpx;
height: 140rpx;
margin-left: 18rpx;
padding: 5rpx 0 12rpx;
justify-content: space-between;
.product-title {
font-weight: bold;
font-size: 27rpx;
color: #000000;
}
.product-subtitle {
font-weight: 500;
font-size: 24rpx;
color: #666666;
.product-tags {
display: flex;
&>view:not(:last-child)::after {
content: '丨';
width: 1rpx;
height: 26rpx;
color: #666666;
}
}
}
}
}
}
// 自提点信息
.pickup-box {
width: 697rpx;
height: auto;
background: #FFFFFF;
border-radius: 20rpx;
margin: 20rpx auto;
padding: 33rpx 26rpx;
font-weight: bold;
font-size: 36rpx;
color: #000000;
&>view {
margin-top: 40rpx;
}
.picker-img {
width: 33.33rpx;
height: 33.33rpx;
}
.pickup-user {
display: flex;
align-items: center;
font-weight: bold;
font-size: 31rpx;
color: #000000;
&>view:first-of-type {
margin: 0 63rpx 0 19rpx;
}
}
.pickup-address {
display: flex;
.pickup-addressImg {
width: 33.33rpx;
height: 33.33rpx;
}
&>view:first-of-type {
width: 305rpx;
margin-left: 18rpx;
}
.picker-shopName {
font-weight: bold;
font-size: 31rpx;
color: #222222;
}
.picker-shopAddress {
font-weight: 500;
font-size: 24rpx;
color: #666666;
margin-top: 15rpx;
}
.pickup-icon {
margin-left: auto;
font-weight: 500;
font-size: 24rpx;
color: #666666;
&>view {
text-align: center;
}
&>view:last-child {
margin-left: 40rpx;
}
image {
width: 56rpx;
height: 56rpx;
display: block;
margin-bottom: 5rpx;
}
}
}
}
// 美食
.food-name {
font-weight: bold;
font-size: 31rpx;
color: #000000;
margin-bottom: 40rpx;
}
.shop-detail {
width: 697rpx;
height: auto;
background: #FFFFFF;
border-radius: 20rpx;
margin: 20rpx auto 0;
padding: 33rpx 26rpx;
font-weight: bold;
font-size: 36rpx;
color: #000000;
.shop-name {
font-weight: bold;
font-size: 30rpx;
color: #000000;
margin-top: 30rpx;
}
.shop-info {
.shop-time {
width: 28rpx;
height: 28rpx;
margin: 5rpx 8rpx 0 0;
}
.shop-title {
font-weight: 500;
font-size: 26rpx;
color: #000000;
}
.shop-subtitle {
font-weight: 500;
font-size: 24rpx;
color: #666666;
margin-top: 23rpx;
}
.shop-icon {
margin-left: auto;
image {
width: 56rpx;
height: 56rpx;
}
image:first-child {
margin-right: 40rpx;
}
}
}
}
// 酒店
.hotel-detail {
width: 697rpx;
height: auto;
background: #FFFFFF;
border-radius: 20rpx;
padding: 33rpx 26rpx;
font-weight: bold;
font-size: 36rpx;
color: #000000;
margin: auto;
.hotel-title {
font-size: 31rpx;
color: #222222;
margin-top: 30rpx;
}
.hotel-date {
font-weight: bold;
font-size: 31rpx;
color: #000000;
display: flex;
margin-top: 30rpx;
span {
font-weight: 500;
font-size: 24rpx;
color: #666666;
margin-left: 20rpx;
}
}
.hotel-days {
width: 113rpx;
line-height: 37rpx;
background: #E8F6EB;
border-radius: 18rpx;
text-align: center;
margin: 0 20rpx;
font-weight: 500;
font-size: 24rpx;
color: #000000;
}
.hotel-address {
width: 533rpx;
height: 107rpx;
background: url('https://static.ticket.sz-trip.com/yandu/images/order/addreeBg.png') no-repeat right;
background-size: auto 100%;
background-color: #E8F6EB;
border-radius: 20rpx;
padding: 22rpx 18rpx;
.address {
width: 398rpx;
font-weight: 500;
font-size: 27rpx;
color: #000000;
}
.address-image {
font-weight: 500;
font-size: 24rpx;
color: #333333;
text-align: center;
image {
width: 30.67rpx;
height: 30.67rpx;
}
}
}
.hotel-phone {
width: 93rpx;
height: 107rpx;
background: #E8F6EB;
border-radius: 20rpx;
font-weight: 500;
font-size: 24rpx;
color: #333333;
flex-direction: column;
image {
width: 30.67rpx;
height: 30.67rpx;
margin-bottom: 8rpx;
}
}
.hotel-skuName {
font-weight: 500;
font-size: 27rpx;
color: #000000;
height: 94rpx;
border-top: 1rpx solid #D8D8D8;
border-bottom: 1rpx solid #D8D8D8;
margin-top: 34rpx;
&>view:first-child {
width: 400rpx;
}
&>view:last-child {
width: 140rpx;
}
}
}
.hotel-information {
width: 697rpx;
height: auto;
background: #FFFFFF;
border-radius: 20rpx;
padding: 26rpx;
margin: 20rpx auto;
font-weight: bold;
font-size: 36rpx;
color: #000000;
view {
font-weight: 500;
font-size: 27rpx;
margin-top: 30rpx;
}
span {
display: inline-block;
width: 140rpx;
color: #666666;
}
}
// 商品价格
.public-price {
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;
border: 1rpx solid #71B580;
font-weight: 500;
font-size: 22rpx;
color: #71B580;
margin-left: 30rpx;
.copy-img {
width: 22rpx;
height: 23.33rpx;
}
}
}
// 客服
.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;
.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 {
width: 213rpx;
line-height: 71rpx;
border-radius: 37rpx;
border: 1rpx solid #999999;
text-align: center;
margin-right: 14rpx;
font-weight: 500;
font-size: 31rpx;
color: #000000;
}
.btn:last-of-type {
margin-right: 0;
}
.pay-btn {
height: 73rpx;
background: linear-gradient(270deg, #FD6F34, #F4A61F);
border: none;
color: #FFFFFF;
}
}
}
// 快递查询
.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>