123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268 |
- <template>
- <view class="card" @click="$emit('toDetail', itemInfo)">
- <view class="user-name">
- <view class="name">
- <image class="header-img" :src="itemInfo.member.avatar" mode=""></image>
- <text>{{ itemInfo.member.nickname }}</text>
- </view>
- <text
- class="order-status"
- :style="
- this.itemInfo.status == '0' || this.itemInfo.status == '1'
- ? 'color:#444'
- : ''
- "
- >{{ deliveryStatus }}</text
- >
- </view>
- <view class="order-detail">
- <view class="detail">
- <image class="order-img" :src="itemInfo.goods.image" mode=""></image>
- <view class="detail-right">
- <view class="title-price">
- <view class="title"> {{ itemInfo.goods.name_cn }}</view>
- <view class="price">
- <text style="font-size: 20rpx">¥</text>
- <text>{{ itemInfo.goods.price.split(".")[0] }}</text
- >.
- <text style="font-size: 20rpx">{{
- itemInfo.goods.price.split(".")[1]
- }}</text>
- </view>
- </view>
- <view class="specifications">
- <view class="title"> {{ itemInfo.goods.sku_item[0].item }} </view>
- <text>x1</text>
- </view>
- </view>
- </view>
- <view class="price-detail">
- <text style="color: #222; font-size: 24rpx">{{
- "共1件商品" + " "
- }}</text>
- <text style="font-size: 28rpx">买家实付</text>
- <view class="price">
- <text style="font-size: 20rpx">¥</text>
- <text>{{
- itemInfo.order_goods.total_amount.toFixed(2).split(".")[0]
- }}</text
- >.
- <text style="font-size: 20rpx">{{
- itemInfo.order_goods.total_amount.toFixed(2).split(".")[1]
- }}</text>
- </view>
- </view>
- </view>
- <view class="btn-list">
- <button
- disabled
- class="btn-2"
- :disabled="itemInfo.status == 3"
- :style="itemInfo.status == 3 ? 'opacity: 0.5' : ''"
- v-if="itemInfo.status == 0 || itemInfo.status == 3"
- @click.stop="$emit('platformIntervene', itemInfo)"
- >
- 平台介入
- </button>
- <button
- class="btn-1"
- v-if="itemInfo.status == 0 || itemInfo.status == 3"
- @click.stop="$emit('refuseRefund', itemInfo)"
- >
- 拒绝申请
- </button>
- <button
- class="btn-3"
- v-if="itemInfo.status == 0 || itemInfo.status == 3"
- @click.stop="$emit('agreeRefund', itemInfo)"
- >
- 同意退款
- </button>
- <button
- class="btn-2"
- v-if="itemInfo.status == 1"
- @click.stop="$emit('openPop', itemInfo)"
- >
- 删除
- </button>
- <button class="btn-2" v-if="itemInfo.status == 1">查看详情</button>
- </view>
- </view>
- </template>
- <script>
- export default {
- props: {
- itemInfo: {
- typeof: Object,
- default: {},
- },
- },
- computed: {
- model() {
- if (this.itemInfo.status == 0) {
- return "filter: blur(5px);";
- }
- },
- deliveryStatus() {
- if (this.itemInfo.status == "0") {
- return "待退款";
- } else if (this.itemInfo.status == "3") {
- return "平台介入";
- } else if (this.itemInfo.status == "2") {
- return "拒绝退款";
- } else if (this.itemInfo.status == "1") {
- return "已退款";
- }
- },
- },
- data() {
- return {};
- },
- };
- </script>
- <style scoped lang="scss">
- .card {
- background-color: #fff;
- border-radius: 16rpx;
- padding: 0 20rpx;
- padding-bottom: 20rpx;
- margin-bottom: 20rpx;
- .user-name {
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 84rpx;
- border-bottom: 2rpx solid rgba(151, 151, 151, 0.2);
- .name {
- display: flex;
- align-items: center;
- font-size: 24rpx;
- color: #333;
- .header-img {
- width: 40rpx;
- height: 40rpx;
- border-radius: 50%;
- margin-right: 12rpx;
- }
- }
- .order-status {
- font-size: 24rpx;
- color: #f83224;
- }
- }
- .order-detail {
- margin-top: 22rpx;
- position: relative;
- .detail {
- display: flex;
- .order-img {
- width: 180rpx;
- height: 180rpx;
- border-radius: 10rpx;
- margin-right: 20rpx;
- }
- .detail-right {
- width: 70%;
- .title-price {
- display: flex;
- font-size: 28rpx;
- justify-content: space-between;
- align-items: center;
- .title {
- width: 330rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- }
- .specifications {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 28rpx;
- color: #777;
- margin-top: 10rpx;
- .title {
- width: 330rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- }
- }
- }
- }
- .price-detail {
- display: flex;
- justify-content: flex-end;
- align-items: flex-end;
- margin-top: 20rpx;
- .price {
- font-weight: 600;
- }
- }
- .remarks {
- display: flex;
- font-size: 28rpx;
- background-color: #f4f4f4;
- border-radius: 10rpx;
- padding: 14rpx 20rpx;
- margin-top: 20rpx;
- }
- .btn-list {
- display: flex;
- justify-content: flex-end;
- margin-top: 30rpx;
- .btn-1 {
- font-size: 28rpx;
- color: #f83224;
- border: 2rpx solid #f83224;
- background-color: #fff;
- margin: 0;
- border-radius: 34rpx;
- min-width: 162rpx;
- margin-left: 20rpx;
- }
- .btn-2 {
- font-size: 28rpx;
- color: #222;
- border: 2rpx solid #979797;
- background-color: #fff;
- margin: 0;
- border-radius: 34rpx;
- min-width: 162rpx;
- margin-left: 20rpx;
- }
- .btn-3 {
- font-size: 28rpx;
- color: #fff;
- background-color: #f83224;
- margin: 0;
- border-radius: 34rpx;
- min-width: 162rpx;
- margin-left: 20rpx;
- }
- }
- }
- </style>
|