|
@@ -14,6 +14,8 @@ import dayjs from 'dayjs'
|
|
const id = ref()
|
|
const id = ref()
|
|
const type = ref()
|
|
const type = ref()
|
|
const img = ref()
|
|
const img = ref()
|
|
|
|
+const imgTab = ref([])
|
|
|
|
+const imgTabIndex = ref(0)
|
|
const pageNo = ref(1)
|
|
const pageNo = ref(1)
|
|
const imgList = ref([])
|
|
const imgList = ref([])
|
|
const more = ref(false)
|
|
const more = ref(false)
|
|
@@ -49,8 +51,20 @@ const previewImgNew = (i) => {
|
|
urls:[i]
|
|
urls:[i]
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
+const timeTabChange = async (it,i) =>{
|
|
|
|
+ more.value = false;
|
|
|
|
+ pageNo.value = 1;
|
|
|
|
+ img.value = it
|
|
|
|
+ imgTabIndex.value = i;
|
|
|
|
+ let imgInfo = await setImgData()
|
|
|
|
+ console.log(imgInfo)
|
|
|
|
+ imgList.value = imgInfo.list
|
|
|
|
+ if(imgList.value.length >= imgInfo.total){
|
|
|
|
+ more.value = true
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
onReachBottom(async ()=>{
|
|
onReachBottom(async ()=>{
|
|
- console.log("11111")
|
|
|
|
if(!more.value){
|
|
if(!more.value){
|
|
pageNo.value ++
|
|
pageNo.value ++
|
|
let imgInfo = await setImgData()
|
|
let imgInfo = await setImgData()
|
|
@@ -65,10 +79,12 @@ onLoad(async (query: { id: string; type: 'activity' | 'studyTour'; title: string
|
|
id.value = query.id
|
|
id.value = query.id
|
|
type.value = query.type
|
|
type.value = query.type
|
|
let res = await setData();
|
|
let res = await setData();
|
|
- console.log(res.list)
|
|
|
|
- if(res.list.length > 0){
|
|
|
|
- img.value = res.list[0]
|
|
|
|
|
|
+ imgTab.value = res.list
|
|
|
|
+ console.log(imgTab.value)
|
|
|
|
+ if(imgTab.value.length > 0){
|
|
|
|
+ img.value = imgTab.value[0]
|
|
let imgInfo = await setImgData()
|
|
let imgInfo = await setImgData()
|
|
|
|
+ console.log(imgInfo)
|
|
imgList.value = imgInfo.list
|
|
imgList.value = imgInfo.list
|
|
if(imgList.value.length >= imgInfo.total){
|
|
if(imgList.value.length >= imgInfo.total){
|
|
more.value = true
|
|
more.value = true
|
|
@@ -78,10 +94,13 @@ onLoad(async (query: { id: string; type: 'activity' | 'studyTour'; title: string
|
|
</script>
|
|
</script>
|
|
<template>
|
|
<template>
|
|
<div class="flex flex-col flex-grow p-4 bg-white gap-4">
|
|
<div class="flex flex-col flex-grow p-4 bg-white gap-4">
|
|
|
|
+ <div class="flex items-center overflow-x-scroll">
|
|
|
|
+ <div class="px-[14rpx] py-[8rpx] text-[24rpx] rounded-[10rpx] mr-[20rpx] shrink-0" :class="imgTabIndex===i?'bg-black text-white':'bg-black/10'" v-for="(it, i) in imgTab" :key="i" @click="timeTabChange(it,i)">{{ dayjs(it.travelDate).format('YYYY-MM-DD') || "2022" }}</div>
|
|
|
|
+ </div>
|
|
<template v-for="(it, i) in imgList" :key="i">
|
|
<template v-for="(it, i) in imgList" :key="i">
|
|
- <SectionHeading
|
|
|
|
|
|
+ <!-- <SectionHeading
|
|
:title="'第' + Number(i + 1) + '天 ' + dayjs(img.travelDate).format('YYYY-MM-DD')"
|
|
:title="'第' + Number(i + 1) + '天 ' + dayjs(img.travelDate).format('YYYY-MM-DD')"
|
|
- ></SectionHeading>
|
|
|
|
|
|
+ ></SectionHeading> -->
|
|
<video v-if="it.type=='1'" class="w-full" :src="it.url"></video>
|
|
<video v-if="it.type=='1'" class="w-full" :src="it.url"></video>
|
|
<wd-img v-else width="100%" mode="widthFix" :src="it.url" @click="previewImgNew(it.url)" />
|
|
<wd-img v-else width="100%" mode="widthFix" :src="it.url" @click="previewImgNew(it.url)" />
|
|
<!-- <template v-for="(video, index) in it.video" :key="index">
|
|
<!-- <template v-for="(video, index) in it.video" :key="index">
|