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="pageBg"> <view class="topBg"> <topNavbar title="找驾校"></topNavbar> <view class="searchCon pad"> <searchRow placeholder="搜索驾校名称" @searchFn="searchFn"></searchRow> </view> </view> <view class="pad"> <view class="ul"> <view class="card" 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 '@/pages/tabbar/index/comp/schoolItem.vue' import { schoolPage } from '@/config/api.js' export default { components: { schoolItme }, data() { return { currentTab: 0, params: { pageNo: 1, pageSize: 20, lat: '', lng: '', sercheType: 1, 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 } }, onPullDownRefresh() { // this.listInit()
}, onReachBottom() { if(this.total>this.listData.length) { this.schoolPageFn() } }, methods: { searchFn(val) { if(!val) { this.listData = [] return } this.params.name = val this.listInit() }, goPage(item) { this.$goPage('/pages/indexEntry/findShcool/shcoolDetail/shcoolDetail?schoolId='+ item.id) }, async listInit() { this.listData = [] this.params.pageNo = 1 await this.schoolPageFn() uni.stopPullDownRefresh() }, // 获取驾校列表
async schoolPageFn() { let obj = {} for(let key in this.params) { if(this.params[key]) { obj[key] = this.params[key] } } const {data: res} = await schoolPage(obj) 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> .pageBg { width: 100%; .navBox { display: flex; justify-content: space-between; padding: 20rpx 0; .tab { font-size: 28rpx; color: #999; line-height: 50rpx; border-radius: 10rpx; background: #fff; text-align: center; height: 50rpx; width: 126rpx; &.active { background: $themC; color: #fff; }
}
.screen { width: 150rpx; display: flex; justify-content: center; align-items: center; position: relative; background: #fff; color: #999; border-radius: 10rpx; &.active { background: $themC; color: #fff; } .txt { font-size: 28rpx; margin-right: 10rpx; }
.screenIcon { width: 18rpx; height: 12rpx; } } }
.ul { width: 100%; padding-top: 20rpx; .card { padding: 0 20rpx; } } } .topBg { padding-bottom: 20rpx; } </style>
|