1
|
<template>
|
1
|
<template>
|
2
|
<div class="search">
|
2
|
<div class="search">
|
3
|
<div v-else class="input" @click='yoho.goSearch()'>
|
3
|
<div v-else class="input" @click='yoho.goSearch()'>
|
4
|
- <span class="icon icon-search"></span> Search
|
4
|
+ <span class="icon icon-search"></span><span class="search-text">Search</span>
|
5
|
</div>
|
5
|
</div>
|
6
|
</div>
|
6
|
</div>
|
7
|
</template>
|
7
|
</template>
|
|
@@ -9,7 +9,7 @@ |
|
@@ -9,7 +9,7 @@ |
9
|
.search {
|
9
|
.search {
|
10
|
width: 100%;
|
10
|
width: 100%;
|
11
|
height: 85px;
|
11
|
height: 85px;
|
12
|
- padding: 15px 0;
|
12
|
+ padding: 15px 16px;
|
13
|
background-color: #f6f6f6;
|
13
|
background-color: #f6f6f6;
|
14
|
text-align: center;
|
14
|
text-align: center;
|
15
|
|
15
|
|
|
@@ -20,12 +20,14 @@ |
|
@@ -20,12 +20,14 @@ |
20
|
text-align: center;
|
20
|
text-align: center;
|
21
|
color: #b0b0b0;
|
21
|
color: #b0b0b0;
|
22
|
height: 56px;
|
22
|
height: 56px;
|
23
|
- width: 92%;
|
|
|
24
|
font-size: 28px;
|
23
|
font-size: 28px;
|
25
|
padding: 5px 0;
|
24
|
padding: 5px 0;
|
26
|
border-radius: 8px;
|
25
|
border-radius: 8px;
|
27
|
- }
|
|
|
28
|
|
26
|
|
|
|
27
|
+ .search-text {
|
|
|
28
|
+ margin-left: 16px;
|
|
|
29
|
+ }
|
|
|
30
|
+ }
|
29
|
}
|
31
|
}
|
30
|
</style>
|
32
|
</style>
|
31
|
<script>
|
33
|
<script>
|