123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <template>
- <view class="base-container">
- <view class="user-info">
- <view class="user-left">
- <image class="avatar" src="https://cube.elemecdn.com/0/88/03b0d39583f48206768a7534e55bcpng.png"></image>
- <view class="info">
- <text class="name">听妈妈的话</text>
- <view class="text">这是您使用飞鸟有味的第15天</view>
- </view>
- </view>
- <view class="user-right">收货地址</view>
- </view>
- </view>
- </template>
- <script setup>
- </script>
- <style lang="scss" scoped>
- .base-container {
- width: 100%;
- min-height: 100vh;
- background: #f7f7f7;
- padding: 20rpx 24rpx;
- box-sizing: border-box;
- .user-info {
- background: #fff;
- border-radius: 16rpx;
- padding: 24rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .user-left{
- display: flex;
- align-items: center;
- .avatar{
- width: 92rpx;
- height: 92rpx;
- margin-right: 28rpx;
- border-radius: 50%;
- }
- .info{
- .name{
- font-family: 'PangMenZhengDao';
- }
- .text{
- font-size: 24rpx;
- }
- }
- }
- .user-right{
- font-size: 24rpx;
- padding: 12rpx 32rpx;
- border-radius: 50rpx;
- color: #000;
- background: #FFD95E;
- font-weight: 500;
- }
- }
- }
- </style>
|