123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- <template>
- <view class="card">
- <view class="user-name">
- <view class="name">
- <image class="header-img"
- src="https://ts3.cn.mm.bing.net/th?id=OIP-C.uMf5AX3a6yYpIhpEkyDxiQAAAA&w=250&h=250&c=8&rs=1&qlt=90&o=6&dpr=2&pid=3.1&rm=2"
- mode=""></image>
- <text>Trinity 自由比格</text>
- </view>
- <text class="order-status">{{deliveryStatus}}</text>
- </view>
- <view class="order-detail" :style="model">
- <view class="detail">
- <image class="order-img"
- src="https://img12.360buyimg.com/jdcms/s460x460_jfs/t1/226637/16/19995/180517/66696f86Fa90c7d49/3bc094e1eb7aeb12.jpg.avif"
- mode=""></image>
- <view class="detail-right">
- <view class="title-price">
- <view class="title">
- OATLY噢麦力 咖啡大师…
- </view>
- <view class="price">
- <text style="font-size: 20rpx;">¥</text>
- <text>133</text>.
- <text style="font-size: 20rpx;">22</text>
- </view>
- </view>
- <view class="specifications">
- <view class="title">
- 咖啡大师燕麦奶250ml*6瓶
- </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>133</text>.
- <text style="font-size: 20rpx;">22</text>
- </view>
- </view>
- <view class="model" v-if="itemInfo.status == 0">
- </view>
- </view>
- <view class="remarks" v-if="itemInfo.status == 2">
- <view style="margin-right: 30rpx; color: #222;">
- 商家备注
- </view>
- <view style="color: rgba(34, 34,34, .6);">
- 买家急用,仓库尽早发货
- </view>
- </view>
- <view class="btn-list" v-if="itemInfo.status !==0&&itemInfo.status !=3 ">
- <button class="btn-1" v-if="itemInfo.status == 1">缴纳保证金</button>
- <button class="btn-2" v-if="itemInfo.status == 2">备注</button>
- <button class="btn-1" v-if="itemInfo.status == 2">发货</button>
- <button class="btn-2" v-if="itemInfo.status == 4">查看物流</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 == 1) {
- return '待缴纳保证金'
- }else if (this.itemInfo.status == 2) {
- return '待团长发货'
- }else if (this.itemInfo.status == 3) {
- return '待总部发货'
- }else if (this.itemInfo.status == 4) {
- 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, .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;
- }
- }
- }
- </style>
|