roamfuding-xcx/page_user/sousuo/index.vue

406 lines
11 KiB
Vue
Raw Permalink Normal View History

2025-11-11 09:37:46 +08:00
<template>
<view class="page">
<u-navbar title="搜索" :border-bottom="false" :background="bgc" back-icon-color="#262B37" title-color='#262B37'
title-size='36' height='46' id="navbar">
</u-navbar>
<!-- 搜索区域 -->
<view class="search-container">
<view class="" style="display: flex;justify-content: space-between;">
<view class="search-box">
<view class="search-icon">
<u-icon name="search" color="#999" size="28"></u-icon>
</view>
<input
type="text"
v-model="searchKeyword"
placeholder="请输入搜索内容"
placeholder-style="color:#999"
class="search-input"
@confirm="handleSearch"
>
<view
class="clear-icon"
v-if="searchKeyword"
@click="clearSearch"
>
<u-icon name="close-circle" color="#999" size="24"></u-icon>
</view>
</view>
<view class="search-btn" @click="handleSearch">搜索</view>
</view>
<view class="tablist">
<view :class="tabindex == item.type ? 'active' : ''" v-for="(item,index) in tablist" :key="index" @click="btntab(item)">
{{item.name}}
</view>
</view>
</view>
<!-- 搜索内容区域 -->
<scroll-view class="content" @scrolltolower="handqixing" scroll-y refresher-enabled @refresherrefresh="onRefresh" :refresher-triggered="isRefreshing" refresher-default-style="black">
<view class="list" v-for="(item,index) in shujulist" :key="index" @click="btnitem(item)">
<view class="lt">
2025-12-20 14:32:28 +08:00
<video v-if="item.picture && isVideo(item.picture.split(',')[0]) && tabindex == 5" :src="item.picture.split(',')[0]" :controls="false"></video>
<image v-if="item.picture && isimg(item.picture.split(',')[0]) && tabindex == 5" :src="item.picture.split(',')[0]" mode="aspectFill" />
2025-11-11 09:37:46 +08:00
<image v-if="tabindex == 2" :src="item.photo ? item.photo.split(',')[0] : ''" mode="aspectFill"></image>
<image v-if="tabindex == 3" :src="item.imageUrl ? item.imageUrl.split(',')[0] : ''" mode="aspectFill"></image>
<image v-if="tabindex == 1 || tabindex == 4" :src="item.picture ? item.picture.split(',')[0] : ''" mode="aspectFill"></image>
</view>
<view class="rt">
<view class="top">
<view class="ltwz" v-if="tabindex == 5">
2026-03-16 10:00:58 +08:00
{{formatText(item.nickName, 10)}}
2025-11-11 09:37:46 +08:00
</view>
<view class="ltwz" v-if="tabindex == 4">
2026-03-16 10:00:58 +08:00
{{formatText(item.title, 10)}}
2025-11-11 09:37:46 +08:00
</view>
<view class="ltwz" v-if="tabindex == 1 || tabindex == 2 || tabindex == 3">
2026-03-16 10:00:58 +08:00
{{formatText(item.name, 10)}}
2025-11-11 09:37:46 +08:00
</view>
<view class="rtwz">
详情 <u-icon name="arrow-right" color="#1EC28B" size="28"></u-icon>
</view>
</view>
<view class="jianjie" v-if="tabindex == 5">
2026-03-16 10:00:58 +08:00
{{formatText(item.content, 60)}}
2025-11-11 09:37:46 +08:00
</view>
<view class="jianjie" v-if="item.description != null">
2026-03-16 10:00:58 +08:00
{{formatText(item.description, 60)}}
2025-11-11 09:37:46 +08:00
</view>
</view>
</view>
<view class="" style="width: 100%;margin-top: 20rpx;text-align: center;color: #999;">
当前没有更多数据了...
</view>
</scroll-view>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: "#fff",
},
searchKeyword: '', // 搜索关键词
tablist:[{name:'景区',type:1},{name:'攻略',type:2},{name:'美食',type:3},{name:'文化',type:4},{name:'动态',type:5},],
tabindex:1,
isRefreshing:false,
pageNum:1,
total:0,
shujulist:[]
}
},
onLoad() {
this.getlist()
},
2026-03-16 10:00:58 +08:00
// 分享到好友(会话)
onShareAppMessage: function() {
return {
title: '玩转福鼎',
path: '/page_user/sousuo/index'
}
},
// 分享到朋友圈
onShareTimeline: function() {
return {
title: '玩转福鼎',
query: '',
path: '/page_user/sousuo/index'
}
},
2025-11-11 09:37:46 +08:00
methods: {
2026-03-16 10:00:58 +08:00
// 格式化文本去除HTML标签并截取长度
formatText(text, maxLength = 60) {
if (!text || typeof text !== 'string') return ''
// 去除所有HTML标签
let plainText = text.replace(/<[^>]+>/g, '')
// 去除多余的空白字符
plainText = plainText.replace(/\s+/g, ' ').trim()
// 截取长度并添加省略号
if (plainText.length > maxLength) {
return plainText.slice(0, maxLength) + '...'
}
return plainText
},
2025-12-20 14:32:28 +08:00
// 判断获取的数据是否为视频(通过后缀名)
isVideo(url) {
if (!url || typeof url !== 'string') return false
const lower = url.split('?')[0].toLowerCase()
return ['.mp4','.mov','.m4v','.mkv','.avi','.wmv','.flv','.webm','.3gp'].some(ext => lower.endsWith(ext))
},
// 判断获取的数据是否为视频(通过后缀名)
isimg(url) {
if (!url || typeof url !== 'string') return false
const lower = url.split('?')[0].toLowerCase()
return ['.png','.jpg'].some(ext => lower.endsWith(ext))
},
2025-11-11 09:37:46 +08:00
// 点击进行详情跳转
btnitem(item){
console.log(item)
if(this.tabindex == 1){ //1是请求景区详情
uni.navigateTo({
url:'/page_fenbao/remenxq?id=' + item.id
})
}else if(this.tabindex == 2){ //2是请求攻略详情
uni.navigateTo({
url:'/page_fenbao/gonglue/gongluexq?id=' + item.id
})
}else if(this.tabindex == 3){ //3是请求美食详情
uni.navigateTo({
url:'/page_user/meishi/meishixq?id=' + item.id
})
}else if(this.tabindex == 4){ //4是请求文化详情
uni.navigateTo({
url:'/page_user/wenhua/wenhuaxq?id=' + item.id
})
}else if(this.tabindex == 5){ //5是请求动态详情
uni.navigateTo({
url:'/page_fenbao/guangchang/dongtaixq?id=' + item.id
})
}
},
// 执行搜索
handleSearch() {
2025-12-20 14:32:28 +08:00
uni.showLoading({
title: '加载中...',
mask: true
})
2025-11-11 09:37:46 +08:00
this.pageNum = 1
this.getlist()
},
// 上拉加载更多
handqixing() {
2025-12-20 14:32:28 +08:00
if(this.total > this.shujulist.length){
this.getlist()
}else{
console.log(111);
}
2025-11-11 09:37:46 +08:00
console.log('加载更多')
},
// 下拉刷新
onRefresh() {
this.isRefreshing = true
this.pageNum = 1
setTimeout(() => {
this.getlist()
this.isRefreshing = false
}, 100)
},
// 点击进行tab切换
btntab(item){
2025-12-20 14:32:28 +08:00
uni.showLoading({
title: '数据加载中...',
mask: true
})
this.shujulist = []
2025-11-11 09:37:46 +08:00
this.tabindex = item.type
this.pageNum = 1
this.getlist()
},
// 清空搜索
clearSearch() {
this.searchKeyword = ''
this.searchResult = []
},
// 请求景区列表
getlist(){
if(this.tabindex == 1){ //1是请求景区列表
this.$u.get(`/app/scenicArea/list?pageNum=${this.pageNum}&pageSize=20&keyword=${this.searchKeyword}`).then(res =>{
if(res.code == 200){
this.total = res.total
if(this.pageNum == 1){
this.shujulist = res.rows
this.pageNum++
2025-12-20 14:32:28 +08:00
uni.hideLoading()
2025-11-11 09:37:46 +08:00
}else{
this.shujulist = this.shujulist.concat(res.rows)
his.pageNum++
2025-12-20 14:32:28 +08:00
uni.hideLoading()
2025-11-11 09:37:46 +08:00
}
}
})
}else if(this.tabindex == 2){ //2是请求攻略列表
this.$u.get(`/app/strategy/list?pageNum=${this.pageNum}&pageSize=20&keyword=${this.searchKeyword}`).then(res =>{
if(res.code == 200){
this.total = res.total
if(this.pageNum == 1){
this.shujulist = res.rows
this.pageNum++
2025-12-20 14:32:28 +08:00
uni.hideLoading()
2025-11-11 09:37:46 +08:00
}else{
this.shujulist = this.shujulist.concat(res.rows)
this.pageNum++
2025-12-20 14:32:28 +08:00
uni.hideLoading()
2025-11-11 09:37:46 +08:00
}
}
})
}else if(this.tabindex == 3){ //3是请求美食列表
this.$u.get(`/app/dish/list?pageNum=${this.pageNum}&pageSize=20&keyword=${this.searchKeyword}`).then(res =>{
if(res.code == 200){
this.total = res.total
if(this.pageNum == 1){
this.shujulist = res.rows
this.pageNum++
2025-12-20 14:32:28 +08:00
uni.hideLoading()
2025-11-11 09:37:46 +08:00
}else{
this.shujulist = this.shujulist.concat(res.rows)
this.pageNum++
2025-12-20 14:32:28 +08:00
uni.hideLoading()
2025-11-11 09:37:46 +08:00
}
}
})
}else if(this.tabindex == 4){ //4是请求文化列表
2026-03-16 10:00:58 +08:00
this.$u.get(`/app/article/list?pageNum=${this.pageNum}&pageSize=20&keyword=${this.searchKeyword}&type=2`).then(res =>{
2025-11-11 09:37:46 +08:00
if(res.code == 200){
this.total = res.total
if(this.pageNum == 1){
this.shujulist = res.rows
this.pageNum++
2025-12-20 14:32:28 +08:00
uni.hideLoading()
2025-11-11 09:37:46 +08:00
}else{
this.shujulist = this.shujulist.concat(res.rows)
this.pageNum++
2025-12-20 14:32:28 +08:00
uni.hideLoading()
2025-11-11 09:37:46 +08:00
}
}
})
}else if(this.tabindex == 5){ //5是请求动态列表
this.$u.get(`/app/feed/list?pageNum=${this.pageNum}&pageSize=20&keyword=${this.searchKeyword}`).then(res =>{
if(res.code == 200){
this.total = res.total
if(this.pageNum == 1){
this.shujulist = res.rows
this.pageNum++
2025-12-20 14:32:28 +08:00
uni.hideLoading()
2025-11-11 09:37:46 +08:00
}else{
this.shujulist = this.shujulist.concat(res.rows)
this.pageNum++
2025-12-20 14:32:28 +08:00
uni.hideLoading()
2025-11-11 09:37:46 +08:00
}
}
})
}
}
}
}
</script>
<style lang="scss">
.active{
border-bottom: 3px solid #1EC28B;
font-weight: 600 !important;
font-size: 30rpx !important;
color: #000 !important;
}
page {
background: #f5f5f5;
overflow: hidden;
}
// 搜索容器
.search-container {
padding: 20rpx 30rpx;
background: #fff;
border-bottom: 1px solid #f1f1f1;
padding-bottom: 0;
.tablist{
display: flex;
justify-content: space-between;
padding: 0 20rpx;
box-sizing: border-box;
margin-top: 30rpx;
view{
color: #666;
font-size: 28rpx;
padding-bottom: 10rpx;
}
}
.search-box {
flex: 1;
display: flex;
align-items: center;
background: #f5f5f5;
border-radius: 60rpx;
padding: 14rpx 24rpx;
.search-icon {
margin-right: 16rpx;
}
.search-input {
flex: 1;
font-size: 28rpx;
color: #333;
height: 40rpx;
line-height: 40rpx;
}
.clear-icon {
margin-left: 16rpx;
display: flex;
align-items: center;
}
}
.search-btn {
width: 120rpx;
height: 68rpx;
line-height: 68rpx;
text-align: center;
font-size: 28rpx;
color: #262B37;
font-weight: 500;
margin-left: 20rpx;
background-color: #1EC28B;
border-radius: 10rpx;
color: #fff;
}
}
// 内容区域
.content {
height: 77vh;
padding-bottom: 30rpx;
overflow: scroll;
.list{
width: 700rpx;
height: 230rpx;
background-color: #fff;
margin: auto;
margin-top: 10rpx;
border-radius: 10rpx;
display: flex;
padding: 20rpx;
box-sizing: border-box;
overflow: hidden;
.lt{
width: 180rpx;
height: 180rpx;
margin-right: 20rpx;
2025-12-20 14:32:28 +08:00
video{
width: 180rpx;
height: 180rpx;
border-radius: 10rpx;
}
2025-11-11 09:37:46 +08:00
image{
width: 180rpx;
height: 180rpx;
border-radius: 10rpx;
}
}
.rt{
.top{
display: flex;
justify-content: space-between;
width: 460rpx;
.ltwz{
font-size: 30rpx;
font-weight: 600;
}
.rtwz{
color: #1EC28B;
}
}
.jianjie{
color: #999;
margin-top: 10rpx;
}
}
}
}
</style>