学员端小程序
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.
 
 
 

137 lines
2.5 KiB

<template>
<view class="pageBgImg">
<topNavbar title="找驾校"></topNavbar>
<view class="pad">
<view class="searchCon">
<searchRow placeholder="搜索驾校、教练…"></searchRow>
</view>
<view class="navBox">
<view class="tab" v-for="(item,index) in tabData" :key="index" :class="{active: currentTab==item.id}" @click="tabClick(item)">
{{ item.text }}</view>
<view class="screen" @click="$goPage('/pages/indexEntry/findShcool/screen/screen')">
<view class="txt">筛选</view>
<view class="screenIcon">
<image src="../../../static/images/index/ic_shaixuan.png" mode=""></image>
</view>
</view>
</view>
<view class="ul">
<view class="li" v-for="(item,index) in 10" :key="index" @click="goPage">
<schoolItme/>
</view>
</view>
</view>
</view>
</template>
<script>
import schoolItme from './comp/schoolItem.vue'
export default {
components: { schoolItme },
data() {
return {
currentTab: 0,
tabData: [{
text: '全部',
id: 0
},
{
text: '场地优先',
id: 1
},
{
text: '距离优先',
id: 2
},
{
text: '好评优先',
id: 3
},
]
}
},
methods: {
goPage() {
console.log(this.$goPage)
this.$goPage('/pages/indexEntry/findShcool/shcoolDetail/shcoolDetail')
},
tabClick(item) {
this.currentTab = item.id
}
}
}
</script>
<style lang="scss" scoped>
.pageBgImg {
width: 100%;
min-height: 100vh;
.searchCon {
padding: 0 0 24rpx 0;
}
.navBox {
display: flex;
justify-content: space-between;
padding-bottom: 48rpx;
.tab {
display: flex;
font-size: 28rpx;
color: #fff;
&.active {
position: relative;
&::before {
content: '';
position: absolute;
bottom: -14rpx;
left: 50%;
transform: translateX(-50%);
width: 50rpx;
height: 4rpx;
background-color: #fff;
border-radius: 0 0 2rpx 2rpx;
}
}
}
.screen {
width: 150rpx;
display: flex;
justify-content: center;
align-items: center;
position: relative;
&::before {
content: '';
position: absolute;
left: 0;
top: 10rpx;
width: 1px;
background: #fff;
height: 26rpx;
}
.txt {
font-size: 28rpx;
color: #fff;
margin-right: 10rpx;
}
.screenIcon {
width: 32rpx;
height: 32rpx;
}
}
}
.ul {
width: 100%;
.li {
}
}
}
</style>