secondNav.vue
2.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/**
二级导航栏
*/
<template>
<div class="secondNav">
<div class="contentNav">
<div class="logo">
<router-link to="/">
<icon-svg icon-class="logo" />
</router-link>
</div>
<div class="search">
<div class="searchSelect">
<el-dropdown @command="searchCommand" trigger="click">
<span class="el-dropdown-link">{{searchVal}}
<i class="el-icon-arrow-down cur-poi el-icon--right"></i>
</span>
<el-dropdown-menu slot="dropdown">
<el-dropdown-item command="宝贝">宝贝</el-dropdown-item>
<el-dropdown-item command="店铺">店铺</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
</div>
<div class="searchRight">
<input type="text" v-model="keyword" @keyup.enter="searchPro" placeholder="请输入搜索商品">
</div>
<span class="btn cur-poi" @click="searchPro"><i class="icon el-icon-search"></i></span>
</div>
</div>
</div>
</template>
<script>
import {mapMutations} from 'vuex'
export default {
data () {
return {
searchVal: '宝贝',
keyword: ''
}
},
methods: {
...mapMutations({
setSearchObj: 'SET_SEARCHOBJ'
}),
searchCommand (command) {
this.searchVal = command
},
searchPro () {
if (!this.keyword) { return this.$message.error('请输入搜索内容') }
this.setSearchObj({
keyword: this.keyword,
searchVal: this.searchVal
})
if (this.$route.name !== 'search') {
this.$router.push({
path: '/activity/search'
})
}
}
}
}
</script>
<style lang="scss" scoped>
.secondNav{
width: 100%;
.contentNav{
max-width: 1250px;
height: 80px;
margin: auto;
display: flex;
justify-content: space-between;
align-items: center;
.logo{
font-size: 60px;
}
.search{
width: 394px;
height: 39px;
border: 2px solid #F3F4F5;
display: flex;
.searchSelect{
width: 82px;
height: 30px;
margin-top: 2px;
border-right: 1px solid #CCCCCC;
text-align: center;
line-height: 30px;
.el-dropdown{
color: #C5AA7B;
}
}
.searchRight{
flex: 1;
input{
padding-left: 15px;
font-size: 14px;
color: #333;
line-height: 35px;
}
}
.btn{
font-size: 20px;
line-height: 35px;
padding-right: 15px;
}
}
}
}
</style>