2024-04-26 18:04:56 +08:00
|
|
|
|
<template>
|
2024-05-13 18:43:53 +08:00
|
|
|
|
<view class="shop-item">
|
|
|
|
|
<view class="item-title" @click="navTo">
|
2024-06-08 22:50:09 +08:00
|
|
|
|
<view>{{order_id}}</view>
|
2024-05-13 18:43:53 +08:00
|
|
|
|
<view v-if="datas.paid==0">
|
|
|
|
|
<text>待付款</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view v-else>
|
2024-06-11 15:12:49 +08:00
|
|
|
|
<text v-if="datas.status==0">待核销</text>
|
|
|
|
|
<text v-if="datas.status==1">待核销</text>
|
2024-05-13 18:43:53 +08:00
|
|
|
|
<text v-if="datas.status==2||datas.status==3">已完成</text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="item-body" @click="navTo">
|
|
|
|
|
<view class="body-content">
|
2024-06-11 15:12:49 +08:00
|
|
|
|
<view>
|
|
|
|
|
<view v-for="(item,index) in datas.goods_list" :key="index"
|
|
|
|
|
style="display: flex;margin-bottom: 20rpx;">
|
2024-06-05 18:45:30 +08:00
|
|
|
|
<image class="image" :src="item.image"></image>
|
2024-06-11 15:12:49 +08:00
|
|
|
|
<view style="width: 520rpx;">
|
|
|
|
|
<view class="" style="display: flex;justify-content: space-between;">
|
2024-06-08 22:50:09 +08:00
|
|
|
|
<view>
|
|
|
|
|
{{item.store_name}}
|
|
|
|
|
</view>
|
2024-06-11 15:12:49 +08:00
|
|
|
|
<view style="font-size: 32rpx;">
|
2024-06-08 22:50:09 +08:00
|
|
|
|
¥{{item.price}}
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-06-11 15:12:49 +08:00
|
|
|
|
<view class="" style="display: flex;justify-content: space-between;">
|
|
|
|
|
<view>
|
2024-06-09 20:32:49 +08:00
|
|
|
|
{{item.unit_name}}
|
2024-06-08 22:50:09 +08:00
|
|
|
|
</view>
|
2024-06-11 15:12:49 +08:00
|
|
|
|
<view style="font-size: 32rpx;">
|
2024-06-08 22:50:09 +08:00
|
|
|
|
x{{item.cart_num}}
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-05-13 18:43:53 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-06-08 22:50:09 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <view
|
2024-05-13 18:43:53 +08:00
|
|
|
|
style="display: flex;flex-direction: column;align-items: center;justify-content: center;width: 100rpx;">
|
|
|
|
|
<up-icon name="arrow-right-double" color="#20B128"></up-icon>
|
2024-06-08 22:50:09 +08:00
|
|
|
|
</view> -->
|
2024-05-13 18:43:53 +08:00
|
|
|
|
</view>
|
2024-06-26 16:48:29 +08:00
|
|
|
|
<view class="all">共 {{datas.goods_count}} 件商品, 总金额 <text>¥{{datas.pay_price}}</text> </view>
|
2024-05-13 18:43:53 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view v-if="datas.paid==0" class="item-btn">
|
|
|
|
|
<view style="width: 80px;"><up-button size="small" plain color="#989898" shape="circle"
|
|
|
|
|
@click="cancleOrder">取消订单</up-button></view>
|
|
|
|
|
<view style="width: 80px;"><up-button size="small" color="#20B128" shape="circle"
|
|
|
|
|
@click="rePay">立即支付</up-button></view>
|
|
|
|
|
</view>
|
|
|
|
|
<view v-else class="item-btn">
|
2024-06-15 17:29:39 +08:00
|
|
|
|
<view @click="showVerifyFn" v-if="datas.status==1" style="width: 80px;">
|
2024-06-12 17:54:00 +08:00
|
|
|
|
<up-button size="small" plain color="#20B128" shape="circle">核销码</up-button>
|
|
|
|
|
</view>
|
2024-05-13 18:43:53 +08:00
|
|
|
|
<view @click="purchaseAgain" v-if="datas.status==2||datas.status==3" style="width: 80px;"><up-button
|
|
|
|
|
size="small" plain color="#20B128" shape="circle">再次购买</up-button></view>
|
|
|
|
|
<view @click="navTo" style="width: 80px;"><up-button size="small" plain color="#20B128"
|
|
|
|
|
shape="circle">查看详情</up-button></view>
|
2024-06-08 13:42:16 +08:00
|
|
|
|
<view @click="applySh" style="width: 80px;" v-if="datas.status == 1 || datas.status == 2"><up-button
|
|
|
|
|
size="small" plain color="#ccc" shape="circle">申请售后</up-button></view>
|
2024-05-13 18:43:53 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-06-11 15:58:53 +08:00
|
|
|
|
|
2024-06-15 17:29:39 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-04-26 18:04:56 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup>
|
2024-06-11 15:58:53 +08:00
|
|
|
|
import {
|
|
|
|
|
ref,
|
2024-06-11 18:20:23 +08:00
|
|
|
|
reactive,
|
|
|
|
|
nextTick
|
2024-06-11 15:58:53 +08:00
|
|
|
|
} from "vue"
|
2024-05-13 18:43:53 +08:00
|
|
|
|
// 订单状态(0:待发货;1:待收货;2:已完成;3:已完成)
|
|
|
|
|
const props = defineProps({
|
|
|
|
|
type: {
|
|
|
|
|
type: Number,
|
|
|
|
|
default: 0
|
|
|
|
|
},
|
|
|
|
|
datas: {
|
|
|
|
|
type: Object,
|
|
|
|
|
default: () => {}
|
2024-06-08 17:57:40 +08:00
|
|
|
|
},
|
|
|
|
|
status: {
|
|
|
|
|
type: String,
|
|
|
|
|
default: ''
|
2024-06-08 22:50:09 +08:00
|
|
|
|
},
|
|
|
|
|
order_id: {
|
|
|
|
|
type: String,
|
|
|
|
|
default: '0'
|
2024-05-13 18:43:53 +08:00
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const navTo = () => {
|
2024-06-12 17:54:00 +08:00
|
|
|
|
if (props.datas.status == -1) {
|
2024-06-08 17:57:40 +08:00
|
|
|
|
uni.navigateTo({
|
2024-06-12 17:54:00 +08:00
|
|
|
|
url: "/pages/afterSales/afterSalesOrderDetail",
|
|
|
|
|
success(res) {
|
|
|
|
|
res.eventChannel.emit('afterSalesDetail', props.datas)
|
|
|
|
|
}
|
2024-06-08 17:57:40 +08:00
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: `/pagesOrder/detail/detail?type=${props.datas.paid}&id=${props.datas.id}`
|
|
|
|
|
})
|
|
|
|
|
}
|
2024-05-13 18:43:53 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const emit = defineEmits(['cancleOrder', 'rePay', 'takeOrder', 'purchaseAgain']);
|
|
|
|
|
const cancleOrder = () => {
|
|
|
|
|
emit('cancleOrder', props.datas)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const takeOrder = () => {
|
|
|
|
|
emit('takeOrder', props.datas)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const purchaseAgain = () => {
|
|
|
|
|
emit('purchaseAgain', props.datas)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const rePay = () => {
|
|
|
|
|
emit('rePay', props.datas)
|
|
|
|
|
}
|
2024-06-08 13:42:16 +08:00
|
|
|
|
|
|
|
|
|
const applySh = () => {
|
|
|
|
|
emit('applyAfterSales', props.datas)
|
|
|
|
|
}
|
2024-06-11 15:58:53 +08:00
|
|
|
|
|
2024-06-15 17:29:39 +08:00
|
|
|
|
const showVerifyFn = () => {
|
|
|
|
|
emit('showVerifyFn', props.datas)
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-11 15:58:53 +08:00
|
|
|
|
const showVerifyPop = ref(false)
|
|
|
|
|
const options = reactive({
|
|
|
|
|
width: 500, // 宽度 单位rpx
|
|
|
|
|
height: 100, // 高度 单位rpx
|
|
|
|
|
code: props.datas.verify_code, // 生成条形码的值
|
|
|
|
|
}, )
|
2024-04-26 18:04:56 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
2024-05-13 18:43:53 +08:00
|
|
|
|
.shop-item {
|
|
|
|
|
width: 710rpx;
|
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border-radius: 14rpx;
|
|
|
|
|
padding: 20rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
|
|
.item-title {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.item-body {
|
|
|
|
|
margin: 20rpx 0;
|
|
|
|
|
|
|
|
|
|
.body-content {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
color: #989898;
|
|
|
|
|
|
|
|
|
|
.image {
|
|
|
|
|
width: 120rpx;
|
|
|
|
|
height: 120rpx;
|
|
|
|
|
margin-right: 20rpx;
|
|
|
|
|
border-radius: 14rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #444;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tips {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
margin-top: 10rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.all {
|
|
|
|
|
text-align: right;
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
|
|
|
|
|
text {
|
|
|
|
|
color: #F55726;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.item-btn {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
|
|
|
|
|
view {
|
|
|
|
|
width: 80rpx;
|
|
|
|
|
margin-left: 20rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.item-close {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
background-color: #F6F6F6;
|
|
|
|
|
padding: 15rpx;
|
|
|
|
|
border-radius: 14rpx;
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
|
|
.type {
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
margin-right: 20rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-04-26 18:04:56 +08:00
|
|
|
|
</style>
|