|
|
<template> <view class="flex-col page"> <view class="flex-col group_4"> <view class="flex-col"> <view class="flex-col section_2"> <view class="justify-center group_5"> <text class="text_2">全部</text> <text class="text_3">待确认</text> <text class="text_4">评级中</text> <text class="text_5">待付款</text> <text class="text_6">待收货</text> <view class="section_3"> </view> <image src="https://codefun-proj-user-res-1256085488.cos.ap-guangzhou.myqcloud.com/62677e395a7e3f03107ffc5f/62677e4a35a7e10011e93a80/16509497798644145968.png" class="image_6" /> </view> <view class="section_4"> </view> </view> <view class="flex-col group_6"> <view class="flex-col section_5"> <view class="justify-between"> <view class="flex-row group_8"> <image src="https://codefun-proj-user-res-1256085488.cos.ap-guangzhou.myqcloud.com/62677e395a7e3f03107ffc5f/62677e4a35a7e10011e93a80/16509497798740970822.png" class="image_7" /> <text class="text_7">在线送评</text> </view> <text class="text_8">待确认</text> </view> <view class="justify-between group_9"> <view class="flex-row"> <text>李丽丽</text> <text class="text_10">15273936409</text> </view> <text>共5件</text> </view> <view class="justify-between group_11"> <text class="text_12">更多</text> <view class="flex-row"> <view class="flex-col items-center text-wrapper"> <text>取消</text> </view> <view class="flex-col items-center text-wrapper_1"> <text>寄送藏品</text> </view> </view> </view> </view> <view class="section_6"> </view> </view> </view> </view> </view></template>
<script> export default { data() { return {}; }, };</script>
<style scoped lang="css"> .page { background-color: #f6f6f6; width: 100%; overflow-y: auto; height: 100%; } .group_4 { flex: 1 1 auto; overflow-y: auto; } .section_2 { padding-left: 38rpx; padding-right: 32rpx; background-color: rgb(255, 255, 255); } .group_6 { padding: 2rpx 0 16rpx; } .group_5 { padding: 34rpx 0 14rpx; } .section_4 { margin-left: 110rpx; background-color: rgb(231, 162, 63); border-radius: 4rpx; width: 68rpx; height: 8rpx; } .section_5 { padding: 40rpx 32rpx 0; background-color: rgb(255, 255, 255); } .section_6 { margin-top: 1018rpx; align-self: center; background-color: rgb(0, 0, 0); border-radius: 4rpx; width: 196rpx; height: 8rpx; } .text_2 { color: rgb(153, 153, 153); font-size: 28rpx; font-weight: 500; line-height: 40rpx; white-space: nowrap; } .text_3 { margin-left: 46rpx; color: rgb(51, 51, 51); font-size: 28rpx; font-weight: 500; line-height: 40rpx; white-space: nowrap; } .text_4 { margin-left: 44rpx; color: rgb(153, 153, 153); font-size: 28rpx; font-weight: 500; line-height: 40rpx; white-space: nowrap; } .text_5 { margin-left: 46rpx; color: rgb(153, 153, 153); font-size: 28rpx; font-weight: 500; line-height: 40rpx; white-space: nowrap; } .text_6 { margin-left: 46rpx; color: rgb(153, 153, 153); font-size: 28rpx; font-weight: 500; line-height: 40rpx; white-space: nowrap; } .section_3 { margin-left: 36rpx; margin-top: 4rpx; background-color: rgb(246, 246, 246); border-radius: 1rpx; width: 2rpx; height: 34rpx; } .image_6 { margin: 4rpx 0 4rpx 32rpx; width: 36rpx; height: 32rpx; } .group_9 { margin-top: 30rpx; color: rgb(51, 51, 51); font-size: 32rpx; font-weight: 500; line-height: 44rpx; white-space: nowrap; } .group_11 { margin-top: 26rpx; padding: 32rpx 0 28rpx; border-top: solid 2rpx rgb(239, 239, 239); } .group_8 { color: rgb(153, 153, 153); font-size: 28rpx; line-height: 40rpx; white-space: nowrap; } .text_8 { color: rgb(43, 102, 234); font-size: 28rpx; font-weight: 500; line-height: 40rpx; white-space: nowrap; } .text_12 { align-self: center; color: rgb(153, 153, 153); font-size: 28rpx; line-height: 40rpx; white-space: nowrap; } .image_7 { width: 40rpx; height: 40rpx; } .text_7 { margin-left: 12rpx; } .text_10 { margin-left: 21rpx; } .text-wrapper { padding: 10rpx 0; color: rgb(153, 153, 153); font-size: 28rpx; font-weight: 500; line-height: 40rpx; white-space: nowrap; border-radius: 32rpx; width: 160rpx; height: 64rpx; border: solid 2rpx rgb(153, 153, 153); } .text-wrapper_1 { margin-left: 18rpx; padding: 10rpx 0; color: rgb(231, 162, 63); font-size: 28rpx; font-weight: 500; line-height: 40rpx; white-space: nowrap; border-radius: 32rpx; width: 160rpx; height: 64rpx; border: solid 2rpx rgb(231, 162, 63); }</style>
|