搜索完成

This commit is contained in:
luyuan 2020-06-03 17:17:05 +08:00
parent b5ef323612
commit d71c7fcc24
Signed by: theluyuan
GPG Key ID: A7972FD973317FF3
5 changed files with 240 additions and 10 deletions

View File

@ -0,0 +1,53 @@
<template>
<view class="shop">
<image></image>
<view class="info">
<text class="title">这是标题</text>
<text class="profile u-line-2">这是简介</text>
</view>
</view>
</template>
<script>
export default {
name:"shop",
data(){
return {
}
}
}
</script>
<style lang="scss" scoped>
.shop{
display: flex;
width: 690rpx;
height: 170rpx;
margin: 0 auto;
margin-bottom: 30rpx;
border-radius: 5rpx;
overflow: hidden;
>image{
width: 220rpx;
height: 170rpx;
flex-shrink: 0;
}
.info{
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
background-color: #f5f5f5;
padding: 30rpx;
>text:first-child{
font-size: 30rpx;
color:#333;
}
>text:last-child{
font-size: 28rpx;
color: #666;
margin-top: 20rpx;
}
}
}
</style>

69
pageB/search/index.vue Normal file
View File

@ -0,0 +1,69 @@
<template>
<view class="search">
<view class="sosuo">
<image></image>
<u-search placeholder="搜索您需要的商品" v-model="keyword" height="60" :action-style="{
'font-size':'32rpx',
'color':'#FF780F',
'overflow':'unset'
}"></u-search>
</view>
<view class="list">
<view class="title">搜索发现</view>
<view class="label">
<text>这是标签</text>
</view>
</view>
</view>
</template>
<script>
export default {
name:"search",
data(){
return{
keyword:""
}
}
}
</script>
<style lang="scss" scoped>
.search{
.sosuo{
width: 100%;
height: 88rpx;
border-bottom: 1rpx solid #ececec;
display: flex;
align-items: center;
padding: 0 30rpx;
>image{
width: 18rpx;
height: 32rpx;
margin-right: 24rpx;
flex-shrink: 0;
}
align-items: center;
}
.list{
padding: 30rpx;
.title{
font-size: 26rpx;
color: #999;
}
.label{
display: flex;
>text{
margin-top: 20rpx;
margin-right: 30rpx;
font-size: 26rpx;
color: #666;
text-align: center;
padding: 17rpx 12rpx;
background-color: #ececec;
border-radius: 10rpx;
}
}
}
}
</style>

102
pageB/search/out.vue Normal file
View File

@ -0,0 +1,102 @@
<template>
<view class="out">
<view class="sosuo">
<image></image>
<u-search placeholder="搜索您需要的商品" v-model="keyword" height="60" :show-action="false"></u-search>
</view>
<u-tabs-swiper @change="tabsChange" :show-bar="false" :bold="false" :font-size="32" active-color="#FF780F" ref="uTabs" :list="list" :is-scroll="false" style="border-bottom: 1px solid #ececec;flex-shrink:0" height="88"></u-tabs-swiper>
<swiper class="swiper" :current="swiperCurrent" @transition="transition" @animationfinish="animationfinish">
<swiper-item>
<scroll-view :scroll-y="true" style="height:100%">
<view style="padding-top:30rpx">
<shop></shop>
<shop></shop>
<shop></shop>
<shop></shop>
<shop></shop>
</view>
</scroll-view>
</swiper-item>
<swiper-item>
<scroll-view :scroll-y="true" style="height:100%">
<view class="list">
<darenItem style="margin-top:20rpx;margin-right:23rpx;box-shadow:0rpx 3rpx 7rpx 0rpx rgba(153, 153, 153, 0.35);" v-for="item in 50"></darenItem>
</view>
</scroll-view>
</swiper-item>
</swiper>
</view>
</template>
<style lang="scss" scoped>
.out{
display: flex;
flex-direction: column;
height: 100vh;
.sosuo{
width: 100%;
height: 88rpx;
border-bottom: 1rpx solid #ececec;
display: flex;
align-items: center;
padding: 0 30rpx;
flex-shrink: 0;
>image{
width: 18rpx;
height: 32rpx;
margin-right: 24rpx;
flex-shrink: 0;
}
align-items: center;
}
.swiper{
width: 100%;
height: 100%;
.list{
display: flex;
flex-wrap: wrap;
width: 100%;
padding-left: 30rpx;
}
}
}
</style>
<script>
import shop from "../components/search/shop"
import darenItem from "@/components/index/daren-item/index"
export default {
name:"out",
components:{
shop,
darenItem
},
data(){
return {
list:[
{
name:"店铺"
},{
name:"达人"
}
],
current: 0,
swiperCurrent: 0,
keyword:""
}
}, methods: {
tabsChange(index) {
this.swiperCurrent = index;
},
transition(e) {
let dx = e.detail.dx;
this.$refs.uTabs.setDx(dx);
},
animationfinish(e) {
let current = e.detail.current;
this.$refs.uTabs.setFinishCurrent(current);
this.swiperCurrent = current;
this.current = current;
}
}
}
</script>

View File

@ -55,6 +55,22 @@
}
}
}
},
{
"path": "search/index",
"style": {
"navigationBarTitleText": "",
"navigationStyle": "custom"
}
},
{
"path": "search/out",
"style": {
"navigationBarTitleText": "",
"navigationStyle": "custom"
}
}
]
},

View File

@ -186,16 +186,6 @@ export default {
zhiboItem,
indexad,
darenItem
},
methods:{
dianji(a){
console.log(a)
if(typeof a == "object"){
this.num = a.detail.current
}else{
this.num = a
}
}
}
}
</script>