This commit is contained in:
weipengfei 2024-04-03 16:54:35 +08:00
parent ebf7d7c40c
commit d34e688fde
2 changed files with 89 additions and 87 deletions

View File

@ -55,7 +55,7 @@ module.exports = {
HTTP_REQUEST_URL: process.env.NODE_ENV == 'development' ? httpApi : window.location.protocol + "//" + window
.location.host,
// 聊天长连接地址
VUE_APP_WS_URL: wsApi ? `${wsApi}?type=user` : VUE_APP_WS_URL,
VUE_APP_WS_URL: process.env.NODE_ENV == 'development' ? `${wsApi}?type=user` : VUE_APP_WS_URL,
// #endif
HTTP_REQUEST_URL_SIX: httpSix,
openPlantGrass: openPlantGrass,

View File

@ -24,6 +24,7 @@
</view>
</view>
<view v-if="historyList.length == 0" style="text-align: center; color: #999;">暂无搜索历史~</view>
<block v-if="isShop==false">
<view class='title'>热门搜索</view>
<view class='list acea-row' :style="{'height': hotSearchBox?'auto':'150rpx'}">
<block v-for="(item,index) in hotSearchList" :key="index">
@ -110,6 +111,7 @@
</view>
</view>
</view>
</block>
</view>
<!-- #ifndef H5 -->
<passwordPopup></passwordPopup>