123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <template>
- <view class="my">
- <view class="news">
- <view class="private">
- <view class="avatar"><image></image></view>
- <view class="info">
- <text>天天天</text>
- <text>156*****7654</text>
- </view>
- </view>
- <pv-image imgSrc="/playVideo/video/ic_more_white.png" width="32" height="32"></pv-image>
- </view>
- <view class="menu">
- <view class="menu_item">
- <view class="name">
- <pv-image imgSrc="/playVideo/video/ic-jilu.png" width="48" height="48"></pv-image>
- <text>观看历史</text>
- </view>
- <pv-image imgSrc="/playVideo/video/ic_more_black.png" width="24" height="24"></pv-image>
- </view>
- <view class="menu_item">
- <view class="name">
- <pv-image imgSrc="/playVideo/video/ic-kefu.png" width="48" height="48"></pv-image>
- <text>联系客服</text>
- </view>
- <pv-image imgSrc="/playVideo/video/ic_more_black.png" width="24" height="24"></pv-image>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
-
- }
- </script>
- <style lang="scss" scoped>
- .my{
- height: 100%;
- background: linear-gradient( 172deg, #216CFF 0%, #C7F0FF 36%, #E1FAFF 100%);
- display: flex;
- flex-direction: column;
- .news{
- padding: 32rpx 32rpx 48rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- .private{
- display: flex;
-
- .avatar{
- width: 104rpx;
- height: 104rpx;
- background: #21FFFA;
- margin-right: 24rpx;
- image{
- width: 100%;
- height: 100%;
- border-radius: 50%;
- }
- }
- .info{
- color: #fff;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- }
- }
- }
- .menu{
- padding: 24rpx 32rpx;
- flex: 1;
- background: #fff;
- border-radius: 24rpx 24rpx 0 0;
- .menu_item{
- padding: 32rpx 28rpx 32rpx 24rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-bottom: 2rpx solid #F0F2F4;
- .name{
- display: flex;
- align-items: center;
- text{
- margin-left: 20rpx;
- font-size: 28rpx;
- }
- }
- }
- .menu_item:nth-last-child(1){
- border: none;
- }
- }
- }
- </style>
|