1149 lines
28 KiB
Vue
1149 lines
28 KiB
Vue
<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'>
|
||
<view class='state' v-if="orderInfo.pay_type!=10">请在{{orderInfo.cancel_time}}前完成支付!</view>
|
||
<view class='state' v-else>请及时上传凭证完成支付</view>
|
||
<view>{{orderInfo.add_time_y}}<text class='time'>{{orderInfo.create_time}}</text></view>
|
||
</view>
|
||
</view>
|
||
<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">
|
||
<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>
|
||
<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">
|
||
<view class="title line1" @click="goStore(item)">{{item.merchant.mer_name}}<text
|
||
class="iconfont icon-xiangyou"></text>
|
||
</view>
|
||
<view class="goods-box" v-if="item.orderProduct">
|
||
<view v-for="(goods,j) in item.orderProduct" :key="goods.order_product_id"
|
||
@click="goProduct(goods)">
|
||
<view v-if="item.activity_type === 2">
|
||
<view class="item">
|
||
<image :src="goods.cart_info.product.image"></image>
|
||
<view class="info-box">
|
||
<view class="name line1"><text
|
||
class="event_name event_bg">预售</text>{{goods.cart_info.product.store_name}}
|
||
</view>
|
||
<view class="msg">{{goods.cart_info.productAttr.sku}}</view>
|
||
<view class="event_ship event_color">发货时间:
|
||
<!--全款预售-->
|
||
<text
|
||
v-if="goods.cart_info.productPresell.presell_type === 1">{{ goods.cart_info.productPresell.delivery_type === 1 ? '支付成功后' : '预售结束后' }}{{ goods.cart_info.productPresell.delivery_day }}天内</text>
|
||
<!--定金预售-->
|
||
<text
|
||
v-if="goods.cart_info.productPresell.presell_type === 2">{{ goods.cart_info.productPresell.delivery_type === 1 ? '支付尾款后' : '预售结束后' }}{{ goods.cart_info.productPresell.delivery_day }}天内</text>
|
||
</view>
|
||
</view>
|
||
<view class="num"><text
|
||
class="font-color">¥{{goods.cart_info.productPresellAttr.presell_price}}</text></br>x{{goods.product_num}}
|
||
</view>
|
||
</view>
|
||
<view class="event_progress" v-if="goods.cart_info.productPresell.presell_type !=1">
|
||
<view class="progress_list">
|
||
<view class="progress_name">阶段一: 等待买家付款</view>
|
||
<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>
|
||
</view>
|
||
<view class="progress_list">
|
||
<view class="progress_name">阶段二: 未开始</view>
|
||
<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>
|
||
</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>
|
||
<image v-if="goods.cart_info.productAttr.show_svip_price" class="svip-img"
|
||
:src="`${domain}/static/images/svip.png`"></image>
|
||
</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>
|
||
<view v-if="orderInfo.orderList && orderInfo.orderList[0].order_extend " class='wrapper'>
|
||
<view v-if="orderInfo.orderList[0].order_extend.bank_info"
|
||
class='item acea-row row-between'>
|
||
<view class='conter' style="width: 100%;">
|
||
<view class="conter-item">
|
||
<text class="conter-item-name">公司名称:</text>
|
||
<text>{{orderInfo.orderList[0].order_extend.bank_info.company_name}}</text>
|
||
</view>
|
||
<view class="conter-item">
|
||
<text class="conter-item-name">对公账号:</text>
|
||
<text>{{orderInfo.orderList[0].order_extend.bank_info.corporate_account}}</text>
|
||
</view>
|
||
<view class="conter-item">
|
||
<text class="conter-item-name">开户行:</text>
|
||
<text>{{orderInfo.orderList[0].order_extend.bank_info.corporate_bank}}</text>
|
||
</view>
|
||
<view class="conter-item">
|
||
<text class="conter-item-name">开户行地址:</text>
|
||
<text>{{orderInfo.orderList[0].order_extend.bank_info.corporate_bank_address}}</text>
|
||
</view>
|
||
</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>
|
||
|
||
<view class='item acea-row row-between' v-if="orderInfo.pay_type != 10">
|
||
<view>实付款:</view>
|
||
<view class='conter'>¥{{orderInfo.pay_price}}</view>
|
||
</view>
|
||
|
||
<view class='item acea-row row-between' v-else>
|
||
<view>付款凭证:</view>
|
||
<view class='conter'
|
||
v-if="orderInfo.orderList[0] && orderInfo.orderList[0].order_extend && orderInfo.orderList[0].order_extend.corporate_voucher">
|
||
<image style="width: 400rpx;height:340rpx"
|
||
:src="orderInfo.orderList[0].order_extend.corporate_voucher">
|
||
</image>
|
||
<view class='upload-btn' @click="uploadEnvidence(orderInfo.orderList[0].order_id)" style="display: inline-block;">重新上传</view>
|
||
</view>
|
||
<!-- <text v-else style="color:#868686;">暂无凭证</text> -->
|
||
<view v-else class='upload-btn' @click="uploadEnvidence(orderInfo.orderList[0].order_id)" >上传凭证</view>
|
||
</view>
|
||
</view>
|
||
<view class="content-clip"></view>
|
||
<view class='footer acea-row row-right row-middle'>
|
||
<view class="bnt cancel" @click.stop="cancelOrder">取消订单</view>
|
||
<view class='bnt bgColor' @tap='pay_open(orderInfo.order_id)' v-if="orderInfo.pay_type != 10">立即付款
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<payment :payMode='payMode' :pay_close="pay_close" @onChangeFun='onChangeFun' :order_id="pay_order_id"
|
||
:totalPrice='totalPrice'></payment>
|
||
|
||
</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();
|
||
import {
|
||
HTTP_REQUEST_URL
|
||
} from '@/config/app';
|
||
import {
|
||
goShopDetail
|
||
} from '@/libs/order.js'
|
||
import {
|
||
groupOrderDetail,
|
||
orderAgain,
|
||
orderTake,
|
||
orderDel,
|
||
unOrderCancel,
|
||
uploadEnvidenceApi
|
||
} from '@/api/order.js';
|
||
import {
|
||
openOrderRefundSubscribe
|
||
} from '@/utils/SubscribeMessage.js';
|
||
import {
|
||
getUserInfo
|
||
} from '@/api/user.js';
|
||
import payment from '@/components/payment';
|
||
import orderGoods from "@/components/orderGoods";
|
||
import ClipboardJS from "@/plugin/clipboard/clipboard.js";
|
||
import {
|
||
configMap
|
||
} from "@/utils";
|
||
import {
|
||
mapGetters
|
||
} from "vuex";
|
||
import {
|
||
toLogin
|
||
} from '@/libs/login.js';
|
||
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',
|
||
imgUrl: HTTP_REQUEST_URL,
|
||
invoice: {
|
||
invoice: false,
|
||
add: false,
|
||
},
|
||
sale_type: 1
|
||
};
|
||
},
|
||
watch: {
|
||
alipay_open(n) {
|
||
this.payMode[1].payStatus = n
|
||
},
|
||
yue_pay_status(n) {
|
||
this.payMode[2].payStatus = n
|
||
}
|
||
},
|
||
computed: configMap({
|
||
hide_mer_status: 0,
|
||
alipay_open: 0,
|
||
yue_pay_status: 0
|
||
},
|
||
mapGetters(['isLogin', 'uid', 'viewColor', 'keyColor'])),
|
||
onLoad: function(options) {
|
||
if (options.order_id) {
|
||
this.$set(this, 'order_id', options.order_id);
|
||
options.sale_type ? this.sale_type = options.sale_type : null;
|
||
}
|
||
},
|
||
onShow() {
|
||
if (this.isLogin) {
|
||
this.getUserInfo();
|
||
this.getOrderInfo();
|
||
} 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: {
|
||
// 对公转账,上传支付凭证
|
||
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
|
||
})
|
||
}
|
||
})
|
||
});
|
||
},
|
||
// 图片预览
|
||
getPhotoClickIdx(list, idx) {
|
||
uni.previewImage({
|
||
current: list[idx], // 传 Number H5端出现不兼容
|
||
urls: list
|
||
});
|
||
},
|
||
// 去店铺
|
||
goStore(item) {
|
||
if (this.hide_mer_status != 1) {
|
||
uni.navigateTo({
|
||
url: `/pages/store/home/index?id=${item.merchant.mer_id}` + '&sale_type=' + this.sale_type
|
||
})
|
||
}
|
||
},
|
||
// 商品详情
|
||
goProduct(goods) {
|
||
goods.activity_id = goods.cart_info && goods.cart_info.activeSku && goods.cart_info.activeSku
|
||
.product_group_id
|
||
goShopDetail(goods, '', this.sale_type).then(res => {
|
||
uni.navigateTo({
|
||
url: `/pages/goods_details/index?id=${goods.product_id}` + '&sale_type=' + this.sale_type
|
||
})
|
||
})
|
||
},
|
||
/**
|
||
* 拨打电话
|
||
*/
|
||
call: function(item) {
|
||
let that = this
|
||
if (item.merchant.service_phone) {
|
||
uni.showModal({
|
||
title: '提示',
|
||
content: '暂无在线客服,确定拨打客服电话:' + item.merchant.service_phone + '吗?',
|
||
success: function(res) {
|
||
if (res.confirm) {
|
||
uni.makePhoneCall({
|
||
phoneNumber: item.merchant.service_phone
|
||
})
|
||
}
|
||
}
|
||
})
|
||
} else {
|
||
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({
|
||
url: '/pages/users/order_list/index?status=1'
|
||
})
|
||
},
|
||
/**
|
||
* 支付失败回调
|
||
*
|
||
*/
|
||
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">
|
||
.event_bg {
|
||
background: #FF7F00;
|
||
}
|
||
|
||
.event_color {
|
||
color: #FF7F00;
|
||
}
|
||
|
||
.presell_bg_header {
|
||
background: linear-gradient(90deg, var(--view-bntColor21) 0%, var(--view-bntColor22) 100%);
|
||
}
|
||
|
||
.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;
|
||
|
||
.icon-kefu {
|
||
font-size: 32rpx;
|
||
margin-right: 15rpx;
|
||
}
|
||
|
||
/* #ifdef MP */
|
||
button {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
height: 86rpx;
|
||
font-size: 30rpx;
|
||
color: #e93323;
|
||
}
|
||
|
||
/* #endif */
|
||
}
|
||
|
||
.order-details .header {
|
||
padding: 0 30rpx;
|
||
height: 150rpx;
|
||
background-image: linear-gradient(to right, var(--view-bntColor21) 0%, var(--view-bntColor22) 100%);
|
||
|
||
&.presell_header {
|
||
background-repeat: no-repeat;
|
||
background-size: cover;
|
||
padding: 35rpx 50rpx;
|
||
|
||
.data {
|
||
margin: 8rpx 0 0 26rpx;
|
||
|
||
.state {
|
||
font-weight: normal;
|
||
font-size: 24rpx;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
.order-details .header.on {
|
||
background-color: #666 !important;
|
||
}
|
||
|
||
.order-details .header .pictrue {
|
||
width: 110rpx;
|
||
height: 110rpx;
|
||
}
|
||
|
||
.order-details .header .pictrue image {
|
||
width: 100%;
|
||
height: 100%;
|
||
}
|
||
|
||
.order-details .header .data {
|
||
color: rgba(255, 255, 255, 0.8);
|
||
font-size: 24rpx;
|
||
margin-left: 27rpx;
|
||
}
|
||
|
||
.order-details .header .data.on {
|
||
margin-left: 0;
|
||
}
|
||
|
||
.order-details .header .data .state {
|
||
font-size: 30rpx;
|
||
font-weight: bold;
|
||
color: #fff;
|
||
margin-bottom: 7rpx;
|
||
}
|
||
|
||
.presell_header .presell_payment {
|
||
color: #fff;
|
||
font-size: 30rpx;
|
||
font-weight: bold;
|
||
margin-left: 26rpx;
|
||
|
||
.iconfont {
|
||
font-weight: normal;
|
||
margin-right: 8rpx;
|
||
}
|
||
}
|
||
|
||
.order-details .nav {
|
||
background-color: #fff;
|
||
font-size: 26rpx;
|
||
color: #282828;
|
||
padding: 25rpx 0;
|
||
}
|
||
|
||
.order-details .nav .navCon {
|
||
padding: 0 40rpx;
|
||
}
|
||
|
||
.order-details .nav .on {
|
||
color: var(--view-theme);
|
||
}
|
||
|
||
.order-details .nav .progress {
|
||
padding: 0 65rpx;
|
||
margin-top: 10rpx;
|
||
}
|
||
|
||
.order-details .nav .progress .line {
|
||
width: 100rpx;
|
||
height: 2rpx;
|
||
background-color: #939390;
|
||
}
|
||
|
||
.order-details .nav .progress .iconfont {
|
||
font-size: 25rpx;
|
||
color: #939390;
|
||
margin-top: -2rpx;
|
||
|
||
&.t-color {
|
||
color: var(--view-theme);
|
||
}
|
||
}
|
||
|
||
.order-details .address {
|
||
font-size: 26rpx;
|
||
color: #868686;
|
||
background-color: #fff;
|
||
margin-top: 13rpx;
|
||
padding: 35rpx 30rpx;
|
||
}
|
||
|
||
.order-details .address .name {
|
||
font-size: 30rpx;
|
||
color: #282828;
|
||
margin-bottom: 15rpx;
|
||
}
|
||
|
||
.order-details .address .name .phone {
|
||
margin-left: 40rpx;
|
||
}
|
||
|
||
.order-details .line {
|
||
width: 100%;
|
||
height: 3rpx;
|
||
}
|
||
|
||
.order-details .line image {
|
||
width: 100%;
|
||
height: 100%;
|
||
display: block;
|
||
}
|
||
|
||
.order-details .wrapper {
|
||
background-color: #fff;
|
||
margin-top: 12rpx;
|
||
padding: 30rpx;
|
||
}
|
||
|
||
.order-details .wrapper .item {
|
||
font-size: 28rpx;
|
||
color: #282828;
|
||
}
|
||
|
||
.order-details .wrapper .item~.item {
|
||
margin-top: 20rpx;
|
||
}
|
||
|
||
.order-details .wrapper .item .conter {
|
||
color: #868686;
|
||
width: 460rpx;
|
||
text-align: right;
|
||
}
|
||
|
||
.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%;
|
||
}
|
||
}
|
||
}
|
||
|
||
.order-details .wrapper .item .virtual_image {
|
||
margin-left: 50rpx;
|
||
}
|
||
|
||
.order-details .wrapper .item .virtual_image .picture {
|
||
width: 106rpx;
|
||
height: 106rpx;
|
||
border-radius: 8rpx;
|
||
margin-right: 10rpx;
|
||
|
||
&:last-child {
|
||
margin-right: 0;
|
||
}
|
||
}
|
||
|
||
.order-details .wrapper .item .conter .copy {
|
||
font-size: 20rpx;
|
||
color: #333;
|
||
border-radius: 17rpx;
|
||
border: 1px solid #666;
|
||
padding: 3rpx 15rpx;
|
||
margin-left: 24rpx;
|
||
}
|
||
|
||
.order-details .wrapper .actualPay {
|
||
border-top: 1px solid #eee;
|
||
margin-top: 30rpx;
|
||
padding-top: 30rpx;
|
||
}
|
||
|
||
.order-details .wrapper .actualPay .money {
|
||
font-weight: bold;
|
||
font-size: 30rpx;
|
||
}
|
||
|
||
.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;
|
||
}
|
||
|
||
.content-clip {
|
||
height: 120rpx;
|
||
height: calc(120rpx+ constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/
|
||
height: calc(120rpx + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/
|
||
}
|
||
|
||
.order-details .footer .bnt {
|
||
width: 176rpx;
|
||
height: 60rpx;
|
||
text-align: center;
|
||
line-height: 60rpx;
|
||
border-radius: 50rpx;
|
||
color: #fff;
|
||
font-size: 27rpx;
|
||
}
|
||
|
||
.bgColor {
|
||
background-color: var(--view-theme);
|
||
}
|
||
|
||
.order-details .footer .bnt.cancel {
|
||
color: #aaa;
|
||
border: 1px solid #ddd;
|
||
}
|
||
|
||
.order-details .footer .bnt~.bnt {
|
||
margin-left: 18rpx;
|
||
}
|
||
|
||
.order-details .writeOff {
|
||
background-color: #fff;
|
||
margin-top: 13rpx;
|
||
padding-bottom: 30rpx;
|
||
}
|
||
|
||
.order-details .writeOff .title {
|
||
font-size: 30rpx;
|
||
color: #282828;
|
||
height: 87rpx;
|
||
border-bottom: 1px solid #f0f0f0;
|
||
padding: 0 30rpx;
|
||
line-height: 87rpx;
|
||
}
|
||
|
||
.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;
|
||
}
|
||
|
||
.order-details .writeOff .grayBg .pictrue {
|
||
width: 290rpx;
|
||
height: 290rpx;
|
||
margin: 0 auto;
|
||
}
|
||
|
||
.order-details .writeOff .grayBg .pictrue image {
|
||
width: 100%;
|
||
height: 100%;
|
||
display: block;
|
||
}
|
||
|
||
.order-details .writeOff .gear {
|
||
width: 590rpx;
|
||
height: 30rpx;
|
||
margin: 0 auto;
|
||
}
|
||
|
||
.order-details .writeOff .gear image {
|
||
width: 100%;
|
||
height: 100%;
|
||
display: block;
|
||
}
|
||
|
||
.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;
|
||
}
|
||
|
||
.order-details .writeOff .rules {
|
||
margin: 46rpx 30rpx 0 30rpx;
|
||
border-top: 1px solid #f0f0f0;
|
||
padding-top: 10rpx;
|
||
}
|
||
|
||
.order-details .writeOff .rules .item {
|
||
margin-top: 20rpx;
|
||
}
|
||
|
||
.order-details .writeOff .rules .item .rulesTitle {
|
||
font-size: 28rpx;
|
||
color: #282828;
|
||
}
|
||
|
||
.order-details .writeOff .rules .item .rulesTitle .iconfont {
|
||
font-size: 30rpx;
|
||
color: #333;
|
||
margin-right: 8rpx;
|
||
margin-top: 5rpx;
|
||
}
|
||
|
||
.order-details .writeOff .rules .item .info {
|
||
font-size: 28rpx;
|
||
color: #999;
|
||
margin-top: 7rpx;
|
||
}
|
||
|
||
.order-details .writeOff .rules .item .info .time {
|
||
margin-left: 20rpx;
|
||
}
|
||
|
||
.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;
|
||
}
|
||
|
||
.order-details .map .place {
|
||
font-size: 26rpx;
|
||
width: 176rpx;
|
||
height: 50rpx;
|
||
border-radius: 25rpx;
|
||
line-height: 50rpx;
|
||
text-align: center;
|
||
}
|
||
|
||
.order-details .map .place .iconfont {
|
||
font-size: 27rpx;
|
||
height: 27rpx;
|
||
line-height: 27rpx;
|
||
margin: 2rpx 3rpx 0 0;
|
||
}
|
||
|
||
.order-details .address .name .iconfont {
|
||
font-size: 34rpx;
|
||
margin-left: 10rpx;
|
||
}
|
||
|
||
.refund {
|
||
padding: 0 30rpx 30rpx;
|
||
margin-top: 24rpx;
|
||
background-color: #fff;
|
||
|
||
.title {
|
||
display: flex;
|
||
align-items: center;
|
||
font-size: 30rpx;
|
||
color: #333;
|
||
height: 86rpx;
|
||
border-bottom: 1px solid #f5f5f5;
|
||
|
||
image {
|
||
width: 32rpx;
|
||
height: 32rpx;
|
||
margin-right: 10rpx;
|
||
}
|
||
}
|
||
|
||
.con {
|
||
padding-top: 25rpx;
|
||
font-size: 28rpx;
|
||
color: #868686;
|
||
}
|
||
}
|
||
|
||
.order-wrapper {
|
||
margin-top: 15rpx;
|
||
|
||
.title {
|
||
display: flex;
|
||
align-items: center;
|
||
height: 86rpx;
|
||
padding: 0 30rpx;
|
||
border-bottom: 1px solid #f0f0f0;
|
||
background-color: #fff;
|
||
|
||
.iconfont {
|
||
font-size: 24rpx;
|
||
color: #666;
|
||
margin-top: 6rpx;
|
||
margin-left: 5rpx;
|
||
}
|
||
}
|
||
|
||
.goods-box {
|
||
.item {
|
||
display: flex;
|
||
padding: 25rpx 30rpx 25rpx 30rpx;
|
||
background-color: #fff;
|
||
|
||
image {
|
||
width: 130rpx;
|
||
height: 130rpx;
|
||
border-radius: 16rpx;
|
||
}
|
||
|
||
.info-box {
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: space-between;
|
||
margin-left: 25rpx;
|
||
width: 450rpx;
|
||
|
||
.msg {
|
||
color: #868686;
|
||
font-size: 20rpx;
|
||
}
|
||
|
||
.price {
|
||
font-size: 26rpx;
|
||
color: var(--view-priceColor);
|
||
}
|
||
|
||
.svip-img {
|
||
width: 65rpx;
|
||
height: 28rpx;
|
||
margin: 4rpx 0 0 4rpx;
|
||
}
|
||
}
|
||
|
||
.num {
|
||
flex: 1;
|
||
text-align: right;
|
||
font-size: 26rpx;
|
||
color: #868686;
|
||
}
|
||
}
|
||
|
||
.event_name {
|
||
display: inline-block;
|
||
margin-right: 9rpx;
|
||
color: #fff;
|
||
font-size: 20rpx;
|
||
padding: 0 8rpx;
|
||
line-height: 30rpx;
|
||
text-align: center;
|
||
border-radius: 6rpx;
|
||
}
|
||
|
||
.event_ship {
|
||
font-size: 20rpx;
|
||
margin-top: 10rpx;
|
||
}
|
||
}
|
||
|
||
.event_progress {
|
||
margin-top: 20rpx;
|
||
background: #fff;
|
||
|
||
.progress_name {
|
||
padding-left: 30rpx;
|
||
height: 60rpx;
|
||
line-height: 60rpx;
|
||
font-size: 24rpx;
|
||
font-weight: bold;
|
||
position: relative;
|
||
color: var(--view-theme);
|
||
|
||
&::before {
|
||
content: "";
|
||
display: inline-block;
|
||
width: 5rpx;
|
||
height: 34rpx;
|
||
background: var(--view-theme);
|
||
position: absolute;
|
||
top: 15rpx;
|
||
left: 0;
|
||
}
|
||
}
|
||
|
||
.align_right {
|
||
float: right;
|
||
font-weight: bold;
|
||
}
|
||
|
||
.gColor {
|
||
color: var(--view-theme);
|
||
}
|
||
|
||
.progress_price {
|
||
padding: 20rpx 30rpx;
|
||
color: #999999;
|
||
font-size: 22rpx;
|
||
}
|
||
|
||
.progress_pay {
|
||
padding: 25rpx 30rpx;
|
||
background: var(--view-minorColor);
|
||
font-size: 26rpx;
|
||
color: #282828;
|
||
}
|
||
}
|
||
}
|
||
.upload-btn{
|
||
background-color: #40ae36;
|
||
color: #fff;
|
||
padding: 10rpx 20rpx 12rpx 20rpx;
|
||
border-radius: 50rpx;
|
||
}
|
||
</style> |