cyywl_server/yudao-ui-app/pages/order_details/index.vue

882 lines
19 KiB
Vue
Raw Normal View History

2023-05-15 10:12:22 +08:00
<template>
2023-05-23 17:37:49 +08:00
<view class="container">
<u-navbar title="订单详情" bgColor="transparent">
<view class="u-nav-slot" slot="left">
<u-icon name="arrow-left"></u-icon>
</view>
</u-navbar>
<view class="bg">
<image src="@/static/images/shop/cart_bg.png"></image>
</view>
<view class="box">
<view class="top">
<view class="navigation"></view>
<view class="address">
<view class="name">收件人张三 {{orderInfo.userPhone}}</view>
<text class="detail">{{orderInfo.userAddress}}</text>
2023-05-15 10:12:22 +08:00
</view>
2023-05-23 17:37:49 +08:00
<view class="go"></view>
2023-05-15 10:12:22 +08:00
</view>
2023-05-23 17:37:49 +08:00
<view class="goodsDetail">
<view class="boxs"></view>
<view class="tops">
<view class="shopName">
古驰旗舰店>
2023-05-15 10:12:22 +08:00
</view>
</view>
2023-05-23 17:37:49 +08:00
<view class="content">
<view class="image">
2023-05-24 17:08:06 +08:00
<u--image :showLoading="true" radius="10rpx" src="https://cdn.uviewui.com/uview/album/1.jpg" width="111rpx"
2023-05-23 17:37:49 +08:00
height="99rpx" @click="click"></u--image>
2023-05-15 10:12:22 +08:00
</view>
2023-05-23 17:37:49 +08:00
<view class="text">
<view class="name">
GUCCI/古驰HADLEY 21
2023-05-15 10:12:22 +08:00
</view>
2023-05-23 17:37:49 +08:00
<view class="model">
Gucci Blondie小号托特包
</view>
<view class="prices">
2023-05-24 17:08:06 +08:00
<u--text color="#E50202" mode="price" :text="orderInfo.totalPrice"></u--text>
2023-05-15 10:12:22 +08:00
</view>
</view>
2023-05-23 17:37:49 +08:00
<div class="sum">x1</div>
2023-05-15 10:12:22 +08:00
</view>
2023-05-23 17:37:49 +08:00
<view class="boxs"></view>
</view>
<view class="price">
<view style="height: 1rpx;"></view>
<view class="priceitems">
<text class="itemsleft">商品总价</text>
2023-05-24 17:08:06 +08:00
<text class="itemsright"><u--text mode="price" :text="orderInfo.proTotalPrice"></u--text></text>
2023-05-15 10:12:22 +08:00
</view>
2023-05-23 17:37:49 +08:00
<view class="priceitems">
<text class="itemsleft">运费</text>
2023-05-24 17:08:06 +08:00
<text class="itemsright"><u--text mode="price" :text="orderInfo.payPostage"></u--text></text>
2023-05-15 10:12:22 +08:00
</view>
2023-05-23 17:37:49 +08:00
<view class="priceitems">
<text class="itemsleft">待付金额</text>
2023-05-24 17:08:06 +08:00
<text class="itemsright"><u--text mode="price" :text="orderInfo.totalPrice"></u--text></text>
2023-05-15 10:12:22 +08:00
</view>
</view>
2023-05-23 17:37:49 +08:00
<view class="detail">
<view style="height: 1rpx;"></view>
<view class="title">订单信息</view>
<view class="detailitems">
<text class="detailleft">订单备注</text>
<text class="detailright">{{orderInfo.mark}}</text>
2023-05-15 10:12:22 +08:00
</view>
2023-05-23 17:37:49 +08:00
<view class="detailitems">
<text class="detailleft">订单编号</text>
<text class="detailright">{{orderInfo.orderId}}</text>
2023-05-15 10:12:22 +08:00
</view>
2023-05-23 17:37:49 +08:00
<view class="detailitems">
<text class="detailleft">创建时间</text>
<text class="detailright">{{orderInfo.createTime}}</text>
2023-05-15 10:12:22 +08:00
</view>
2023-05-23 17:37:49 +08:00
</view>
<view class="pay">
<view style="height: 1rpx;"></view>
<view class="title">支付方式</view>
<view class="payment" @click="isWx=!isWx">
<view class="mode">
<text class="wechat"></text>
<text style="width: 140rpx;">微信支付</text>
<view :class="[isWx?'radioNo':'radio']"></view>
2023-05-15 10:12:22 +08:00
</view>
</view>
2023-05-23 17:37:49 +08:00
<view class="payment" @click="isWx=!isWx">
<view class="mode">
<text class="zfb"></text>
<text style="width: 140rpx;">支付宝支付</text>
<view :class="[isWx?'radio':'radioNo']"></view>
</view>
2023-05-15 10:12:22 +08:00
</view>
</view>
</view>
2023-05-23 17:37:49 +08:00
<view class="zf">
<view class="zfNumber">待支付: <text>123</text> </view>
2023-05-24 17:08:06 +08:00
<view class="closeOrder" tap="cancelOrder()">取消订单</view>
<view class="orderPay" @tap='pay_open(orderInfo.orderId)'>立即付款</view>
2023-05-23 17:37:49 +08:00
</view>
2023-05-15 10:12:22 +08:00
</view>
</template>
<script>
import {
getOrderDetail,
orderTake,
orderDel,
orderCancel,
qrcodeApi
} from '@/api/order.js';
import {
openOrderRefundSubscribe
} from '@/utils/SubscribeMessage.js';
import home from '@/components/home';
import payment from '@/components/payment';
import orderGoods from "@/components/orderGoods";
import ClipboardJS from "@/plugin/clipboard/clipboard.js";
import {
toLogin
} from '@/libs/login.js';
import {
mapGetters
} from "vuex";
// #ifdef MP
import authorize from '@/components/Authorize';
import uQRCode from '@/js_sdk/Sansnn-uQRCode/uqrcode.js'
// #endif
export default {
components: {
payment,
home,
orderGoods,
// #ifdef MP
authorize
// #endif
},
data() {
return {
codeImg: '',
qrcodeSize: 100,
order_id: '',
evaluate: 0,
2023-05-23 17:37:49 +08:00
2023-05-15 10:12:22 +08:00
cartInfo: [], //购物车产品
orderInfo: {
systemStore: {},
pstatus: {}
}, //订单详情
system_store: {},
2023-05-23 17:37:49 +08:00
isWx: true,
2023-05-15 10:12:22 +08:00
isGoodsReturn: false, //是否为退款订单
status: {}, //订单底部按钮状态
isClose: false,
2023-05-23 17:37:49 +08:00
ispay: '微信支付',
topay: [{
name: '微信支付',
value: 'wx'
},
{
name: '支付宝支付',
value: 'zfb'
}
],
2023-05-15 10:12:22 +08:00
payMode: [{
name: "微信支付",
icon: "icon-weixinzhifu",
value: 'weixin',
title: '微信快捷支付'
},
{
name: "余额支付",
icon: "icon-yuezhifu",
value: 'yue',
title: '可用余额:',
number: 0
},
],
pay_close: false,
pay_order_id: '',
totalPrice: '0',
isAuto: false, //没有授权的不会自动授权
isShowAuth: false, //是否隐藏授权
id: 0, //订单id
uniId: '',
utils: this.$util,
type: 'normal'
};
},
computed: mapGetters(['isLogin', 'chatUrl', 'userInfo']),
onLoad: function(options) {
options.type == undefined || options.type == null ? this.type = 'normal' : this.type = options.type;
if (!options.order_id && !options.uniId) return this.$util.Tips({
title: '缺少参数'
}, {
tab: 3,
url: 1
});
this.$set(this, 'order_id', options.order_id);
},
onShow() {
2023-05-23 17:37:49 +08:00
this.getOrderInfo()
2023-05-15 10:12:22 +08:00
if (this.isLogin) {
this.getOrderInfo();
this.payMode[1].number = this.userInfo.nowMoney;
this.$set(this, 'payMode', this.payMode);
}
2023-05-23 17:37:49 +08:00
// else {
// toLogin();
// }
2023-05-15 10:12:22 +08:00
},
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
2023-05-23 17:37:49 +08:00
2023-05-15 10:12:22 +08:00
},
methods: {
kefuClick() {
location.href = this.chatUrl;
},
goGoodCall() {
let self = this
uni.navigateTo({
url: `/pages/customer_list/index?orderId=${self.order_id}`
})
},
openSubcribe: function(e) {
let page = e;
uni.showLoading({
title: '正在加载',
})
openOrderRefundSubscribe().then(res => {
uni.hideLoading();
uni.navigateTo({
url: page,
});
}).catch(() => {
uni.hideLoading();
});
},
/**
* 事件回调
*
*/
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
})
},
/**
* 打开地图
*
*/
showMaoLocation: function() {
if (!this.system_store.latitude || !this.system_store.longitude) return this.$util.Tips({
title: '缺少经纬度信息无法查看地图!'
});
uni.openLocation({
latitude: parseFloat(this.system_store.latitude),
longitude: parseFloat(this.system_store.longitude),
scale: 8,
name: this.system_store.name,
address: this.system_store.address + this.system_store.detailedAddress,
success: function() {
},
});
},
/**
* 关闭支付组件
*
*/
payClose: function() {
this.pay_close = false;
},
/**
* 打开支付组件
*
*/
pay_open: function() {
this.pay_close = true;
this.pay_order_id = this.orderInfo.orderId;
this.totalPrice = this.orderInfo.payPrice;
},
/**
* 支付成功回调
*
*/
pay_complete: function() {
this.pay_close = false;
this.pay_order_id = '';
this.getOrderInfo();
},
/**
* 支付失败回调
*
*/
pay_fail: function() {
this.pay_close = false;
this.pay_order_id = '';
},
/**
* 登录授权回调
*
*/
onLoadFun: function() {
this.getOrderInfo();
},
/**
* 获取订单详细信息
*
*/
getOrderInfo: function() {
let that = this;
uni.showLoading({
title: "正在加载中"
});
getOrderDetail(that.order_id).then(res => {
uni.hideLoading();
that.$set(that, 'orderInfo', res.data);
2023-05-23 17:37:49 +08:00
console.log(that.orderInfo, 'orderInfo')
2023-05-15 10:12:22 +08:00
that.$set(that, 'evaluate', res.data.status == 2 ? 2 : 0);
that.$set(that, 'system_store', res.data.systemStore);
that.$set(that, 'id', res.data.id);
that.$set(that, 'cartInfo', res.data.orderInfoList);
if (res.data.refundStatus != 0) {
that.isGoodsReturn = true;
};
if (that.orderInfo.shippingType == 2 && that.orderInfo.paid) that.markCode(res.data
.verifyCode);
2023-05-23 17:37:49 +08:00
if (that.orderInfo.refundStatus > 0) {
2023-05-15 10:12:22 +08:00
uni.setNavigationBarColor({
2023-05-23 17:37:49 +08:00
frontColor: '#ffffff',
backgroundColor: '#666666'
2023-05-15 10:12:22 +08:00
})
2023-05-23 17:37:49 +08:00
}
2023-05-15 10:12:22 +08:00
}).catch(err => {
uni.hideLoading();
that.$util.Tips({
title: err
}, '/pages/users/order_list/index');
});
},
/**
*
* 生成二维码
*/
markCode(text) {
qrcodeApi({
height: '145',
text: text,
width: '145'
}).then(res => {
this.codeImg = res.data.code
});
},
/**
*
* 剪切订单号
*/
// #ifndef H5
copy: function() {
let that = this;
uni.setClipboardData({
data: this.orderInfo.orderId
});
},
// #endif
/**
* 打电话
*/
goTel: function() {
uni.makePhoneCall({
phoneNumber: this.orderInfo.deliveryId
})
},
/**
* 设置底部按钮
*
*/
getOrderStatus: function() {
let orderInfo = this.orderInfo || {},
_status = orderInfo.pstatus || {
type: 0
},
status = {};
let type = parseInt(_status.type),
delivery_type = orderInfo.deliveryType,
seckill_id = orderInfo.seckillId ? parseInt(orderInfo.seckillId) : 0,
bargain_id = orderInfo.bargainId ? parseInt(orderInfo.bargainId) : 0,
combination_id = orderInfo.combinationId ? parseInt(orderInfo.combinationId) : 0;
status = {
type: type == 9 ? -9 : type,
class_status: 0
};
if (type == 1 && combination_id > 0) status.class_status = 1; //查看拼团
if (type == 2 && delivery_type == 'express') status.class_status = 2; //查看物流
if (type == 2) status.class_status = 3; //确认收货
if (type == 4 || type == 0) status.class_status = 4; //删除订单
if (!seckill_id && !bargain_id && !combination_id && (type == 3 || type == 4)) status.class_status =
2023-05-23 17:37:49 +08:00
5; //再次购买
2023-05-15 10:12:22 +08:00
this.$set(this, 'status', status);
},
/**
* 去拼团详情
*
*/
goJoinPink: function() {
uni.navigateTo({
url: '/pages/activity/goods_combination_status/index?id=' + this.orderInfo.pinkId,
});
},
/**
* 再此购买
*
*/
goOrderConfirm: function() {
2023-05-23 17:37:49 +08:00
this.$Order.getPreOrder("again", [{
2023-05-15 10:12:22 +08:00
orderNo: this.order_id
}]);
},
confirmOrder: function() {
let that = this;
uni.showModal({
title: '确认收货',
content: '为保障权益,请收到货确认无误后,再确认收货',
success: function(res) {
if (res.confirm) {
orderTake(that.id).then(res => {
return that.$util.Tips({
title: '操作成功',
icon: 'success'
}, function() {
that.getOrderInfo();
});
}).catch(err => {
return that.$util.Tips({
title: err
});
})
}
}
})
},
/**
*
* 删除订单
*/
delOrder: function() {
let that = this;
orderDel(this.id).then(res => {
return that.$util.Tips({
title: '删除成功',
icon: 'success'
}, {
tab: 3,
url: 1
});
}).catch(err => {
return that.$util.Tips({
title: err
});
});
},
cancelOrder() {
let self = this
uni.showModal({
title: '提示',
content: '确认取消该订单?',
success: function(res) {
if (res.confirm) {
orderCancel(self.orderInfo.id)
.then((data) => {
self.$util.Tips({
title: '取消成功'
}, {
tab: 3
})
})
.catch(() => {
self.$util.Tips({
title: err
})
self.getDetail();
});
} else if (res.cancel) {
console.log('用户点击取消');
}
}
});
},
}
}
</script>
2023-05-23 17:37:49 +08:00
<style lang="scss">
.container {
position: relative;
width: 100%;
height: 100%;
.bg {
width: 100%;
height: 100%;
z-index: 0;
image {
width: 100%;
height: 100%;
// overflow: hidden;
object-fit: cover;
}
}
.box {
position: absolute;
top: 110rpx;
width: 100%;
height: 1100rpx;
overflow: scroll;
padding-bottom: 100rpx;
.top {
margin-left: 42rpx;
width: 669rpx;
height: 137rpx;
display: flex;
align-items: center;
justify-content: space-around;
background: #fff;
border-radius: 20rpx;
.navigation {
width: 66rpx;
height: 66rpx;
background: url(@/static/images/shop/navigation.png);
background-size: 100% 100%;
}
.address {
width: 471rpx;
height: 70rpx;
.name {
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 400;
color: #000000;
}
.detail {
margin: 0;
font-size: 24rpx;
font-family: PingFang SC;
font-weight: 400;
color: #8C8C8C;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
.go {
width: 10rpx;
height: 16rpx;
background: url(@/static/images/shop/go.png);
background-size: 100% 100%;
}
}
.goodsDetail {
margin-top: 23rpx;
margin-left: 42rpx;
width: 669rpx;
background: #fff;
border-radius: 20rpx;
.boxs {
width: 100%;
height: 22rpx;
}
.tops {
margin-left: 26rpx;
display: flex;
justify-content: space-between;
.shopName {
font-size: 28rpx;
font-family: PingFang SC;
font-weight: 400;
color: #000000;
}
.state {
margin-right: 31rpx;
font-size: 26rpx;
font-family: PingFang SC;
font-weight: 400;
color: #EF1E5F;
}
}
.content {
position: relative;
margin-top: 32rpx;
width: 100%;
height: 260rpx;
display: flex;
justify-content: space-between;
align-items: center;
height: 110rpx;
.image {
margin-left: 35rpx;
}
.text {
width: 420rpx;
height: 100%;
margin-right: 60rpx;
.name {
font-size: 26rpx;
font-family: PingFang SC;
font-weight: 400;
color: #000000;
}
.model {
margin: 10rpx 0;
font-size: 24rpx;
font-family: PingFang SC;
font-weight: 400;
color: #B7B7B7;
}
.prices {
font-size: 26rpx;
font-family: PingFang SC;
font-weight: 400;
color: #E94343;
}
}
.sum {
position: absolute;
right: 33rpx;
bottom: 0rpx;
font-size: 26rpx;
font-family: PingFang SC;
font-weight: 400;
color: #E94343;
}
}
}
.price {
margin-top: 23rpx;
margin-left: 42rpx;
width: 669rpx;
height: 204rpx;
background: #fff;
border-radius: 20rpx;
.priceitems {
margin-top: 27rpx;
display: flex;
justify-content: space-between;
.itemsleft {
margin-left: 30rpx;
font-size: 28rpx;
font-family: PingFang SC;
font-weight: 400;
color: #000000;
}
.itemsright {
margin-right: 30rpx;
font-size: 28rpx;
font-family: PingFang SC;
font-weight: 400;
color: #000000;
}
}
}
.detail {
margin-top: 23rpx;
margin-left: 42rpx;
width: 669rpx;
height: 268rpx;
background: #fff;
border-radius: 20rpx;
.title {
margin-top: 24rpx;
margin-left: 29rpx;
font-size: 32rpx;
font-family: PingFang SC;
font-weight: 400;
color: #000000;
}
.detailitems {
margin-top: 27rpx;
display: flex;
justify-content: space-between;
.detailleft {
margin-left: 30rpx;
font-size: 28rpx;
font-family: PingFang SC;
font-weight: 400;
color: #000000;
}
.detailright {
margin-right: 30rpx;
font-size: 26rpx;
font-family: PingFang SC;
font-weight: 400;
color: #7F7F7F;
}
}
}
.pay {
margin-top: 23rpx;
margin-left: 42rpx;
width: 669rpx;
height: 228rpx;
background: #fff;
border-radius: 20rpx;
.title {
margin-top: 24rpx;
margin-left: 29rpx;
font-size: 32rpx;
font-family: PingFang SC;
font-weight: 400;
color: #000000;
}
.payment {
// display: flex;
.mode {
display: flex;
margin-left: 28rpx;
margin-top: 30rpx;
.wechat {
display: inline-block;
width: 40rpx;
height: 40rpx;
background: url(@/static/images/shop/wechat.png);
background-size: 100% 100%;
}
text {
font-size: 28rpx;
font-family: PingFang SC;
font-weight: 400;
color: #000000;
}
.zfb {
display: inline-block;
width: 40rpx;
height: 40rpx;
background: url(@/static/images/shop/zfb.png);
background-size: 100% 100%;
}
.radio {
width: 34rpx;
height: 34rpx;
background: url(@/static/images/shop/nochecked.png);
background-size: 100% 100%;
margin-left: 400rpx;
}
.radioNo {
width: 34rpx;
height: 34rpx;
background: url(@/static/images/shop/checked.png);
background-size: 100% 100%;
margin-left: 400rpx;
}
}
}
}
}
.zf {
position: fixed;
bottom: 0;
width: 100%;
height: 176rpx;
background: #fff;
.zfNumber {
position: absolute;
left: 52rpx;
top: 58rpx;
font-size: 28rpx;
font-family: PingFang SC;
font-weight: 400;
color: #0C0C0C;
text {
font-size: 35rpx;
font-family: PingFang SC;
font-weight: 400;
color: #000000;
}
}
.closeOrder {
position: absolute;
top: 48rpx;
right: 230rpx;
width: 179rpx;
height: 64rpx;
text-align: center;
line-height: 64rpx;
border: 1px solid #808080;
border-radius: 31rpx;
font-size: 29rpx;
font-family: PingFang SC;
font-weight: 400;
color: #000000;
}
.orderPay {
position: absolute;
top: 48rpx;
right: 34rpx;
width: 178rpx;
height: 63rpx;
line-height: 63rpx;
text-align: center;
background: linear-gradient(0deg, #FF7495 0%, #F22360 100%);
border-radius: 31rpx;
font-size: 29rpx;
font-family: PingFang SC;
font-weight: 400;
color: #FFFFFF;
}
}
2023-05-15 10:12:22 +08:00
}
</style>