[TOC]
### 仿美团搜索框组件
~~~
<template>
<div class="header-search">
<!-- 搜索框 -->
<div class="search-wrap">
<el-input v-model="search"
@focus="onFoucs"
@blur="onBlur"
@input="onInput"
placeholder="请输入内容" class="search-input"></el-input>
<el-button type="success" class="search-button"><i class="el-icon-search"></i></el-button>
</div>
<!-- 聚焦框 -->
<dl class="focus-wrapper" v-if="showHotWords">
<dt>热门搜索</dt>
<dd v-for="(item, index) in hotWords" :key="index"><nuxt-link to="/2">{{item}}</nuxt-link></dd>
</dl>
<!-- 输入关键词框 -->
<dl class="key-words" v-if="showSearchList">
<dd v-for="(item, index) in focusData" :key="index"><nuxt-link to="/1">{{item}}</nuxt-link></dd>
</dl>
<!-- 热门搜索 -->
<dl class="hot-keywords">
<dd v-for="(item,index) in searchData" :key="index"><nuxt-link to="/2">{{item}}</nuxt-link></dd>
</dl>
<!-- tag 标签 -->
<dl class="search-tag">
<dd>美团外卖</dd>
<dd>猫眼电影</dd>
<dd>美团酒店</dd>
<dd>民宿/公寓</dd>
<dd>商家入驻</dd>
<dd>美团公益</dd>
</dl>
</div>
</template>
<script type="text/ecmascript-6">
export default {
data() {
return {
// 搜索关键词
search: '',
// 获取焦点状态
isFocus: false,
// 热门搜索
hotWords: ['北京动物园', '故宫博物院', '故宫', '北京欢乐谷', '八达岭长城'],
// 聚焦框数据
focusData: ['火锅','火锅自助餐','火锅','火锅串串'],
// 搜索框数据
searchData: ['北京动物园','故宫博物院','故宫','北京欢乐谷','八达岭长城','欢乐水魔方','水上乐园','十渡蹦极俱乐部']
}
},
computed: {
// 获取焦点时,热门搜索框出现,输入关键词 热门搜索框隐藏
showHotWords() {
return this.isFocus && this.search.length === 0
},
// 获取焦点时,输入关键词,热门搜索隐藏,搜索列表显示
showSearchList() {
return this.isFocus && this.search;
}
},
methods: {
// 获取焦点
onFoucs() {
this.isFocus = true;
},
// 失去焦点
onBlur() {
setTimeout(() => {
this.isFocus = false;
}, 200)
},
// 监听input事件
onInput() {
console.log('input')
}
}
}
</script>
<style lang="scss" scoped>
.header-search {
position: relative;
padding-left: 154px;
/* 搜索框样式 */
.search-wrap {
display: flex;
.search-input {
width: 462px;
height: 40px;
/deep/ .el-input__inner {
border-top-right-radius: 0!important;
border-bottom-right-radius: 0!important;
border-right: none;
border-color: #13D1BE;
}
}
.search-button {
width: 88px;
height: 40px;
background: #13D1BE;
border-color: #13D1BE;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
}
/* 热搜词样式 */
.hot-keywords {
padding: 10px 0;
display: flex;
dd {
padding: 0 6px;
a {
color: #999;
}
}
}
/* tag样式 */
.search-tag {
padding-top: 30px;
color: #222;
display: flex;
dd {
font-weight: 700;
font-size: 16px;
margin-right: 20px;
cursor: pointer;
position: relative;
}
}
/* 聚焦框样式 */
.focus-wrapper {
position: absolute;
z-index: 1000;
width: 462px;
box-sizing: border-box;
padding: 10px 10px;
background-color: #f8f8f8;
border: 1px solid #E5E5E5;
border-top: none;
box-shadow: 0 3px 5px 0 rgba(0,0,0,.1);
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
dt {
margin-bottom: 10px;
}
dd {
display: inline-block;
margin-right: 10px;
line-height: 20px;
a {
color: #999;
&:hover {
color: #31BBAC;
}
}
}
}
/* 搜索关键词样式 */
.key-words {
position: absolute;
z-index: 1000;
width: 462px;
box-sizing: border-box;
padding: 10px 10px;
background-color: #f8f8f8;
border: 1px solid #E5E5E5;
border-top: none;
box-shadow: 0 3px 5px 0 rgba(0,0,0,.1);
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
dd {
color: #999;
line-height: 30px;
a {
color: #333;
&:hover {
color: #31BBAC;
}
}
}
}
}
</style>
~~~
- 起步
- 环境搭建
- mock数据
- 基础
- 生命周期
- 过滤器
- 过渡动画
- keyframes动画
- 动画JS钩子
- 路由
- 导航守卫
- 全局守卫
- 监听器
- 自定义组件
- 获取焦点
- mixins
- mixins抽离vuex
- 国际化
- 动态组件
- Dom
- 扩展
- 安装devTools
- scss
- Nuxt引用多个UI库
- vuex
- vuex命名空间
- vuex定义
- cli
- 安装与卸载
- 环境变量
- 杂项
- Mock数据
- FeHelper
- git
- 反向代理
- 本地存储
- stylus
- 常用mixins
- jsonp
- 配置
- mock配置
- 跨域配置
- 自定义路径
- px2rem
- 代理后端请求
- 常用算法
- 字母排序城市数据
- 倒计时
- 通讯录数据结构
- 请求
- axios防止多次请求
- 封装axios请求
- axios使用
- 封装axios
- 插件
- BetterScroll
- 高德定位
- polyfill
- fastClick
- LazyLoad
- storageCache
- moment
- keyFrameAnimation
- vueSwiper
- 组件
- Loading组件
- header组件
- 仿有道App导航
- SupportIcon
- 仿饿了么购物车跳动
- 购物车小球缓动
- 小球飞入购物车
- 仿音乐歌手列表
- 唱片飞入效果
- 搜索组件
- 仿美团PC搜索框
- 页面布局
- stickyFooter
- 背景色渐变
- 背景虚化
- Ui组件
- CubeUi
- CreateApi
- tab滑屏切换
- 索引列表
- BScroll
- BScroll左右联动导航
- vant
- 函数库
- 常用Dom函数库
- axios封装
- 格式化音乐播放时长
- 搜索节流
- time格式化
- JS基础
- window对象中的高度
- JS中的宽高
- 常用正则
- nuxt
- nuxtVuex
- 监听页面滚动
- 监听body滚动
- 监听局部滚动