直播系統程式碼,常用搜尋中搜尋歷史,搜尋推薦功能

zhibo系統開發發表於2023-11-14

直播系統程式碼,常用搜尋中搜尋歷史,搜尋推薦功能

HTML:

<template>
<view>
<view>
<view>
<input v-model="inpuValue" type="text"  @confirm="search"  />
<image src="%402x.png"></image>
</view>
<text @click="search">搜尋</text>
</view>
<view v-show="historyShow">
<view>
<text>歷史搜尋</text>
<image src="https://shanxi-petrochina.oss-cn-hangzhou.aliyuncs.com/home/ico_shanchu.png" @click="Delete"></image>
</view>
<view>
<text v-for="(item,index) in tagValueList" :key="index" @click="tagClick(item)">{{item}}</text>
</view>
</view>
<view>
<view>
<text>猜你可能在找</text>
</view>
<view>
<text v-for="(item,index) in historyItemList" :key="index" @click="tagClick(item.name)">{{item.name}}</text>
</view>
</view>
</view>
</template>


CSS:

<style scoped>
.page{
min-height: 100vh;
background: #F5F5F5;
padding: 20rpx 24rpx;
}
.header{
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
.inputBox{
width: 606rpx;
height: 60rpx;
background: #ECECEC;
border-radius: 30rpx;
position: relative;
input{
height: 60rpx;
background: #ECECEC;
border-radius: 30rpx;
padding-left: 72rpx;
padding-right: 20rpx;
font-size: 28rpx;
color: #000000;
}
image{
width: 32rpx;
height: 32rpx;
position: absolute;
left: 20rpx;
top: 0;
bottom: 0;
margin: auto;
}
}
.headerText{
font-size: 32rpx;
color: #606060;
line-height: 44rpx;
}
}

 以上就是直播系統程式碼,常用搜尋中搜尋歷史,搜尋推薦功能, 更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2995250/,如需轉載,請註明出處,否則將追究法律責任。

相關文章