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.
56 lines
1.1 KiB
56 lines
1.1 KiB
<template>
|
|
<view class="pageBgImg">
|
|
<topNavbar title="学员评价"></topNavbar>
|
|
<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>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.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>
|