|
|
<template> <view class="flex-col page"> <view class="flex-col group_3"> <view class="flex-col section_2"> <view class="bottom-group justify-center"> <text class="text_2">发货单号:</text> <text class="text_3">9847583947839743-1</text> </view> <view class="flex-row group_4"> <text class="text_4">客服电话:</text> <text class="text_5">010737488947</text> </view> </view> <view class="flex-col list"> <view class="list-item flex-col" :key="i" v-for="(item, i) in listD8Bhg9Dz"> <view class="top-group flex-row"> <image src="https://codefun-proj-user-res-1256085488.cos.ap-guangzhou.myqcloud.com/62677e395a7e3f03107ffc5f/62677e4a35a7e10011e93a80/16509497780738649955.png" class="image_6" /> <text class="text_6">发货,您的包裹已邮寄,请注意查收</text> </view> <text class="text_8">2022-03-16 16:27</text> </view></view > </view> </view></template>
<script> export default { data() { return { listD8Bhg9Dz: [null, null, null, null, null, null, null, null, null] }; }, };</script>
<style scoped lang="css"> .bottom-group { position: relative; } .list-item { padding: 5rpx 6rpx; } .top-group { color: rgb(51, 51, 51); font-size: 28rpx; font-weight: 500; line-height: 40rpx; white-space: nowrap; } .text_8 { margin-left: 76rpx; color: rgb(119, 119, 119); font-size: 24rpx; font-weight: 500; line-height: 34rpx; white-space: nowrap; } .image_6 { width: 56rpx; height: 56rpx; } .text_6 { margin-left: 20rpx; } .page { background-color: #f6f6f6; width: 100%; overflow-y: auto; height: 100%; } .group_3 { padding-top: 2rpx; flex: 1 1 auto; overflow-y: auto; } .section_2 { padding: 40rpx 32rpx; background-color: rgb(255, 255, 255); } .list { margin-top: 30rpx; padding: 35rpx 26rpx 16rpx; background-color: rgb(255, 255, 255); } .group_4 { margin-top: 20rpx; } .text_2 { color: rgb(119, 119, 119); font-size: 32rpx; font-weight: 500; line-height: 44rpx; white-space: nowrap; position: absolute; left: 0; top: 50%; transform: translateY(-50%); } .text_3 { color: rgb(51, 51, 51); font-size: 32rpx; font-weight: 500; line-height: 44rpx; white-space: nowrap; } .text_4 { color: rgb(119, 119, 119); font-size: 32rpx; font-weight: 500; line-height: 44rpx; white-space: nowrap; } .text_5 { margin-left: 10rpx; color: rgb(43, 102, 234); font-size: 32rpx; font-weight: 500; line-height: 44rpx; white-space: nowrap; }</style>
|