|
|
<template>
|
|
|
<div class="search">
|
|
|
<div v-else class="input" @click='yoho.goSearch()'>
|
|
|
<span class="icon icon-search"></span> Search
|
|
|
<span class="icon icon-search"></span><span class="search-text">Search</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
...
|
...
|
@@ -9,7 +9,7 @@ |
|
|
.search {
|
|
|
width: 100%;
|
|
|
height: 85px;
|
|
|
padding: 15px 0;
|
|
|
padding: 15px 16px;
|
|
|
background-color: #f6f6f6;
|
|
|
text-align: center;
|
|
|
|
...
|
...
|
@@ -20,12 +20,14 @@ |
|
|
text-align: center;
|
|
|
color: #b0b0b0;
|
|
|
height: 56px;
|
|
|
width: 92%;
|
|
|
font-size: 28px;
|
|
|
padding: 5px 0;
|
|
|
border-radius: 8px;
|
|
|
}
|
|
|
|
|
|
.search-text {
|
|
|
margin-left: 16px;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
</style>
|
|
|
<script>
|
...
|
...
|
|