purui 4 days ago
parent
commit
15c7190879

+ 14 - 0
packages/app/src/core/libs/requests.ts

@@ -618,6 +618,20 @@ export const getPhotoList = (query: { bizId: string; bizType: '1' | '2'; pageSiz
       createTime: string
     }>
   >('/app-api/member/app-study-abroad/pageStudyActivityPhoto', query)
+
+export const getPhotoList2 = (query: { id: string; bizType: '1' | '2'; pageSize?: number; pageNo?: number }) =>
+  httpGet<
+    ResPageData<{
+      id: number
+      bizId: number
+      bizType: string
+      bizTypeName: string
+      travelDate: string
+      video: any[]
+      picture: any[]
+      createTime: string
+    }>
+  >('/app-api/member/app-study-abroad/pageStudyActivityPhoto2', query)  
 /**
  * 获取Banner列表
  */

+ 49 - 7
packages/app/src/pages-sub/home/activity/images/index.vue

@@ -7,18 +7,32 @@
 }
 </route>
 <script setup lang="ts">
-import { getPhotoList } from '../../../../core/libs/requests'
+import { getPhotoList, getPhotoList2 } from '../../../../core/libs/requests'
 import SectionHeading from '@/components/section-heading.vue'
 import dayjs from 'dayjs'
 
 const id = ref()
 const type = ref()
+const img = ref()
+const pageNo = ref(1)
+const imgList = ref([])
+const more = ref(false)
 const { data, run: setData } = useRequest(
   () =>
     getPhotoList({
       bizId: id.value,
       bizType: { studyTour: '2', activity: '1' }[type.value],
-      pageSize: -1,
+      pageSize: 10,
+    }),
+  { initialData: { list: [], total: 0 } },
+)
+const { data: imgData, run: setImgData } = useRequest(
+  () =>
+    getPhotoList2({
+      id: img.value?.id,
+      bizType: { studyTour: '2', activity: '1' }[type.value],
+	  pageNo:pageNo.value,
+      pageSize: 10,
     }),
   { initialData: { list: [], total: 0 } },
 )
@@ -29,25 +43,53 @@ const previewImg = (i,index) => {
 		current:index
 	})
 }
+const previewImgNew = (i) => {
+	console.log(data)
+	uni.previewImage({
+		urls:[i]
+	})
+}
+onReachBottom(async ()=>{
+	console.log("11111")
+	if(!more.value){
+		pageNo.value ++ 
+		let imgInfo = await setImgData()
+		imgList.value = imgList.value.concat(imgInfo.list)
+		if(imgList.value.length >= imgInfo.total){
+			more.value = true
+		}
+	}
+})
 onLoad(async (query: { id: string; type: 'activity' | 'studyTour'; title: string }) => {
   await uni.setNavigationBarTitle({ title: query.title })
   id.value = query.id
   type.value = query.type
-  await setData()
+  let res = await setData();
+  console.log(res.list)
+  if(res.list.length > 0){
+	  img.value = res.list[0]
+	  let imgInfo = await setImgData()
+	  imgList.value = imgInfo.list
+	  if(imgList.value.length >= imgInfo.total){
+		  more.value = true
+	  }
+  }
 })
 </script>
 <template>
   <div class="flex flex-col flex-grow p-4 bg-white gap-4">
-    <template v-for="(it, i) in data.list" :key="i">
+    <template v-for="(it, i) in imgList" :key="i">
       <SectionHeading
-        :title="'第' + Number(i + 1) + '天 ' + dayjs(it.travelDate).format('YYYY-MM-DD')"
+        :title="'第' + Number(i + 1) + '天 ' + dayjs(img.travelDate).format('YYYY-MM-DD')"
       ></SectionHeading>
-      <template v-for="(video, index) in it.video" :key="index">
+	  <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)" />
+      <!-- <template v-for="(video, index) in it.video" :key="index">
         <video class="w-full" :src="video"></video>
       </template>
       <template v-for="(img, index) in it.picture" :key="index">
         <wd-img width="100%" mode="widthFix" :src="img" @click="previewImg(i,index)" />
-      </template>
+      </template> -->
     </template>
   </div>
 </template>

+ 1 - 7
packages/app/src/pages-sub/mine/refferrer/details.vue

@@ -121,13 +121,7 @@ onLoad(async (options:object)=>{
 							<view class="flex-grow text-[32rpx]">{{ it.name }}</view>
 							<view class="text-[#586A8F] text-[28rpx]" v-if="it.auditStatus === 0 && !referrerId" @click="toSecond(it)">推荐人数:{{ it.referrerCount }}</view>
 						</view>
-<<<<<<< HEAD
-						<view class="text-[24rpx] text-[#EF4343] pl-[108rpx] pt-[20rpx] pr-[20rpx]" v-if="it.auditStatus == 2">原因:{{ it.remark }}</view>					
-=======
-						<view class="flex-grow text-[32rpx]">{{ it.name }}</view>
-						<view class="text-[#586A8F] text-[28rpx]" v-if="it.auditStatus === 0 && !referrerId" @click="toSecond(it)">推荐人数:{{ it.referrerCount }}</view>
-						<view class="absolute bottom-0 left-[20%] text-[24rpx] text-[#EF4343]" v-if="it.auditStatus == 2">原因:{{ it.reason }}</view>
->>>>>>> a994fef56bccff9e58ebbc5e098f7358120534c1
+						<view class="text-[24rpx] text-[#EF4343] pl-[108rpx] pt-[20rpx] pr-[20rpx]" v-if="it.auditStatus == 2">原因:{{ it.remark }}</view>
 					</view>
 				</view>
 				<view class="bg-white rounded-[20rpx] mx-[24rpx] mt-[30rpx] px-[20rpx] py-[30rpx]" v-else>