|
@@ -214,7 +214,7 @@ const aduioIconPlay=new URL('../../assets/audio-doing-white.png', import.meta.ur
|
|
|
const aduioIconPaused=new URL('../../assets/audio-pause.png', import.meta.url).href
|
|
|
const aduioIconDefault=new URL('../../assets/audio-pause-3.png', import.meta.url).href
|
|
|
|
|
|
-
|
|
|
+let showSearch=ref(false)
|
|
|
onMounted(() => {
|
|
|
//向小程序发送消息
|
|
|
let postData = {
|
|
@@ -224,6 +224,7 @@ onMounted(() => {
|
|
|
shareImg:'https://hzstatic.hzinsights.com/static/icon/hzyb/activitylist_share.jpg'
|
|
|
};
|
|
|
wx.miniProgram.postMessage({ data: postData });
|
|
|
+ showSearch.value=true
|
|
|
});
|
|
|
|
|
|
onActivated(()=>{//解决从详情返回到列表 分享时还是详情问题
|
|
@@ -244,6 +245,9 @@ onActivated(()=>{//解决从详情返回到列表 分享时还是详情问题
|
|
|
|
|
|
<template>
|
|
|
<div class="activity-list-page" ref="listWrap" @scroll="listWrapScroll">
|
|
|
+ <teleport to="#report-search-box">
|
|
|
+
|
|
|
+ </teleport>
|
|
|
<el-affix>
|
|
|
<div class="top-nav-wrap">
|
|
|
<div class="nav-first">
|
|
@@ -308,7 +312,7 @@ onActivated(()=>{//解决从详情返回到列表 分享时还是详情问题
|
|
|
</div>
|
|
|
</li>
|
|
|
</ul>
|
|
|
- <p style="text-align:center;color:#666" v-if="listData.list.length>0&&listData.finished">没有更多了~</p>
|
|
|
+ <p style="text-align:center;color:#666" v-if="listData.list.length>0&&listData.finished">没有更多了~</p>
|
|
|
</div>
|
|
|
</template>
|
|
|
|