<template> <view class="searchpage"> <u-navbar title="搜索" :border-bottom="false" :background="bgc" title-color='#2E4975' title-size='36' height='36'></u-navbar> <view class="search_box"> <view class="check_search"> {{ checkindex == "0" ? "班级" : '学生' }} <view class="iconfont icon-arow_down"></view> </view> <view class="serchbox"> <view class="serchimg"> <image src="https://file.langsi.online/yasiimg/web/static/uVMACkynkipOxuTYDqm0" mode="scaleToFill"> </image> </view> <input type="text" placeholder="搜索相关内容..." class="input" placeholder-style="color:#C7CDD3 "> </view> </view> <view class="class_box" v-if="checkindex == 1"> <view class="class_card"> <view class="class_card_top"> <view class="class_card_left"> <image src=" https://file.langsi.online/yasiimg/web/static/udWNTRG6GulmTtgPRQ49"></image> </view> <view class="class_card_right"> <view class="class_card_right_top"> 雅思1班 </view> <view class="class_card_right_bot"> 标签文字 </view> </view> </view> <view class="class_infobox"> <view class="class_info"> <view class="class_info_top"> 班级人数 </view> <view class="class_info_bot"> 21 </view> </view> <view class="class_info"> <view class="class_info_top"> 平均成绩/分 </view> <view class="class_info_bot"> 21 </view> </view> <view class="class_info"> <view class="class_info_top"> 作业完成度 </view> <view class="class_info_bot"> 80% </view> </view> </view> </view> <view class="class_card"> <view class="class_card_top"> <view class="class_card_left"> <image src=" https://file.langsi.online/yasiimg/web/static/udWNTRG6GulmTtgPRQ49"></image> </view> <view class="class_card_right"> <view class="class_card_right_top"> 雅思1班 </view> <view class="class_card_right_bot"> 标签文字 </view> </view> </view> <view class="class_infobox"> <view class="class_info"> <view class="class_info_top"> 班级人数 </view> <view class="class_info_bot"> 21 </view> </view> <view class="class_info"> <view class="class_info_top"> 平均成绩/分 </view> <view class="class_info_bot"> 21 </view> </view> <view class="class_info"> <view class="class_info_top"> 作业完成度 </view> <view class="class_info_bot"> 80% </view> </view> </view> </view> </view> </view> </template> <script> export default { data() { return { bgc: { backgroundColor: "#transparent", }, checkindex: 1, } }, methods: { } } </script> <style lang="scss"> page { background: linear-gradient(183deg, #F0F6FF 0%, #FAFAFA 100%); } .searchpage { width: 750rpx; padding: 0 32rpx; .search_box { margin-top: 46rpx; width: 686rpx; height: 88rpx; background: #FFFFFF; border-radius: 20rpx 20rpx 20rpx 20rpx; display: flex; flex-wrap: nowrap; .check_search { display: flex; flex-wrap: nowrap; align-items: center; justify-content: center; width: 148rpx; height: 88rpx; background: #FFF2E4; border-radius: 20rpx 0rpx 0rpx 20rpx; font-size: 28rpx; font-family:'PingFang','PingFang'; font-weight: 500; color: #F39852; .icon-arow_down { margin-left: 8rpx; font-size: 20rpx; } } .serchbox { // padding: 0 32rpx; display: flex; flex-wrap: nowrap; // margin-top: 30rpx; align-items: center; justify-content: space-between; width: 538rpx; height: 88rpx; background: #FFFFFF; border-radius: 20rpx 20rpx 20rpx 20rpx; .serchimg { margin-left: 32rpx; width: 32rpx; height: 32rpx; } .input { // margin-left: 24rpx; width: 452rpx; height: 88rpx; // border-radius: 30rpx; // background-color: #f5f8fc; // display: flex; // justify-content: center; // align-items: center; // text-align: center; font-size: 28rpx; font-family: Source Han Sans CN, Source Han Sans CN-Light; font-weight: 300; text-align: left; color: #a7b9cd; letter-spacing: 1.2rpx; line-height: 36rpx; // padding: 0 100rpx; // padding-right: 135rpx; box-sizing: border-box; } } } .class_box { display: flex; flex-wrap: wrap; .class_card { margin-top: 20rpx; width: 686rpx; height: 296rpx; background: #FFFFFF; border-radius: 20rpx 20rpx 20rpx 20rpx; padding: 32rpx; .class_card_top { display: flex; flex-wrap: nowrap; align-items: center; .class_card_left { width: 84rpx; height: 84rpx; } .class_card_right { margin-left: 12rpx; display: flex; flex-wrap: wrap; .class_card_right_top { width: 100%; font-size: 32rpx; font-family:'PingFang','PingFang'; font-weight: bold; color: #072F5A; } .class_card_right_bot { margin-top: 8rpx; background: #EBF3FF; border-radius: 4rpx 4rpx 4rpx 4rpx; padding: 10rpx 20rpx; font-size: 20rpx; font-family:'PingFang','PingFang'; font-weight: 500; color: #2D7CE6; } } } .class_infobox { margin-top: 20rpx; display: flex; flex-wrap: nowrap; align-items: center; justify-content: space-around; width: 622rpx; height: 128rpx; background: #F9F9F9; border-radius: 20rpx 20rpx 20rpx 20rpx; .class_info { width: 110rpx; display: flex; flex-wrap: wrap; justify-content: center; .class_info_top { font-size: 20rpx; font-family:'PingFang','PingFang'; font-weight: 500; color: rgba(7, 47, 90, 0.5); } .class_info_bot { margin-top: 12rpx; font-size: 28rpx; font-family:'PingFang','PingFang'; font-weight: 800; color: #2D7CE6; } } } } } }</style>