This commit is contained in:
许允枞 2025-03-18 10:57:40 +08:00
parent a88e408682
commit b9c92167c5
3 changed files with 108 additions and 87 deletions

View File

@ -1,7 +1,8 @@
<template>
<view class="page flex-col">
<u-swiper class="lunbo_" :list="swiperList" keyName="swiperPicture" radius="10" height="300" indicator indicatorMode="line" @change="change"
@click="click"></u-swiper>
<view class="top_">
<u-swiper class="lunbo_" :list="swiperList" keyName="swiperPicture" radius="10" height="300" indicator indicatorMode="line"></u-swiper>
</view>
<view class="section_2 flex-col">
<view class="list_1 flex-row">
<view
@ -37,7 +38,7 @@
<view class="box_5 flex-row justify-between">
<text class="text_2">优质驾校</text>
<view class="image-text_3 flex-row justify-between">
<text class="text-group_3" @click="goSchoolDetail(school)">查看更多</text>
<text class="text-group_3" @click="goSchoolList()">查看更多</text>
<image
class="thumbnail_2"
referrerpolicy="no-referrer"
@ -49,7 +50,7 @@
<!-- 使用 scroll-view 包裹 SchoolInfo 组件 -->
<scroll-view class="school-scroll-view" scroll-y @scrolltolower="onReachBottomCus"
refresher-enabled @refresherrefresh="onRefresherrefresh" :refresher-triggered="isTriggered">
<SchoolInfo style="" v-for="(school, index) in schoolList" :key="index" :schoolInfo="school"/>
<SchoolInfo style="" v-for="(school, index) in schoolList" :key="index" :schoolInfo="school" @click="goSchoolDetail(school)"/>
</scroll-view>
</view>
@ -86,50 +87,51 @@ export default {
text: '评价'
}
],
swiperList: ['/static/lanhu_shouye2gai/lb.png'],
swiperList: [],
msg: "1",
constants: {},
schoolList: [
{
imageUrl: '/static/lanhu_jiaxiaoliebiao/FigmaDDSSlicePNG530e91ec069b391e8972e9ed0aeebc58.png',
corpName: '兄弟驾校',
status: '未营业',
time: '08:00-18:00',
address: '山东省济南市历下区工业南路168号',
features: ['有接送', '规模大']
},
{
imageUrl: '/static/lanhu_jiaxiaoliebiao/FigmaDDSSlicePNG530e91ec069b391e8972e9ed0aeebc58.png',
corpName: '兄弟驾校',
status: '营业中',
time: '08:00-18:00',
address: '山东省济南市历下区工业南路168号',
features: ['有接送', '规模大']
},
{
imageUrl: '/static/lanhu_jiaxiaoliebiao/FigmaDDSSlicePNG530e91ec069b391e8972e9ed0aeebc58.png',
corpName: '兄弟驾校',
status: '营业中',
time: '08:00-18:00',
address: '山东省济南市历下区工业南路168号',
features: ['有接送', '规模大']
},
{
imageUrl: '/static/lanhu_jiaxiaoliebiao/FigmaDDSSlicePNG530e91ec069b391e8972e9ed0aeebc58.png',
corpName: '兄弟驾校',
status: '营业中',
time: '08:00-18:00',
address: '山东省济南市历下区工业南路168号',
features: ['有接送', '规模大']
},
{
imageUrl: '/static/lanhu_jiaxiaoliebiao/FigmaDDSSlicePNG530e91ec069b391e8972e9ed0aeebc58.png',
corpName: '兄弟驾校',
status: '营业中',
time: '08:00-18:00',
address: '山东省济南市历下区工业南路168号',
features: ['有接送', '规模大']
},],
// {
// imageUrl: '/static/lanhu_jiaxiaoliebiao/FigmaDDSSlicePNG530e91ec069b391e8972e9ed0aeebc58.png',
// corpName: '',
// status: '',
// time: '08:00-18:00',
// address: '168',
// features: ['', '']
// },
// {
// imageUrl: '/static/lanhu_jiaxiaoliebiao/FigmaDDSSlicePNG530e91ec069b391e8972e9ed0aeebc58.png',
// corpName: '',
// status: '',
// time: '08:00-18:00',
// address: '168',
// features: ['', '']
// },
// {
// imageUrl: '/static/lanhu_jiaxiaoliebiao/FigmaDDSSlicePNG530e91ec069b391e8972e9ed0aeebc58.png',
// corpName: '',
// status: '',
// time: '08:00-18:00',
// address: '168',
// features: ['', '']
// },
// {
// imageUrl: '/static/lanhu_jiaxiaoliebiao/FigmaDDSSlicePNG530e91ec069b391e8972e9ed0aeebc58.png',
// corpName: '',
// status: '',
// time: '08:00-18:00',
// address: '168',
// features: ['', '']
// },
// {
// imageUrl: '/static/lanhu_jiaxiaoliebiao/FigmaDDSSlicePNG530e91ec069b391e8972e9ed0aeebc58.png',
// corpName: '',
// status: '',
// time: '08:00-18:00',
// address: '168',
// features: ['', '']
// },
],
//
isTriggered: false,
pageNo: 1,
@ -166,7 +168,11 @@ export default {
url: '/drivingSchool/applet/swiper/list',
method: 'GET'
}).then(res => {
res.data.forEach(item => {
item.swiperPicture = this.imageUrl + item.swiperPicture
})
this.swiperList = res.data
console.log('轮播图', this.swiperList)
})
},
/**
@ -193,10 +199,15 @@ export default {
this.schoolList = []
this.getList()
},
goSchoolDetail() {
goSchoolList() {
uni.navigateTo({
url: '/newPages/schoolList/index',
});
},
goSchoolDetail(data) {
uni.navigateTo({
url: '/newPages/schoolDetail/index?id' + data.id,
});
}
}
};
@ -232,4 +243,7 @@ export default {
row-gap: 20rpx;
height: calc(100% - 65px);
}
.top_{
//padding-top: 200rpx;
}
</style>

View File

@ -194,9 +194,16 @@
export default {
data() {
return {
constants: {}
constants: {},
schoolId: undefined,
};
},
onLoad(options) {
if (options.id) {
this.schoolId = options.id;
console.log("驾校id", this.schoolId)
}
},
methods: {}
};
</script>

View File

@ -28,46 +28,46 @@ export default {
return {
constants: {},
schoolList: [
{
imageUrl: '/static/lanhu_jiaxiaoliebiao/FigmaDDSSlicePNG530e91ec069b391e8972e9ed0aeebc58.png',
corpName: '兄弟驾校',
status: '未营业',
time: '08:00-18:00',
address: '山东省济南市历下区工业南路168号',
features: ['有接送', '规模大']
},
{
imageUrl: '/static/lanhu_jiaxiaoliebiao/FigmaDDSSlicePNG530e91ec069b391e8972e9ed0aeebc58.png',
corpName: '兄弟驾校',
status: '营业中',
time: '08:00-18:00',
address: '山东省济南市历下区工业南路168号',
features: ['有接送', '规模大']
},
{
imageUrl: '/static/lanhu_jiaxiaoliebiao/FigmaDDSSlicePNG530e91ec069b391e8972e9ed0aeebc58.png',
corpName: '兄弟驾校',
status: '营业中',
time: '08:00-18:00',
address: '山东省济南市历下区工业南路168号',
features: ['有接送', '规模大']
},
{
imageUrl: '/static/lanhu_jiaxiaoliebiao/FigmaDDSSlicePNG530e91ec069b391e8972e9ed0aeebc58.png',
corpName: '兄弟驾校',
status: '营业中',
time: '08:00-18:00',
address: '山东省济南市历下区工业南路168号',
features: ['有接送', '规模大']
},
{
imageUrl: '/static/lanhu_jiaxiaoliebiao/FigmaDDSSlicePNG530e91ec069b391e8972e9ed0aeebc58.png',
corpName: '兄弟驾校',
status: '营业中',
time: '08:00-18:00',
address: '山东省济南市历下区工业南路168号',
features: ['有接送', '规模大']
},
// {
// imageUrl: '/static/lanhu_jiaxiaoliebiao/FigmaDDSSlicePNG530e91ec069b391e8972e9ed0aeebc58.png',
// corpName: '',
// status: '',
// time: '08:00-18:00',
// address: '168',
// features: ['', '']
// },
// {
// imageUrl: '/static/lanhu_jiaxiaoliebiao/FigmaDDSSlicePNG530e91ec069b391e8972e9ed0aeebc58.png',
// corpName: '',
// status: '',
// time: '08:00-18:00',
// address: '168',
// features: ['', '']
// },
// {
// imageUrl: '/static/lanhu_jiaxiaoliebiao/FigmaDDSSlicePNG530e91ec069b391e8972e9ed0aeebc58.png',
// corpName: '',
// status: '',
// time: '08:00-18:00',
// address: '168',
// features: ['', '']
// },
// {
// imageUrl: '/static/lanhu_jiaxiaoliebiao/FigmaDDSSlicePNG530e91ec069b391e8972e9ed0aeebc58.png',
// corpName: '',
// status: '',
// time: '08:00-18:00',
// address: '168',
// features: ['', '']
// },
// {
// imageUrl: '/static/lanhu_jiaxiaoliebiao/FigmaDDSSlicePNG530e91ec069b391e8972e9ed0aeebc58.png',
// corpName: '',
// status: '',
// time: '08:00-18:00',
// address: '168',
// features: ['', '']
// },
],
isTriggered: false,
pageNo: 1,