You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<template> <view class="pageBgImg"> <view class="status_bar"></view> <view class="navH"></view> <view class="pad"> <view class="searchBox"> <searchRow placeholder="搜索学员姓名"></searchRow> </view> <view class="tabs"> <view class="tab active">全部(10)</view> <view class="tab">匿名(1)</view> <view class="tab">有图(2)</view> <view class="tab">有视频(6)</view> </view> <view class="list"> <view class="card"> <commentItem/> </view> </view> </view> <UserTab name ='学员评价'></UserTab> </view> </template>
<script> </script>
<style lang="scss" scoped> .navH { width: 100%; height: 90rpx; } .card { padding: 28rpx; margin-bottom: 20rpx; } .tabs { display: flex; justify-content: space-between; padding: 24rpx 12rpx; .tab { line-height: 76rpx; font-size: 28rpx; color: #fff; &.active { position: relative; &::before { position: absolute; content: ''; left: 50%; bottom: 0; transform: translateX(-50%); width: 56rpx; height: 6rpx; background: #FFFFFF; border-radius: 3rpx; } } } } </style>
|