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.
200 lines
4.1 KiB
200 lines
4.1 KiB
<template>
|
|
<view class="pageBgImg">
|
|
<topNavbar title="找驾校"></topNavbar>
|
|
<view class="pad">
|
|
<view class="searchCon">
|
|
<searchRow placeholder="搜索驾校名称" @searchFn="searchFn"></searchRow>
|
|
</view>
|
|
<view class="navBox">
|
|
<view class="tab" v-for="(item,index) in tabData" :key="index" :class="{active: params.sercheType==item.id}" @click="tabClick(item)">
|
|
{{ item.text }}</view>
|
|
<view class="screen" @click="goScreen">
|
|
<view class="txt"><text v-if="params.businessScope||params.district">已</text> 筛选</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 listData" :key="index" >
|
|
<schoolItme :item="item" @click.native="goPage(item)"/>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view style="padding-bottom: 20rpx;" v-if="listData.length">
|
|
<u-loadmore :status="status" />
|
|
</view>
|
|
<nodata v-if="!listData.length&&status=='nomore'"></nodata>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import schoolItme from './comp/schoolItem.vue'
|
|
import { schoolPage } from '@/config/api.js'
|
|
export default {
|
|
components: { schoolItme },
|
|
data() {
|
|
return {
|
|
currentTab: 0,
|
|
tabData: [{
|
|
text: '全部',
|
|
id: 1
|
|
},
|
|
{
|
|
text: '场地优先',
|
|
id: 2
|
|
},
|
|
{
|
|
text: '距离优先',
|
|
id: 3
|
|
},
|
|
{
|
|
text: '好评优先',
|
|
id: 4
|
|
},
|
|
],
|
|
params: {
|
|
pageNo: 1,
|
|
pageSize: 20,
|
|
lat: '',
|
|
lng: '',
|
|
sercheType: 1,
|
|
businessScope: '',
|
|
district: '',
|
|
name: ''
|
|
},
|
|
total: 20,
|
|
listData: [],
|
|
status: 'loading'
|
|
}
|
|
},
|
|
onLoad() {
|
|
let vuex_cityInfo = this.$store.state.user.vuex_cityInfo
|
|
if(!vuex_cityInfo.lat) {
|
|
this.$store.dispatch('getCity')
|
|
}else {
|
|
this.params.lat = vuex_cityInfo.lat
|
|
this.params.lng = vuex_cityInfo.lng
|
|
}
|
|
this.schoolPageFn()
|
|
uni.$on('screenConfirm',(obj)=>{
|
|
this.params = Object.assign(this.params, obj)
|
|
this.listInit()
|
|
})
|
|
},
|
|
onPullDownRefresh() {
|
|
this.listInit()
|
|
},
|
|
onReachBottom() {
|
|
if(this.total>this.listData.length) {
|
|
this.schoolPageFn()
|
|
}
|
|
},
|
|
methods: {
|
|
searchFn(val) {
|
|
this.params.name = val
|
|
this.listInit()
|
|
},
|
|
goScreen() {
|
|
let url = `/pages/indexEntry/findShcool/screen/screen?businessScope=${this.params.businessScope}&district=${this.params.district}`
|
|
this.$goPage(url)
|
|
},
|
|
goPage(item) {
|
|
this.$goPage('/pages/indexEntry/findShcool/shcoolDetail/shcoolDetail?schoolId='+ item.id)
|
|
},
|
|
tabClick(item) {
|
|
this.params.sercheType = item.id
|
|
this.listInit()
|
|
},
|
|
async listInit() {
|
|
this.listData = []
|
|
this.params.pageNo = 1
|
|
await this.schoolPageFn()
|
|
uni.stopPullDownRefresh()
|
|
},
|
|
// 获取驾校列表
|
|
async schoolPageFn() {
|
|
const {data: res} = await schoolPage(this.params)
|
|
this.params.pageNo ++
|
|
this.listData.push(...res.list)
|
|
this.total = res.total
|
|
if(this.listData.length>=this.total) this.status = 'nomore'
|
|
console.log(res)
|
|
}
|
|
}
|
|
}
|
|
</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>
|