1151 lines
28 KiB
Vue
Raw Normal View History

2024-02-19 10:44:33 +08:00
<template>
<view :style="viewColor">
<view class='order-details'>
<!-- 给header上与data上加on为退款订单-->
<view v-if="orderInfo.orderList && orderInfo.orderList[0].activity_type != 2">
<view class='header acea-row row-middle'>
<view class='pictrue'>
<image :src="imgUrl+'/static/order_1.gif'"></image>
</view>
<view class='data'>
2024-03-21 17:56:29 +08:00
<view class='state' v-if="orderInfo.pay_type!=10">请在{{orderInfo.cancel_time}}前完成支付!</view>
<view class='state' v-else>请及时上传凭证完成支付</view>
2024-02-19 10:44:33 +08:00
<view>{{orderInfo.add_time_y}}<text class='time'>{{orderInfo.create_time}}</text></view>
</view>
2024-03-18 18:05:09 +08:00
</view>
2024-02-19 10:44:33 +08:00
<view class='nav'>
<view class='navCon acea-row row-between-wrapper'>
<view class="on">待付款</view>
<view>待发货</view>
<view>待收货</view>
<view>待评价</view>
<view>已完成</view>
</view>
<view class='progress acea-row row-between-wrapper'>
<view class='iconfont icon-webicon318 t-color'></view>
<view class='line'></view>
<view class='iconfont icon-yuandianxiao'></view>
<view class='line'></view>
<view class='iconfont icon-yuandianxiao'></view>
<view class='line'></view>
<view class='iconfont icon-yuandianxiao'></view>
<view class='line'></view>
<view class='iconfont icon-yuandianxiao'></view>
</view>
</view>
</view>
<!--预售代付款-->
<view v-else class="presell_bg_header">
2024-03-18 18:05:09 +08:00
<view class='header presell_header'
:style="{ 'background-image': `url(${domain}/static/diy/presell_header${keyColor}.png)`}">
<view class="presell_payment" v-if="orderInfo.orderList"><text
class="iconfont icon-shijian1"></text>{{orderInfo.orderList[0].orderProduct[0].cart_info.productPresell.presell_type==1?'待支付':'待付定金'}}
</view>
2024-02-19 10:44:33 +08:00
<view class='data'>
<view class='state'>请在{{orderInfo.cancel_time}}前完成支付,超时订单将自动取消</view>
</view>
</view>
</view>
<view>
<view class='address' v-if="orderInfo.orderList && orderInfo.orderList[0].order_type != 2">
<view class='name'>{{orderInfo.real_name}}<text class='phone'>{{orderInfo.user_phone}}</text></view>
<view>{{orderInfo.user_address}}</view>
</view>
<view class='line'>
<image :src="`${imgUrl}/static/images/line.jpg`"></image>
</view>
</view>
<!-- 店铺商品列表 -->
<view class="order-wrapper" v-for="(item,index) in orderInfo.orderList" :key="index">
2024-03-18 18:05:09 +08:00
<view class="title" @click="goStore(item)">{{item.merchant.mer_name}}<text
class="iconfont icon-xiangyou"></text>
2024-02-19 10:44:33 +08:00
</view>
<view class="goods-box">
2024-03-18 18:05:09 +08:00
<view v-for="(goods,j) in item.orderProduct" :key="goods.order_product_id"
@click="goProduct(goods)">
2024-02-19 10:44:33 +08:00
<view v-if="item.activity_type === 2">
<view class="item">
<image :src="goods.cart_info.product.image"></image>
<view class="info-box">
2024-03-18 18:05:09 +08:00
<view class="name line1"><text
class="event_name event_bg">预售</text>{{goods.cart_info.product.store_name}}
</view>
2024-02-19 10:44:33 +08:00
<view class="msg">{{goods.cart_info.productAttr.sku}}</view>
2024-03-18 18:05:09 +08:00
<view class="event_ship event_color">发货时间
2024-02-19 10:44:33 +08:00
<!--全款预售-->
2024-03-18 18:05:09 +08:00
<text
v-if="goods.cart_info.productPresell.presell_type === 1">{{ goods.cart_info.productPresell.delivery_type === 1 ? '支付成功后' : '预售结束后' }}{{ goods.cart_info.productPresell.delivery_day }}天内</text>
2024-02-19 10:44:33 +08:00
<!--定金预售-->
2024-03-18 18:05:09 +08:00
<text
v-if="goods.cart_info.productPresell.presell_type === 2">{{ goods.cart_info.productPresell.delivery_type === 1 ? '支付尾款后' : '预售结束后' }}{{ goods.cart_info.productPresell.delivery_day }}天内</text>
2024-02-19 10:44:33 +08:00
</view>
</view>
2024-03-18 18:05:09 +08:00
<view class="num"><text
class="font-color">{{goods.cart_info.productPresellAttr.presell_price}}</text></br>x{{goods.product_num}}
</view>
2024-02-19 10:44:33 +08:00
</view>
<view class="event_progress" v-if="goods.cart_info.productPresell.presell_type !=1">
<view class="progress_list">
<view class="progress_name">阶段一 等待买家付款</view>
2024-03-18 18:05:09 +08:00
<view class="progress_price">商品定金 <text
class="align_right">{{ item.pay_price }}</text></view>
<view class="progress_pay">定金需付款<text
class="align_right gColor">{{ item.pay_price }}</text></view>
2024-02-19 10:44:33 +08:00
</view>
<view class="progress_list">
<view class="progress_name">阶段二 未开始</view>
2024-03-18 18:05:09 +08:00
<view class="progress_price">商品尾款 <text
class="align_right">{{ item.presellOrder.pay_price }}</text></view>
<view class="progress_pay">尾款需付款<text
class="align_right gColor">{{ item.presellOrder.pay_price }}</text></view>
2024-02-19 10:44:33 +08:00
</view>
</view>
</view>
<view v-else class="item">
<image :src="goods.cart_info.product.image"></image>
<view class="info-box">
<view class="name line1">{{goods.cart_info.product.store_name}}</view>
<view class="msg">{{goods.cart_info.productAttr.sku}}</view>
<view class='price acea-row row-middle'>
<text>{{goods.cart_info.productAttr.price}}</text>
2024-03-18 18:05:09 +08:00
<image v-if="goods.cart_info.productAttr.show_svip_price" class="svip-img"
:src="`${domain}/static/images/svip.png`"></image>
2024-02-19 10:44:33 +08:00
</view>
</view>
<view class="num">x{{goods.product_num}}</view>
</view>
</view>
</view>
<block v-if="item.merchant">
<view v-if="item.merchant.services_type == 0" class="goodCall" @click="goGoodCall(item)">
<text class="iconfont icon-kefu"></text><text style="font-size: 28rpx;">联系客服</text>
</view>
<view v-else class="goodCall" @click="call(item)">
<text class="iconfont icon-kefu"></text><text style="font-size: 28rpx;">联系客服</text>
</view>
</block>
</view>
<view class='wrapper'>
<view class='item acea-row row-between'>
<view>订单编号</view>
<view class='conter acea-row row-middle row-right'>{{orderInfo.group_order_sn}}
<!-- #ifndef H5 -->
<text class='copy' @tap='copy'>复制</text>
<!-- #endif -->
<!-- #ifdef H5 -->
<text class='copy copy-data' :data-clipboard-text="orderInfo.group_order_sn">复制</text>
<!-- #endif -->
</view>
</view>
<view class='item acea-row row-between'>
<view>下单时间</view>
<view class='conter'>{{orderInfo.create_time || 0}}</view>
</view>
<view class='item acea-row row-between'>
<view>支付状态</view>
<view class='conter'>未支付</view>
</view>
<view class='item acea-row row-between'>
<view>商品总额</view>
<view class='conter'>{{orderInfo.total_price}}</view>
</view>
</view>
2024-03-21 17:56:29 +08:00
<view v-if="orderInfo.orderList && orderInfo.orderList[0].order_extend " class='wrapper'>
<view v-if="orderInfo.orderList[0].order_extend.bank_info"
2024-03-18 18:05:09 +08:00
class='item acea-row row-between'>
<view v-if="!Array.isArray(item)" class='conter' style="width: 100%;">
<view class="conter-item">
<text class="conter-item-name">公司名称:</text>
2024-03-21 17:56:29 +08:00
<text>{{orderInfo.orderList[0].order_extend.bank_info.company_name}}</text>
2024-03-18 18:05:09 +08:00
</view>
<view class="conter-item">
<text class="conter-item-name">对公账号:</text>
2024-03-21 17:56:29 +08:00
<text>{{orderInfo.orderList[0].order_extend.bank_info.corporate_account}}</text>
2024-03-18 18:05:09 +08:00
</view>
<view class="conter-item">
<text class="conter-item-name">开户行:</text>
2024-03-21 17:56:29 +08:00
<text>{{orderInfo.orderList[0].order_extend.bank_info.corporate_bank}}</text>
2024-03-18 18:05:09 +08:00
</view>
<view class="conter-item">
<text class="conter-item-name">开户行地址:</text>
2024-03-21 17:56:29 +08:00
<text>{{orderInfo.orderList[0].order_extend.bank_info.corporate_bank_address}}</text>
2024-03-18 18:05:09 +08:00
</view>
</view>
2024-02-19 10:44:33 +08:00
<view v-else class='conter virtual_image'>
2024-03-18 18:05:09 +08:00
<image v-for="(pic,i) in item" :key="i" class="picture" :src="pic"
@click="getPhotoClickIdx(item,i)"></image>
2024-02-19 10:44:33 +08:00
</view>
</view>
</view>
<view class='wrapper'>
<view class='item acea-row row-between' v-if="orderInfo.pay_postage > 0">
<view>运费</view>
<view class='conter'>+{{orderInfo.pay_postage}}</view>
</view>
<view class='item acea-row row-between' v-if='orderInfo.coupon_price>0'>
<view>优惠券抵扣</view>
<view class='conter'>-{{orderInfo.coupon_price}}</view>
</view>
<view class='item acea-row row-between' v-if='orderInfo.integral'>
<view>积分抵扣</view>
<view class='conter'>-{{orderInfo.integral_price}}</view>
</view>
2024-03-19 15:45:06 +08:00
2024-03-18 18:05:09 +08:00
<view class='item acea-row row-between' v-if="orderInfo.pay_type != 10">
2024-02-19 10:44:33 +08:00
<view>实付款</view>
<view class='conter'>{{orderInfo.pay_price}}</view>
</view>
2024-03-18 18:05:09 +08:00
<view class='item acea-row row-between' v-else>
<view>付款凭证</view>
2024-03-19 15:45:06 +08:00
<view class='conter'
v-if="orderInfo.orderList[0] && orderInfo.orderList[0].order_extend && orderInfo.orderList[0].order_extend.corporate_voucher">
2024-03-18 18:05:09 +08:00
<image style="width: 400rpx;height:340rpx"
2024-03-19 15:45:06 +08:00
:src="orderInfo.orderList[0].order_extend.corporate_voucher">
2024-03-18 18:05:09 +08:00
</image>
2024-03-21 17:56:29 +08:00
<view class='upload-btn' @click="uploadEnvidence(orderInfo.orderList[0].order_id)" style="display: inline-block;">重新上传</view>
2024-03-18 18:05:09 +08:00
</view>
2024-03-21 17:56:29 +08:00
<!-- <text v-else style="color:#868686;">暂无凭证</text> -->
<view v-else class='upload-btn' @click="uploadEnvidence(orderInfo.orderList[0].order_id)" >上传凭证</view>
2024-03-18 18:05:09 +08:00
</view>
2024-02-19 10:44:33 +08:00
</view>
<view class="content-clip"></view>
<view class='footer acea-row row-right row-middle'>
<view class="bnt cancel" @click.stop="cancelOrder">取消订单</view>
2024-03-19 11:49:20 +08:00
<view class='bnt bgColor' @tap='pay_open(orderInfo.order_id)' v-if="orderInfo.pay_type != 10">立即付款
</view>
2024-02-19 10:44:33 +08:00
</view>
</view>
2024-03-18 18:05:09 +08:00
<payment :payMode='payMode' :pay_close="pay_close" @onChangeFun='onChangeFun' :order_id="pay_order_id"
:totalPrice='totalPrice'></payment>
2024-02-19 10:44:33 +08:00
</view>
</template>
<script>
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
let app = getApp();
2024-03-18 18:05:09 +08:00
import {
HTTP_REQUEST_URL
} from '@/config/app';
import {
goShopDetail
} from '@/libs/order.js'
import {
groupOrderDetail,
orderAgain,
orderTake,
orderDel,
2024-03-21 17:56:29 +08:00
unOrderCancel,
uploadEnvidenceApi
2024-03-18 18:05:09 +08:00
} from '@/api/order.js';
import {
openOrderRefundSubscribe
} from '@/utils/SubscribeMessage.js';
import {
getUserInfo
} from '@/api/user.js';
2024-02-19 10:44:33 +08:00
import payment from '@/components/payment';
import orderGoods from "@/components/orderGoods";
import ClipboardJS from "@/plugin/clipboard/clipboard.js";
2024-03-18 18:05:09 +08:00
import {
configMap
} from "@/utils";
import {
mapGetters
} from "vuex";
import {
toLogin
} from '@/libs/login.js';
2024-02-19 10:44:33 +08:00
export default {
components: {
payment,
orderGoods,
},
data() {
return {
domain: HTTP_REQUEST_URL,
order_id: '',
evaluate: 0,
cartInfo: [], //购物车产品
orderInfo: {
system_store: {},
_status: {}
}, //订单详情
system_store: {},
isGoodsReturn: false, //是否为退款订单
status: {}, //订单底部按钮状态
isClose: false,
payMode: [{
name: "微信支付",
icon: "icon-weixinzhifu",
value: 'wechat',
title: '微信快捷支付',
payStatus: 1
},
{
name: "支付宝支付",
icon: "icon-zhifubao",
value: 'alipay',
title: '支付宝支付',
payStatus: this.$store.getters.globalData.alipay_open
},
{
name: "余额支付",
icon: "icon-yuezhifu",
value: 'balance',
title: '可用余额:',
number: 0,
payStatus: this.$store.getters.globalData.yue_pay_status
},
],
pay_close: false,
pay_order_id: '',
totalPrice: '0',
2024-03-18 18:05:09 +08:00
imgUrl: HTTP_REQUEST_URL,
2024-02-19 10:44:33 +08:00
invoice: {
invoice: false,
add: false,
}
};
},
watch: {
2024-03-18 18:05:09 +08:00
alipay_open(n) {
2024-02-19 10:44:33 +08:00
this.payMode[1].payStatus = n
},
2024-03-18 18:05:09 +08:00
yue_pay_status(n) {
2024-02-19 10:44:33 +08:00
this.payMode[2].payStatus = n
}
},
2024-03-18 18:05:09 +08:00
computed: configMap({
hide_mer_status: 0,
alipay_open: 0,
yue_pay_status: 0
},
mapGetters(['isLogin', 'uid', 'viewColor', 'keyColor'])),
2024-02-19 10:44:33 +08:00
onLoad: function(options) {
if (options.order_id) {
this.$set(this, 'order_id', options.order_id);
}
},
onShow() {
if (this.isLogin) {
this.getUserInfo();
2024-03-21 17:56:29 +08:00
this.getOrderInfo();
2024-02-19 10:44:33 +08:00
} else {
toLogin()
}
},
onHide: function() {
this.isClose = true;
},
onReady: function() {
// #ifdef H5
this.$nextTick(function() {
const clipboard = new ClipboardJS(".copy-data");
clipboard.on("success", () => {
this.$util.Tips({
title: '复制成功'
});
});
});
// #endif
},
mounted: function() {},
methods: {
2024-03-21 17:56:29 +08:00
// 对公转账,上传支付凭证
uploadEnvidence(orderid) {
let that = this;
that.$util.uploadImageOne('upload/image', function(res) {
uploadEnvidenceApi(orderid, res.data.path).then(res1 => {
if (res1.status == 200) {
that.orderInfo.orderList[0].order_extend.corporate_voucher = res.data.path;
that.$set(that, 'orderInfo', that.orderInfo);
that.$util.Tips({
title: "上传成功,请等待后台审核!"
})
} else {
that.$util.Tips({
title: res.message
})
}
})
});
},
2024-02-19 10:44:33 +08:00
// 图片预览
getPhotoClickIdx(list, idx) {
uni.previewImage({
current: list[idx], // 传 Number H5端出现不兼容
urls: list
});
},
// 去店铺
2024-03-18 18:05:09 +08:00
goStore(item) {
if (this.hide_mer_status != 1) {
2024-02-19 10:44:33 +08:00
uni.navigateTo({
2024-03-18 18:05:09 +08:00
url: `/pages/store/home/index?id=${item.merchant.mer_id}`
2024-02-19 10:44:33 +08:00
})
}
},
// 商品详情
2024-03-18 18:05:09 +08:00
goProduct(goods) {
goods.activity_id = goods.cart_info && goods.cart_info.activeSku && goods.cart_info.activeSku
.product_group_id
2024-02-19 10:44:33 +08:00
goShopDetail(goods, '').then(res => {
uni.navigateTo({
2024-03-18 18:05:09 +08:00
url: `/pages/goods_details/index?id=${goods.product_id}`
2024-02-19 10:44:33 +08:00
})
})
},
/**
* 拨打电话
*/
call: function(item) {
let that = this
2024-03-18 18:05:09 +08:00
if (item.merchant.service_phone) {
2024-02-19 10:44:33 +08:00
uni.showModal({
title: '提示',
2024-03-18 18:05:09 +08:00
content: '暂无在线客服,确定拨打客服电话:' + item.merchant.service_phone + '吗?',
2024-02-19 10:44:33 +08:00
success: function(res) {
if (res.confirm) {
uni.makePhoneCall({
phoneNumber: item.merchant.service_phone
})
}
}
})
2024-03-18 18:05:09 +08:00
} else {
2024-02-19 10:44:33 +08:00
return that.$util.Tips({
title: '暂无可用客服'
})
}
},
goGoodCall(item) {
let self = this
uni.navigateTo({
url: `/pages/chat/customer_list/chat?mer_id=${item.mer_id}&uid=${this.uid}&order_id=${this.order_id}`
})
},
/**
* 事件回调
*
*/
onChangeFun: function(e) {
let opt = e;
let action = opt.action || null;
let value = opt.value != undefined ? opt.value : null;
(action && this[action]) && this[action](value);
},
/**
* 拨打电话
*/
makePhone: function() {
uni.makePhoneCall({
phoneNumber: this.system_store.phone
})
},
/**
* 关闭支付组件
*
*/
payClose: function() {
this.pay_close = false;
},
/**
* 打开支付组件
*
*/
pay_open: function() {
this.pay_close = true;
this.pay_order_id = this.orderInfo.group_order_id.toString();
this.totalPrice = this.orderInfo.pay_price;
},
/**
* 支付成功回调
*
*/
pay_complete: function() {
this.pay_close = false;
this.pay_order_id = '';
uni.redirectTo({
2024-03-18 18:05:09 +08:00
url: '/pages/users/order_list/index?status=1'
2024-02-19 10:44:33 +08:00
})
},
/**
* 支付失败回调
*
*/
pay_fail: function() {
this.pay_close = false;
this.pay_order_id = '';
},
/**
* 获取用户信息
*
*/
getUserInfo: function() {
let that = this;
getUserInfo().then(res => {
that.payMode[2].number = res.data.now_money;
that.$set(that, 'payMode', that.payMode);
})
},
/**
* 获取订单详细信息
*
*/
getOrderInfo: function() {
let that = this;
uni.showLoading({
title: "正在加载中"
});
groupOrderDetail(this.order_id).then(res => {
let _type = 0;
uni.hideLoading();
that.$set(that, 'orderInfo', res.data);
}).catch(err => {
console.log(err)
uni.hideLoading();
that.$util.Tips({
title: err
}, '/pages/users/order_list/index');
});
},
/**
*
* 剪切订单号
*/
// #ifndef H5
copy: function() {
let that = this;
uni.setClipboardData({
data: this.orderInfo.group_order_sn
});
},
// #endif
// 取消订单
cancelOrder() {
let self = this
uni.showModal({
title: '提示',
content: '确认取消该订单?',
success: function(res) {
if (res.confirm) {
unOrderCancel(self.order_id)
.then((data) => {
console.log(data)
self.$util.Tips({
title: data.message
}, {
tab: 3
})
})
.catch(() => {
self.getDetail();
});
} else if (res.cancel) {
console.log('用户点击取消');
}
}
});
},
}
}
</script>
<style>
.qs-btn {
width: auto;
height: 60rpx;
text-align: center;
line-height: 60rpx;
border-radius: 50rpx;
color: #fff;
font-size: 27rpx;
padding: 0 3%;
color: #aaa;
border: 1px solid #ddd;
margin-right: 20rpx;
}
</style>
<style scoped lang="scss">
2024-03-18 18:05:09 +08:00
.event_bg {
2024-02-19 10:44:33 +08:00
background: #FF7F00;
}
2024-03-18 18:05:09 +08:00
.event_color {
2024-02-19 10:44:33 +08:00
color: #FF7F00;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.presell_bg_header {
2024-03-18 18:05:09 +08:00
background: linear-gradient(90deg, var(--view-bntColor21) 0%, var(--view-bntColor22) 100%);
2024-02-19 10:44:33 +08:00
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.goodCall {
text-align: center;
width: 100%;
height: 86rpx;
padding: 0 30rpx;
border-top: 1px solid #f0f0f0;
font-size: 30rpx;
line-height: 86rpx;
background: #fff;
color: #282828;
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.icon-kefu {
font-size: 32rpx;
margin-right: 15rpx;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
/* #ifdef MP */
button {
display: flex;
align-items: center;
justify-content: center;
height: 86rpx;
font-size: 30rpx;
color: #e93323;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
/* #endif */
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .header {
padding: 0 30rpx;
height: 150rpx;
background-image: linear-gradient(to right, var(--view-bntColor21) 0%, var(--view-bntColor22) 100%);
2024-03-18 18:05:09 +08:00
&.presell_header {
2024-02-19 10:44:33 +08:00
background-repeat: no-repeat;
background-size: cover;
padding: 35rpx 50rpx;
2024-03-18 18:05:09 +08:00
.data {
2024-02-19 10:44:33 +08:00
margin: 8rpx 0 0 26rpx;
2024-03-18 18:05:09 +08:00
.state {
2024-02-19 10:44:33 +08:00
font-weight: normal;
font-size: 24rpx;
}
}
}
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .header.on {
background-color: #666 !important;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .header .pictrue {
width: 110rpx;
height: 110rpx;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .header .pictrue image {
width: 100%;
height: 100%;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .header .data {
color: rgba(255, 255, 255, 0.8);
font-size: 24rpx;
margin-left: 27rpx;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .header .data.on {
margin-left: 0;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .header .data .state {
font-size: 30rpx;
font-weight: bold;
color: #fff;
margin-bottom: 7rpx;
}
2024-03-18 18:05:09 +08:00
.presell_header .presell_payment {
2024-02-19 10:44:33 +08:00
color: #fff;
font-size: 30rpx;
font-weight: bold;
margin-left: 26rpx;
2024-03-18 18:05:09 +08:00
.iconfont {
2024-02-19 10:44:33 +08:00
font-weight: normal;
margin-right: 8rpx;
}
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .nav {
background-color: #fff;
font-size: 26rpx;
color: #282828;
padding: 25rpx 0;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .nav .navCon {
padding: 0 40rpx;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .nav .on {
color: var(--view-theme);
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .nav .progress {
padding: 0 65rpx;
margin-top: 10rpx;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .nav .progress .line {
width: 100rpx;
height: 2rpx;
background-color: #939390;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .nav .progress .iconfont {
font-size: 25rpx;
color: #939390;
margin-top: -2rpx;
2024-03-18 18:05:09 +08:00
&.t-color {
2024-02-19 10:44:33 +08:00
color: var(--view-theme);
}
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .address {
font-size: 26rpx;
color: #868686;
background-color: #fff;
margin-top: 13rpx;
padding: 35rpx 30rpx;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .address .name {
font-size: 30rpx;
color: #282828;
margin-bottom: 15rpx;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .address .name .phone {
margin-left: 40rpx;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .line {
width: 100%;
height: 3rpx;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .line image {
width: 100%;
height: 100%;
display: block;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .wrapper {
background-color: #fff;
margin-top: 12rpx;
padding: 30rpx;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .wrapper .item {
font-size: 28rpx;
color: #282828;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .wrapper .item~.item {
margin-top: 20rpx;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .wrapper .item .conter {
color: #868686;
width: 460rpx;
text-align: right;
}
2024-03-18 18:05:09 +08:00
.order-details .wrapper .item .conter-item {
display: flex;
justify-content: space-between;
margin-bottom: 20rpx;
.conter-item-name {
width: 140rpx;
white-space: nowrap;
}
text {
&:nth-child(2) {
width: 80%;
}
}
}
2024-02-19 10:44:33 +08:00
.order-details .wrapper .item .virtual_image {
margin-left: 50rpx;
}
2024-03-18 18:05:09 +08:00
.order-details .wrapper .item .virtual_image .picture {
2024-02-19 10:44:33 +08:00
width: 106rpx;
height: 106rpx;
border-radius: 8rpx;
margin-right: 10rpx;
2024-03-18 18:05:09 +08:00
&:last-child {
2024-02-19 10:44:33 +08:00
margin-right: 0;
}
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .wrapper .item .conter .copy {
font-size: 20rpx;
color: #333;
border-radius: 17rpx;
border: 1px solid #666;
padding: 3rpx 15rpx;
margin-left: 24rpx;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .wrapper .actualPay {
border-top: 1px solid #eee;
margin-top: 30rpx;
padding-top: 30rpx;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .wrapper .actualPay .money {
font-weight: bold;
font-size: 30rpx;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .footer {
width: 100%;
position: fixed;
bottom: 0;
left: 0;
background-color: #fff;
padding: 0 30rpx;
height: 100rpx;
height: calc(100rpx+ constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/
height: calc(100rpx + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/
box-sizing: border-box;
}
2024-03-18 18:05:09 +08:00
.content-clip {
2024-02-19 10:44:33 +08:00
height: 120rpx;
height: calc(120rpx+ constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/
height: calc(120rpx + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .footer .bnt {
width: 176rpx;
height: 60rpx;
text-align: center;
line-height: 60rpx;
border-radius: 50rpx;
color: #fff;
font-size: 27rpx;
}
2024-03-18 18:05:09 +08:00
.bgColor {
2024-02-19 10:44:33 +08:00
background-color: var(--view-theme);
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .footer .bnt.cancel {
color: #aaa;
border: 1px solid #ddd;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .footer .bnt~.bnt {
margin-left: 18rpx;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .writeOff {
background-color: #fff;
margin-top: 13rpx;
padding-bottom: 30rpx;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .writeOff .title {
font-size: 30rpx;
color: #282828;
height: 87rpx;
border-bottom: 1px solid #f0f0f0;
padding: 0 30rpx;
line-height: 87rpx;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .writeOff .grayBg {
background-color: #f2f5f7;
width: 590rpx;
height: 384rpx;
border-radius: 20rpx 20rpx 0 0;
margin: 50rpx auto 0 auto;
padding-top: 55rpx;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .writeOff .grayBg .pictrue {
width: 290rpx;
height: 290rpx;
margin: 0 auto;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .writeOff .grayBg .pictrue image {
width: 100%;
height: 100%;
display: block;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .writeOff .gear {
width: 590rpx;
height: 30rpx;
margin: 0 auto;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .writeOff .gear image {
width: 100%;
height: 100%;
display: block;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .writeOff .num {
background-color: #f0c34c;
width: 590rpx;
height: 84rpx;
color: #282828;
font-size: 48rpx;
margin: 0 auto;
border-radius: 0 0 20rpx 20rpx;
text-align: center;
padding-top: 4rpx;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .writeOff .rules {
margin: 46rpx 30rpx 0 30rpx;
border-top: 1px solid #f0f0f0;
padding-top: 10rpx;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .writeOff .rules .item {
margin-top: 20rpx;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .writeOff .rules .item .rulesTitle {
font-size: 28rpx;
color: #282828;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .writeOff .rules .item .rulesTitle .iconfont {
font-size: 30rpx;
color: #333;
margin-right: 8rpx;
margin-top: 5rpx;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .writeOff .rules .item .info {
font-size: 28rpx;
color: #999;
margin-top: 7rpx;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .writeOff .rules .item .info .time {
margin-left: 20rpx;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .map {
height: 86rpx;
font-size: 30rpx;
color: #282828;
line-height: 86rpx;
border-bottom: 1px solid #f0f0f0;
margin-top: 13rpx;
background-color: #fff;
padding: 0 30rpx;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .map .place {
font-size: 26rpx;
width: 176rpx;
height: 50rpx;
border-radius: 25rpx;
line-height: 50rpx;
text-align: center;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .map .place .iconfont {
font-size: 27rpx;
height: 27rpx;
line-height: 27rpx;
margin: 2rpx 3rpx 0 0;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.order-details .address .name .iconfont {
font-size: 34rpx;
margin-left: 10rpx;
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.refund {
padding: 0 30rpx 30rpx;
margin-top: 24rpx;
background-color: #fff;
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.title {
display: flex;
align-items: center;
font-size: 30rpx;
color: #333;
height: 86rpx;
border-bottom: 1px solid #f5f5f5;
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
image {
width: 32rpx;
height: 32rpx;
margin-right: 10rpx;
}
}
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.con {
padding-top: 25rpx;
font-size: 28rpx;
color: #868686;
}
}
2024-03-18 18:05:09 +08:00
.order-wrapper {
2024-02-19 10:44:33 +08:00
margin-top: 15rpx;
2024-03-18 18:05:09 +08:00
.title {
2024-02-19 10:44:33 +08:00
display: flex;
align-items: center;
height: 86rpx;
2024-03-18 18:05:09 +08:00
padding: 0 30rpx;
2024-02-19 10:44:33 +08:00
border-bottom: 1px solid #f0f0f0;
background-color: #fff;
2024-03-18 18:05:09 +08:00
.iconfont {
2024-02-19 10:44:33 +08:00
font-size: 24rpx;
color: #666;
margin-top: 6rpx;
margin-left: 5rpx;
}
}
2024-03-18 18:05:09 +08:00
.goods-box {
.item {
2024-02-19 10:44:33 +08:00
display: flex;
padding: 25rpx 30rpx 25rpx 30rpx;
background-color: #fff;
2024-03-18 18:05:09 +08:00
image {
2024-02-19 10:44:33 +08:00
width: 130rpx;
height: 130rpx;
border-radius: 16rpx;
}
2024-03-18 18:05:09 +08:00
.info-box {
2024-02-19 10:44:33 +08:00
display: flex;
flex-direction: column;
justify-content: space-between;
margin-left: 25rpx;
width: 450rpx;
2024-03-18 18:05:09 +08:00
.msg {
2024-02-19 10:44:33 +08:00
color: #868686;
font-size: 20rpx;
}
2024-03-18 18:05:09 +08:00
.price {
2024-02-19 10:44:33 +08:00
font-size: 26rpx;
color: var(--view-priceColor);
}
2024-03-18 18:05:09 +08:00
.svip-img {
2024-02-19 10:44:33 +08:00
width: 65rpx;
height: 28rpx;
margin: 4rpx 0 0 4rpx;
}
}
2024-03-18 18:05:09 +08:00
.num {
2024-02-19 10:44:33 +08:00
flex: 1;
text-align: right;
font-size: 26rpx;
color: #868686;
}
}
2024-03-18 18:05:09 +08:00
.event_name {
2024-02-19 10:44:33 +08:00
display: inline-block;
margin-right: 9rpx;
color: #fff;
font-size: 20rpx;
padding: 0 8rpx;
line-height: 30rpx;
text-align: center;
border-radius: 6rpx;
}
2024-03-18 18:05:09 +08:00
.event_ship {
2024-02-19 10:44:33 +08:00
font-size: 20rpx;
margin-top: 10rpx;
}
}
2024-03-18 18:05:09 +08:00
.event_progress {
2024-02-19 10:44:33 +08:00
margin-top: 20rpx;
background: #fff;
2024-03-18 18:05:09 +08:00
2024-02-19 10:44:33 +08:00
.progress_name {
padding-left: 30rpx;
height: 60rpx;
line-height: 60rpx;
font-size: 24rpx;
font-weight: bold;
position: relative;
color: var(--view-theme);
2024-03-18 18:05:09 +08:00
&::before {
2024-02-19 10:44:33 +08:00
content: "";
display: inline-block;
width: 5rpx;
height: 34rpx;
background: var(--view-theme);
position: absolute;
top: 15rpx;
left: 0;
}
}
2024-03-18 18:05:09 +08:00
.align_right {
2024-02-19 10:44:33 +08:00
float: right;
font-weight: bold;
}
2024-03-18 18:05:09 +08:00
.gColor {
2024-02-19 10:44:33 +08:00
color: var(--view-theme);
}
2024-03-18 18:05:09 +08:00
.progress_price {
2024-02-19 10:44:33 +08:00
padding: 20rpx 30rpx;
color: #999999;
font-size: 22rpx;
}
2024-03-18 18:05:09 +08:00
.progress_pay {
2024-02-19 10:44:33 +08:00
padding: 25rpx 30rpx;
background: var(--view-minorColor);
font-size: 26rpx;
color: #282828;
}
}
}
2024-03-21 17:56:29 +08:00
.upload-btn{
background-color: #40ae36;
color: #fff;
padding: 10rpx 20rpx 12rpx 20rpx;
border-radius: 50rpx;
}
2024-03-18 18:05:09 +08:00
</style>