4 changed files with 484 additions and 52 deletions
-
12src/pages.json
-
92src/subpackage/order/pages/mall/check_logistic/check_logistic.vue
-
25src/subpackage/order/pages/mall/refund_operate/refund_operate.vue
-
319src/subpackage/order/pages/mall/send_out/send_out.vue
@ -0,0 +1,92 @@ |
|||||
|
<template> |
||||
|
<view class="check-logistic"> |
||||
|
<view class="package-list"> |
||||
|
<view class="pl-item" v-for="i in 2" :key="i"> |
||||
|
<view class="pi-tit">包裹1</view> |
||||
|
<view class="pi-express"><view>快递:顺丰速递 SF1090317923085</view><view>复制</view></view> |
||||
|
<view class="pi-goods"> |
||||
|
<view class="pg-item" v-for="i in 4" :key="i"> |
||||
|
<image></image> |
||||
|
<view>克洛羽毛球…</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="pi-total">共10件商品</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
|
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style lang="scss"> |
||||
|
@import '~style/public.scss'; |
||||
|
.package-list{ |
||||
|
padding: 24upx; |
||||
|
.pl-item{ |
||||
|
margin-bottom: 24upx; |
||||
|
padding: 20upx; |
||||
|
border-radius: 10upx; |
||||
|
background-color: #fff; |
||||
|
.pi-tit{ |
||||
|
margin-bottom: 30upx; |
||||
|
line-height: 40upx; |
||||
|
font-size: 28upx; |
||||
|
font-weight: 500; |
||||
|
color: #1a1a1a; |
||||
|
} |
||||
|
.pi-express{ |
||||
|
margin-bottom: 20upx; |
||||
|
@include centerFlex(flex-start); |
||||
|
>view{ |
||||
|
font-size: 28upx; |
||||
|
line-height: 40upx; |
||||
|
color: #1a1a1a; |
||||
|
@include textHide(1); |
||||
|
&+view{ |
||||
|
flex-shrink: 0; |
||||
|
margin-left: 20upx; |
||||
|
color: $themeColor; |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
.pi-goods{ |
||||
|
display: flex; |
||||
|
align-items: flex-start; |
||||
|
margin-bottom: 30upx; |
||||
|
.pg-item{ |
||||
|
flex-shrink: 0; |
||||
|
flex-grow: 0; |
||||
|
>image{ |
||||
|
display: block; |
||||
|
width: 152upx; |
||||
|
height: 152upx; |
||||
|
border-radius: 10upx; |
||||
|
background-color: skyblue; |
||||
|
} |
||||
|
>view{ |
||||
|
width: 152upx; |
||||
|
line-height: 34upx; |
||||
|
font-size: 24upx; |
||||
|
color: #1a1a1a; |
||||
|
@include textHide(1); |
||||
|
} |
||||
|
&:not(:last-child){ |
||||
|
margin-right: 20upx; |
||||
|
} |
||||
|
|
||||
|
|
||||
|
} |
||||
|
} |
||||
|
.pi-total{ |
||||
|
font-size: 24upx; |
||||
|
line-height: 34upx; |
||||
|
color: #9a9a9d; |
||||
|
@include textHide(1); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
</style> |
@ -0,0 +1,25 @@ |
|||||
|
<template> |
||||
|
<view class="refund-operate"> |
||||
|
<view class="ro-num">订单编号 sc20 0822 0815 6894</view> |
||||
|
</view> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
|
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style lang="scss"> |
||||
|
@import '~style/public.scss'; |
||||
|
.refund-operate{ |
||||
|
padding: 40upx 24upx 140upx; |
||||
|
.ro-num{ |
||||
|
margin-bottom: 40upx; |
||||
|
font-size: 28upx; |
||||
|
line-height: 40upx; |
||||
|
color: #1a1a1a; |
||||
|
@include textHide(1); |
||||
|
} |
||||
|
} |
||||
|
</style> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue