EP44 搜索页面的搜索结果图片展示

文件路径: E:/homework/uniappv3tswallpaper/api/apis.js

添加了搜索结果的api。

import {
	request
} from "@/utils/requset.js"

export function apiGetBanner() {
	return request({
		url: "/homeBanner"
	})
}
export function apiGetDayRandom() {
	return request({
		url: "/randomWall"
	})
}

export function apiGetRequest(data = {}) {
	return request({
		url: '/wallNewsList',
		data
	})
}

export function apiGetClassify(data = {}) {
	return request({
		url: '/classify',
		data
	})
}

export function apiGetCLassList(data = {}) {
	return request({
		url: '/wallList',
		data
	})
}

export function apiGetSetupScore(data = {}) {
	return request({
		url: '/setupScore',
		data
	})
}

export function apiWriteDownload(data = {}) {
	return request({
		url: '/downloadWall',
		data
	})
}

export function apiGetDetailWall(data = {}) {
	return request({
		url: '/detailWall',
		data
	})
}

export function apiGetUserInfo(data = {}) {
	return request({
		url: '/userInfo',
		data
	})
}

export function apiGetUserWallList(data = {}) {
	return request({
		url: '/userWallList',
		data
	})
}

export function apiGetWallNewsList(data = {}) {
	return request({
		url: '/wallNewsDetail',
		data
	})
}

export function apiGetSearchWall(data = {}) {
	return request({
		url: '/searchWall',
		data
	})
}

文件路径: E:/homework/uniappv3tswallpaper/pages/search/search.vue

发请求获取数据;触底加载更多,拼接数组;没有搜索结果的时候展现没有搜索结果组件。
有搜索结果的时候,触发另一个搜索,展示搜索结果时,需要将列表和参数置空。
点击列表图片跳转到 preview 页面的时候需要将列表信息存入本地存储。

<template>
	<view class="searchLayout">
		<view class="search">
			<uni-search-bar @confirm="onSearch" @cancel="onClear" @clear="onClear" focus placeholder="搜索"
				v-model="queryParams.keyword">
			</uni-search-bar>
		</view>


		<view>
			<view class="history" v-if="historySearch.length">
				<view class="topTitle">
					<view class="text">最近搜索</view>
					<view class="icon" @click="removeHistory">
						<uni-icons type="trash" size="25"></uni-icons>
					</view>
				</view>
				<view class="tabs">
					<view class="tab" v-for="tab in historySearch" :key="tab" @click="clickTab(tab)">{{tab}}</view>
				</view>
			</view>

			<view class="recommend">
				<view class="topTitle">
					<view class="text">热门搜索</view>
				</view>
				<view class="tabs">
					<view class="tab" v-for="tab in recommendList" :key="tab" @click="clickTab(tab)">{{tab}}</view>
				</view>
			</view>
		</view>


		<view class="noSearch" v-if="noSearch">
			<uv-empty mode="search" icon="http://cdn.uviewui.com/uview/empty/search.png"></uv-empty>
		</view>


		<view v-else>
			<view class="list">
				<navigator :url="`/pages/preview/preview?id=${item._id}`" class="item" v-for="item in classList"
					:key="item._id">
					<image :src="item.smallPicurl" mode="aspectFill"></image>
				</navigator>
			</view>
			<view class="loadingLayout" v-if="noData || classList.length"><uni-load-more
					:status="noData?'noMore':'loading'" /></view>
		</view>


	</view>
</template>

<script setup>
	import {
		ref
	} from "vue";
	import {
		onLoad,
		onUnload,
		onReachBottom
	} from "@dcloudio/uni-app";
	import {
		apiGetSearchWall
	} from "@/api/apis.js"

	//查询参数
	const queryParams = ref({
		pageNum: 1,
		pageSize: 12,
		keyword: ""
	})

	//搜索历史词
	const historySearch = ref(uni.getStorageSync("historySearch") || []);

	//热门搜索词
	const recommendList = ref(["美女", "帅哥", "宠物", "卡通"]);

	//没有更多
	const noData = ref(false);
	//没有搜索结果
	const noSearch = ref(false);

	//搜索结果列表
	const classList = ref([]);


	//点击搜索
	const onSearch = () => {
		uni.showLoading({

		})
		historySearch.value = [...new Set([queryParams.value.keyword, ...historySearch.value])].splice(0, 10)
		uni.setStorageSync("historySearch", historySearch.value)
		initParams(queryParams.value.keyword)
		searchData()
		// console.log(queryParams.value.keyword)
	}

	// 发请求
	const searchData = async () => {
		try {
			let res = await apiGetSearchWall(queryParams.value)
			classList.value = [...classList.value, ...res.data]
			uni.setStorageSync("storageClassList", classList.value)
			if (queryParams.value.pageSize > res.data.length) {
				noData.value = true
			}
			if (res.data.length == 0 && classList.value.length == 0) {
				noSearch.value = true
			}
			// console.log(classList.value, uni.getStorageSync("storeClassList"))
		} finally {
			uni.hideLoading()
		}

	}

	//点击清除按钮
	const onClear = () => {
		initParams()
	}

	// 	复原列表
	const initParams = (value = "") => {
		classList.value = []
		noSearch.value = false
		noData.value = false
		queryParams.value = {
			pageNum: 1,
			pageSize: 12,
			keyword: value || ""
		}
	}



	//点击标签进行搜索
	const clickTab = (value) => {
		initParams(value)
		onSearch()
	}


	//点击清空搜索记录
	const removeHistory = () => {
		uni.showModal({
			title: "是否清空历史搜索?",
			success: res => {
				if (res.confirm) {
					uni.removeStorageSync("historySearch")
					historySearch.value = []
				}
			}
		})
	}

	//触底加载更多
	onReachBottom(() => {
		// console.log(noData.value)
		if (noData.value) {
			return
		}
		queryParams.value.pageNum++
		searchData()
	})

	//关闭有页面
	onUnload(() => {
		uni.removeStorageSync("storageClassList")
	})
</script>

<style lang="scss" scoped>
	.searchLayout {
		.search {
			padding: 0 10rpx;
		}

		.topTitle {
			display: flex;
			justify-content: space-between;
			align-items: center;
			font-size: 32rpx;
			color: #999;
		}

		.history {
			padding: 30rpx;
		}

		.recommend {
			padding: 30rpx;
		}

		.tabs {
			display: flex;
			align-items: center;
			flex-wrap: wrap;
			padding-top: 20rpx;

			.tab {
				background: #F4F4F4;
				font-size: 28rpx;
				color: #333;
				padding: 10rpx 28rpx;
				border-radius: 50rpx;
				margin-right: 20rpx;
				margin-top: 20rpx;
			}
		}

		.list {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 5rpx;
			padding: 20rpx 5rpx;

			.item {
				height: 440rpx;

				image {
					width: 100%;
					height: 100%;
					display: block;
				}
			}
		}
	}
</style>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值