Browse Source

修改bug

purui 2 days ago
parent
commit
1720c3dc32

+ 9 - 3
packages/app/src/components/moment-item.vue

@@ -39,9 +39,15 @@ const isVideo = computed(
   () => props.options.bannerUrls?.length && isImageOrVideo(props.options.bannerUrls[0]) === 'video',
 )
 const toDetail = () => {
-  uni.navigateTo({
-    url: `/pages-sub/home/moment/index?${stringify({ id: props.options.id })}${props.isShared ? '&isShared=true' : ''}`,
-  })
+	if(props.options.detailsType==='1'){
+		uni.navigateTo({
+		  url: `/pages-sub/home/moment/index?${stringify({ id: props.options.id })}${props.isShared ? '&isShared=true' : ''}`,
+		})
+	}else{
+		uni.navigateTo({
+		  url: props.options.detailsUrl,
+		})
+	}  
 }
 const handleDelete = async () => {
   emits('delete', props.options.id)

+ 1 - 1
packages/app/src/core/libs/requests.ts

@@ -335,7 +335,7 @@ export const getSetIndexConfigs = (query = {}) =>
       createTime: string
     }[]
   }>('/app-api/basicsetting/set-index-config/page', query)
-export const updateSetIndexConfig = (data: { id: number; status: number }) =>
+export const updateSetIndexConfig = (data: { id: number | string; status: number }) =>
   httpPut('/app-api/basicsetting/set-index-config/update', data)
 
 /**

+ 1 - 1
packages/app/src/pages-sub/home/activity/detail/index.vue

@@ -307,7 +307,7 @@ onShareTimeline(() => ({ title: data.value.name, imageUrl: data.value.thumbnailU
       <wd-config-provider :themeVars="themeVars">
         <wd-tabs v-model="tab" class="bg-transparent!" custom-class="bg-transparent!">
           <wd-tab title="活动介绍"></wd-tab>
-          <wd-tab v-if=" data?.isTravelPlan==='1' " title="行程安排"></wd-tab>
+          <wd-tab :disabled="data?.isTravelPlan==='1'?false:true" :title="data?.isTravelPlan==='1'?'行程安排':''"></wd-tab>
         </wd-tabs>
       </wd-config-provider>
     </div>

+ 17 - 15
packages/app/src/pages-sub/home/activity/images/index.vue

@@ -93,22 +93,24 @@ onLoad(async (query: { id: string; type: 'activity' | 'studyTour'; title: string
 })
 </script>
 <template>
-  <div class="flex flex-col flex-grow p-4 bg-white gap-4">
-	<div class="flex items-center overflow-x-scroll">
+  <div class="bg-white gap-4 pb-4">
+	<div class="flex items-center overflow-x-scroll sticky top-0 z-10 bg-white p-[20rpx]">
 		<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">
-      <!-- <SectionHeading
-        :title="'第' + Number(i + 1) + '天 ' + dayjs(img.travelDate).format('YYYY-MM-DD')"
-      ></SectionHeading> -->
-	  <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>
+    <div class="flex flex-col flex-grow px-4">
+		<template v-for="(it, i) in imgList" :key="i">
+		  <!-- <SectionHeading
+		    :title="'第' + Number(i + 1) + '天 ' + dayjs(img.travelDate).format('YYYY-MM-DD')"
+		  ></SectionHeading> -->
+		  <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>
+	</div>
   </div>
 </template>

+ 2 - 2
packages/app/src/pages-sub/home/mall/index.vue

@@ -183,11 +183,11 @@ onShareTimeline(() => ({
                   </template>
                   <template v-else>
                     <div class="flex-1 h-6"></div>
-                    <div
+                    <!-- <div
                       class="text-black/40 text-[10px] font-normal font-['PingFang_SC'] leading-normal"
                     >
                       {{ it.exchangeDesc }}
-                    </div>
+                    </div> -->
                   </template>
                 </div>
                 <div class="flex items-end gap-1 mt-12px">

+ 1 - 1
packages/app/src/pages-sub/home/moment/index.vue

@@ -323,7 +323,7 @@ const handleClick = async (value: boolean) => {
     <div v-if="data.circleType === '2'" class="mt-24 px-3.5">
       <SectionHeading custom-class="" title="案例描述"></SectionHeading>
     </div>
-    <view v-if="data.circleType === '3'">
+    <view v-if="data.circleType === '3'" class="px-[24rpx]">
       <mpHtml :content="data.detailsDesc"></mpHtml>
     </view>
     <view class="m-3.5" :class="data.circleType === '2' ? 'mx-7' : ''">

+ 4 - 4
packages/app/src/pages-sub/mine/refferrer/index.vue

@@ -14,10 +14,10 @@ const handleClick = (path) => {
   uni.navigateTo({ url: path })
 }
 const tips = (msg) =>{
-	uni.showToast({
-		title:msg,
-		icon:"none",
-		duration:3000
+	uni.showModal({
+		title:"提示",
+		content:msg,
+		showCancel:false
 	})
 }
 onMounted(async () => {

+ 3 - 1
packages/app/src/pages/home/components/home-banner.vue

@@ -2,6 +2,7 @@
 import ImageEvo from '@/components/image-evo.vue'
 import { unix } from 'dayjs'
 import { useRouter } from '../../../core/utils/router'
+import { updateSetIndexConfig} from '../../../core/libs/requests'
 const router = useRouter()
 
 const props = withDefaults(
@@ -20,7 +21,7 @@ const playing = ref(false)
 const duration = ref(0)
 const durationText = computed(() => unix(duration.value).format('mm:ss'))
 const videoContext = ref<UniNamespace.VideoContext>()
-const handleClick = () => {
+const handleClick = async () => {
   if (props?.item?.url && props.item?.url?.startsWith('http')) {
     router.push(`/pages-sub/common/webview/index?url=${props.item.url}`)
   }
@@ -28,6 +29,7 @@ const handleClick = () => {
     // router.push(
     //   `/pages-sub/home/content/index?type=home-banner&id=${props.id}&data=${encodeURIComponent(JSON.stringify(props.item))}`,
     // )
+	await updateSetIndexConfig({id:props.id})
 	router.push(
 	  `/pages-sub/home/content/index?type=home-banner&id=${props.id}`,
 	)

+ 4 - 4
packages/merchant/src/pages/mine/refferrer/index.vue

@@ -13,10 +13,10 @@ const handleClick = (path) => {
   uni.navigateTo({ url: path })
 }
 const tips = (msg) =>{
-	uni.showToast({
-		title:msg,
-		icon:"none",
-		duration:3000
+	uni.showModal({
+		title:"提示",
+		content:msg,
+		showCancel:false
 	})
 }
 onLoad(async (query?: Record<string | 'id', any>) => {