123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- <!-- 售后列表内容 -->
- <template>
- <view class="productItem">
- <view class="title">
- <view class="shopName">
- 订单号:{{ item.orderCode }}
- </view>
- </view>
- <view class="content" v-for="(i, index) in item.cartInfo">
- <image class="img"
- :src="JSON.parse(i.img)[0].url"
- mode=""
- @click.stop="goGoodsCon(i)"
- ></image>
- <view class="info">
- <view class="infoTitle">
- {{ i.productTitle }}
- </view>
- <view class="infoSku">
- <view class="sku">
- {{ i.productAttrTitle || '' }}
- </view>
- <view class="num">
- x {{ 1 }}
- </view>
- </view>
- <view class="infoMoney">
- 退款:<view class="red">
- ¥{{ i.price }}
- </view>
- </view>
- </view>
- </view>
- <view class="money">
- <view class="status">
- <view v-if="item.salesState === 0">
- <view v-if="item.state === 0">商家处理中</view>
- <view v-if="item.state === 1">售后中</view>
- <view v-if="item.state === 2">等待商家收货</view>
- <view v-if="item.state === 3">已完成</view>
- </view>
- <view v-if="item.salesState === 1">
- 已撤销
- </view>
- <view v-if="item.salesState === 2">
- 商家拒绝
- </view>
- </view>
- <view class="refundMoney">
- 退款:<view class="red">
- ¥{{ item.refundAmount }}
- </view>
- </view>
- </view>
- <view class="btns">
- <view class="button def"
- @click="toDetail"
- v-if="item.state === 2"
- >删除记录</view>
- <view class="button greenBtn" @click="toDetail(item)">查看详情</view>
- </view>
- </view>
- </template>
- <script>
- export default {
- props: {
- item: {
- type: Object,
- default: () => ({})
- }
- },
- methods:{
- // 跳转商品
- goGoodsCon(item) {
- uni.navigateTo({
- url: "/pages/product/detail?id=" + item.productId
- })
- },
- // 跳转售后详情
- toDetail (item) {
- console.log(item)
- uni.navigateTo({
- url: "/pages/refund/detail?orderId="+item.orderCode+"&id="+item.id
- });
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .productItem{
- margin: 10rpx 0;
- background-color: #FFF;
- .title{
- height: 80rpx;
- padding: 0 30rpx;
- color: #333;
- font-size: 28rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .content{
- padding: 20rpx 30rpx;
- border: 2rpx solid #F3F4F5;
- display: flex;
- .img{
- width: 180rpx;
- height: 180rpx;
- }
- .info{
- flex: 1;
- margin-left: 16rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- .infoTitle{
- width: 100%;
- height: 80rpx;
- font-size: 28rpx;
- color: #333333;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .infoSku{
- font-size: 24rpx;
- color: #999999;
- display: flex;
- justify-content: space-between;
- }
- .infoMoney{
- font-size: 24rpx;
- }
- }
- }
- .money{
- height: 80rpx;
- padding: 0 30rpx;
- font-size: 28rpx;
- font-family: PingFang SC;
- color: #333333;
- border: 2rpx solid #F3F4F5;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .btns{
- padding: 20rpx 30rpx;
- display: flex;
- justify-content: flex-end;
- .button{
- width: 160rpx;
- height: 58rpx;
- margin: 0 10rpx;
- border-radius: 180rpx;
- font-size: 24rpx;
- line-height: 54rpx;
- text-align: center;
- }
- .def{
- color: #DDD;
- border: 2rpx solid #DDDDDD;
- }
- .greenBtn{
- color: #FFF;
- background-color: #39b54a;
- border: 2rpx solid #39b54a;
- }
- }
- .red{
- display: inline-block;
- color: #EB3729;
- }
- }
- </style>
|