You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yanzong_qianduan/pages/search/index.vue

409 lines
8.9 KiB

11 months ago
<template>
<view class="container">
<view class="search">
10 months ago
<image :src="$picUrl+'/static/home/search.png'" mode="" class="searchIcon"></image>
<input v-model="searchValue" class="input" focus="true" placeholder="请输入您搜索的商品" type="text" />
10 months ago
<view class="searchBtn" @click="getSearchInfo">
搜索
</view>
</view>
<view class="find">
<view class="findTitle">
9 months ago
<text>搜索发现</text>
<image src="/static/search/openEye.png" mode="widthFix" class="findIcon" v-if="showEye" @click="showEye=!showEye">
</image>
9 months ago
<image src="/static/search/closeEye.png" mode="widthFix" class="findIcon" v-if="!showEye" @click="showEye=!showEye">
</image>
</view>
9 months ago
<view class="others" @click="getHot">
换一批
</view>
</view>
10 months ago
<view class="hotSearch" v-if="showEye">
9 months ago
<view v-for="(item,index) in searchFindList" :key="index" class="hotItem" @click="searchGoods(item)">
<image src="/static/user/hot.png" mode="" class="hotImg" v-if="index==0"></image>
9 months ago
<text>{{item.word}}</text>
</view>
</view>
10 months ago
<view class="hotSuggest">
<scroll-view class="hotList" scroll-x="true" @scroll="scroll">
9 months ago
<view class="hotItem" v-for="(item,index) in goodsList" :key="index">
10 months ago
<view class="itemHeade">
9 months ago
<image src="/static/search/hotImg.png" mode="widthFix"></image>
9 months ago
<view class="headTitle">{{item.name}}</view>
10 months ago
</view>
9 months ago
<view class="itemMain" v-for="(s,k) in item.goods_list.slice(0,5)" :key="k">
10 months ago
<view class="num1 numCommon" v-if="k==0">
9 months ago
<text>{{k+1}}</text>
10 months ago
</view>
<view class="num2 numCommon" v-if="k==1">
9 months ago
<text>{{k+1}}</text>
10 months ago
</view>
<view class="num3 numCommon" v-if="k==2">
9 months ago
<text>{{k+1}}</text>
</view>
<view class="num4 numCommon" v-if="k>2">
<text>{{k+1}}</text>
10 months ago
</view>
9 months ago
<view class="picContent" v-if="k<3">
9 months ago
<!-- <image :src="$picUrl+'/static/index/goods.png'" mode="aspectFit" class="goodsImg"></image> -->
<image :src="s.goods_image" mode="aspectFit" class="goodsImg"></image>
10 months ago
</view>
<view class="goodsInfo">
<view class="goodName">
9 months ago
{{s.goods_name}}
10 months ago
</view>
<view class="goodsSale" v-if="k<3">
9 months ago
{{s.selling_point}}
10 months ago
</view>
</view>
</view>
</view>
</scroll-view>
</view>
</view>
11 months ago
</template>
<script>
9 months ago
import * as GoodsApi from '@/api/home/index.js';
export default {
data() {
return {
showEye: true,
searchValue: 'iPhone15',
searchData: [],
9 months ago
searchList: [],
9 months ago
searchFindList:[],
page:1,
goodsList:[],
}
},
onShow() {
9 months ago
// if(uni.getStorageSync('searchList')){
// this.searchList = uni.getStorageSync('searchList')
// this.searchList = Array.from(new Set(this.searchList));
// }
},
onLoad() {
10 months ago
this.getHot()
9 months ago
this.chartsGoodsJingHandle()
},
methods: {
9 months ago
changePage(){
GoodsApi.searchFind({page:this.page}).then(res => {
if(res.data.length==0){
this.page=1;
}else{
this.page++
}
this.getHot()
})
},
10 months ago
getHot(){
9 months ago
GoodsApi.searchFind({page:this.page}).then(res => {
if(res.data.length==0){
this.page=1;
}else{
this.page++;
this.searchFindList = res.data;
}
})
10 months ago
},
searchGoods(item){
9 months ago
// this.searchList.push(this.searchValue)
// this.searchList = Array.from(new Set(this.searchList));
// uni.setStorageSync('searchList', this.searchList)
uni.navigateTo({
url: '/pages/goods/list?search=' + item.word
})
},
getSearchInfo() {
10 months ago
// 搜索
uni.navigateTo({
url: '/pages/goods/list?search=' + this.searchValue
})
10 months ago
},
9 months ago
chartsGoodsJingHandle(){
GoodsApi.chartsGoodsJingApi().then(res => {
console.log(res,"8899")
this.goodsList = res.data;
})
}
}
}
11 months ago
</script>
<style lang="scss" scoped>
.container {
9 months ago
padding: 40rpx 0;
min-height: 100vh;
background: #f7f7f7;
}
.search {
9 months ago
// width: 680rpx;
height: 64rpx;
background: #FFFFFF;
border-radius: 68rpx 68rpx 68rpx 68rpx;
opacity: 1;
border: 2rpx solid #F3202A;
9 months ago
// margin: 10rpx 0 0 20rpx;
display: flex;
align-items: center;
9 months ago
margin:0 40rpx;
.searchIcon {
width: 28rpx;
height: 28rpx;
opacity: 1;
margin: 0rpx 0 0 26rpx;
}
.input {
flex: 1;
padding-left: 20rpx;
}
.searchBtn {
width: 126rpx;
height: 56rpx;
background: #F3202A;
border-radius: 48rpx 48rpx 48rpx 48rpx;
opacity: 1;
line-height: 56rpx;
text-align: center;
margin-right: 4rpx;
font-size: 28rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #FFFFFF;
}
}
10 months ago
.find {
display: flex;
justify-content: space-between;
align-items: center;
9 months ago
margin:0 40rpx;
margin-top: 44rpx;
10 months ago
.findTitle {
9 months ago
// width: 200rpx;
// height: 44rpx;
// font-size: 32rpx;
// font-family: PingFang SC, PingFang SC;
// font-weight: 500;
// color: #000000;
// line-height: 44rpx;
// margin-left: 40rpx;
&>text{
font-size: 32rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 500;
color: #000000;
}
10 months ago
.findIcon {
width: 36rpx;
9 months ago
height: auto;
border-radius: 0rpx 0rpx 0rpx 0rpx;
opacity: 1;
margin-left: 22rpx;
9 months ago
margin-top:3rpx;
position: relative;
top:4rpx;
}
}
10 months ago
.others {
9 months ago
font-size: 24rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #8D8D8D;
9 months ago
margin-right: 14rpx;
}
}
10 months ago
.hotSearch {
display: flex;
align-items: center;
flex-wrap: wrap;
9 months ago
margin:0 40rpx;
margin-top: 20rpx;
9 months ago
justify-content: space-between;
9 months ago
10 months ago
.hotItem {
9 months ago
padding:10rpx 30rpx;
background: #FFFFFF;
9 months ago
border-radius: 34px 34px 34px 34px;
opacity: 1;
9 months ago
display: flex;
align-items: center;
9 months ago
margin-left:12rpx;
// margin:0 20rpx;
margin-bottom: 24rpx;
9 months ago
// height: 64rpx;
// background: #FFFFFF;
// border-radius: 68rpx 68rpx 68rpx 68rpx;
// opacity: 1;
// font-size: 28rpx;
// font-family: PingFang SC, PingFang SC;
// font-weight: 400;
// color: #000000;
// line-height: 64rpx;
// padding-right: 22rpx;
// margin-right: 12rpx;
// margin-bottom: 24rpx;
// padding-left: 30rpx;
10 months ago
.hotImg {
width: 25rpx;
height: 29rpx;
opacity: 1;
}
}
}
.hotSuggest {
10 months ago
width: 100%;
9 months ago
// margin-left: 32rpx;
margin-top:12rpx;
margin-left:40rpx;
padding-right: 40rpx;
.hotList {
width: 100%;
10 months ago
white-space: nowrap;
.hotItem {
9 months ago
margin-right: 30rpx;
10 months ago
display: inline-block;
width: 484rpx;
height: 612rpx;
overflow-y: auto;
background-image: url('../../static/search/hotBack.png');
background-size: 100% 100%;
10 months ago
border-radius: 8rpx 8rpx 8rpx 8rpx;
opacity: 1;
9 months ago
padding:18rpx 20rpx 48rpx 20rpx;
// border: 2rpx solid #FFFFFF;
.itemHeade {
10 months ago
display: flex;
align-items: center;
9 months ago
margin-bottom:46rpx;
image {
10 months ago
width: 48rpx;
9 months ago
height: auto;
10 months ago
}
9 months ago
.headTitle {
9 months ago
10 months ago
font-size: 28rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 600;
color: #F3202A;
9 months ago
margin-left:14rpx;
10 months ago
}
}
.itemMain {
10 months ago
display: flex;
align-items: center;
9 months ago
margin-bottom: 22rpx;
// margin: 22rpx 0 0 26rpx;
.numCommon {
10 months ago
width: 34rpx;
height: 28rpx;
background-size: 100% 100%;
text-align: center;
font-size: 20rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 600;
color: #FFFFFF;
9 months ago
// line-height: 28rpx;
display: flex;
align-items: center;
justify-content: center;
9 months ago
flex-shrink: 0;
9 months ago
text{
position: relative;
left:-1rpx;
}
10 months ago
}
.num1 {
10 months ago
background-image: url('/static/search/first.png');
}
.num2 {
10 months ago
background-image: url('/static/search/second.png');
}
.num3 {
10 months ago
background-image: url('/static/search/third.png');
}
.num4 {
10 months ago
background-image: url('/static/search/common.png');
}
9 months ago
.picContent{
10 months ago
width: 100rpx;
height: 90rpx;
border-radius: 8rpx 8rpx 8rpx 8rpx;
9 months ago
overflow: hidden;
10 months ago
margin-left: 10rpx;
9 months ago
flex-shrink: 0;
9 months ago
.goodsImg {
width: 100%;
height:100%;
// opacity: 1;
//
}
10 months ago
}
9 months ago
.goodsInfo {
10 months ago
margin-left: 18rpx;
9 months ago
width: calc(100% - 160rpx);
.goodName {
9 months ago
// width: 138rpx;
// height: 34rpx;
10 months ago
font-size: 24rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #000000;
line-height: 34rpx;
text-align: center;
9 months ago
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
10 months ago
}
.goodsSale {
9 months ago
// width: 96rpx;
// height: 34rpx;
10 months ago
font-size: 24rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #9B9B9B;
line-height: 34rpx;
margin-top: 6rpx;
9 months ago
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
10 months ago
}
}
}
}
}
}
11 months ago
</style>