127 lines
3.1 KiB
Vue
127 lines
3.1 KiB
Vue
<template>
|
|
<view class="shop-item">
|
|
<view class="item-title" @click="navTo">
|
|
<view>{{datas.number}}</view>
|
|
<view>待付款</view>
|
|
</view>
|
|
<view class="item-body" @click="navTo">
|
|
<view class="body-content">
|
|
<view v-for="(item,index) in datas.goods_list" :key="index">
|
|
<image class="image" :src="item.imgs"></image>
|
|
</view>
|
|
</view>
|
|
<view class="all">共5件商品, 总金额 <text>¥{{datas.total}}</text> </view>
|
|
</view>
|
|
<view v-if="type==1" class="item-btn">
|
|
<view style="width: 80px;"><up-button size="small" plain color="#989898" shape="circle">取消订单</up-button></view>
|
|
<view style="width: 80px;"><up-button size="small" plain color="#20B128" shape="circle">立即支付</up-button></view>
|
|
</view>
|
|
<view v-if="type==2||type==0" class="item-btn">
|
|
<view style="width: 80px;"><up-button size="small" plain color="#989898" shape="circle">申请售后</up-button></view>
|
|
<view style="width: 80px;"><up-button size="small" plain color="#20B128" shape="circle">确认收货</up-button></view>
|
|
<view style="width: 80px;"><up-button size="small" plain color="#20B128" shape="circle">再次购买</up-button></view>
|
|
</view>
|
|
<view v-if="type==3" class="item-close">
|
|
<view class="title">
|
|
<view class="type">退款申请中</view>
|
|
<view>等待商家处理</view>
|
|
</view>
|
|
<up-icon name="arrow-right"></up-icon>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
const props = defineProps({
|
|
type:{
|
|
type: Number,
|
|
default: 0
|
|
},
|
|
datas:{
|
|
type: Object,
|
|
default: ()=>{}
|
|
}
|
|
})
|
|
|
|
const navTo = ()=>{
|
|
uni.navigateTo({
|
|
url: `/pagesOrder/detail/detail?type=0&id=${props.datas.id}`
|
|
})
|
|
|
|
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
|
|
.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;
|
|
color: #989898;
|
|
|
|
|
|
.image{
|
|
width: 120rpx;
|
|
height: 120rpx;
|
|
margin-right: 20rpx;
|
|
}
|
|
.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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style> |