|
|
<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-between"> <text class="text_2">费用合计</text> <text class="text_3">¥120</text> </view> <view class="justify-between group_7"> <text class="text_4">订单折扣</text> <text class="text_5">无</text> </view> </view> <view class="center-section flex-col"> <view class="justify-between"> <text class="text_6">评级费用</text> <view class="right-group flex-row"> <text>¥120</text> <image src="https://codefun-proj-user-res-1256085488.cos.ap-guangzhou.myqcloud.com/62677e395a7e3f03107ffc5f/62677e4a35a7e10011e93a80/16509497783561062920.png" class="image_6" /> </view> </view> <view class="group_9 justify-between"> <text>ANDRW WIGGINS</text> <text>¥40</text> </view> <view class="justify-between group_10"> <text>ANDRW WIGGINS</text> <text>¥40</text> </view> <view class="justify-between group_11"> <text>ANDRW WIGGINS</text> <text>¥40</text> </view> </view> <view class="center-section flex-col"> <view class="justify-between"> <text class="text_6">其他费用</text> <view class="right-group flex-row"> <text>¥0</text> <image src="https://codefun-proj-user-res-1256085488.cos.ap-guangzhou.myqcloud.com/62677e395a7e3f03107ffc5f/62677e4a35a7e10011e93a80/16509497784293806985.png" class="image_6" /> </view> </view> <view class="group_9 flex-row"> <text>费用名称</text> <text class="text_18">价格</text> <text class="text_19">数量</text> <text class="text_20">合计</text> </view> </view> </view> <view class="section_3"> </view> </view> </view></template>
<script> export default { data() { return {}; }, };</script>
<style scoped lang="css"> .center-section { margin-top: 30rpx; padding: 40rpx 30rpx 40rpx 32rpx; background-color: rgb(255, 255, 255); } .image_6 { margin-left: 8rpx; align-self: center; width: 26rpx; height: 16rpx; } .text_6 { color: rgb(51, 51, 51); font-size: 32rpx; font-weight: 500; line-height: 44rpx; white-space: nowrap; } .right-group { color: rgb(231, 162, 63); font-size: 32rpx; font-weight: 600; line-height: 44rpx; white-space: nowrap; } .group_9 { margin-top: 40rpx; color: rgb(119, 119, 119); font-size: 28rpx; font-weight: 500; line-height: 40rpx; white-space: nowrap; } .page { background-color: #f6f6f6; width: 100%; overflow-y: auto; height: 100%; } .group_4 { padding: 2rpx 0 16rpx; flex: 1 1 auto; overflow-y: auto; } .section_3 { margin-top: 596rpx; align-self: center; background-color: rgb(0, 0, 0); border-radius: 4rpx; width: 196rpx; height: 8rpx; } .section_2 { padding: 40rpx 32rpx; background-color: rgb(255, 255, 255); } .group_7 { margin-top: 50rpx; } .group_10 { margin-top: 30rpx; color: rgb(119, 119, 119); font-size: 28rpx; font-weight: 500; line-height: 40rpx; white-space: nowrap; } .group_11 { margin-top: 30rpx; color: rgb(119, 119, 119); font-size: 28rpx; font-weight: 500; line-height: 40rpx; white-space: nowrap; } .text_2 { color: rgb(51, 51, 51); font-size: 32rpx; font-weight: 500; line-height: 44rpx; white-space: nowrap; } .text_3 { color: rgb(231, 162, 63); font-size: 32rpx; font-weight: 600; line-height: 44rpx; white-space: nowrap; } .text_4 { color: rgb(51, 51, 51); font-size: 32rpx; font-weight: 500; line-height: 44rpx; white-space: nowrap; } .text_5 { color: rgb(51, 51, 51); font-size: 32rpx; font-weight: 600; line-height: 44rpx; white-space: nowrap; } .text_18 { margin-left: 116rpx; } .text_19 { margin-left: 118rpx; } .text_20 { margin-left: 116rpx; }</style>
|