| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <template>
- <div class="search-store-title">
- <span class="search-result">
- 搜索
- <span>"华商龙"</span>
- ,为您找到
- <span>1000</span>
- 家店铺:
- </span>
- <div class="tab-filter" >
- <div class="fl"> | 产品信息(<span class="text-num"></span><span class="text-num"></span>)</div>
- <div class="fr">
- <div class="active"><a >综合排序</a></div>
- <div class=""><a >现货优选</a></div>
- <div class=""><a >型号精确</a></div>
- <div class="off">
- <a @click="list_open=!list_open">
- <span v-text="list_open?'收起':'展开'"></span>
- <i class="fa fa-angle-down" v-show="!list_open"></i>
- <i class="fa fa-angle-up"v-show="list_open"></i>
- </a>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- data () {
- return {
- keyword: this.$route.query.w
- }
- }
- }
- </script>
- <style>
- .search-store-title {
- margin: 10px 0;
- }
- .search-store-title .search-result {
- }
- .tab-filter{
- width: 1190px;
- height: 40px;
- margin: 0 auto;
- line-height: 40px;
- margin-bottom: 10px;
- background: #f1efef;
- }
- .tab-filter .fl,.tab-filter .fr{
- float: left;
- }
- .tab-filter .fl{
- font-size: 14px;
- }
- .tab-filter .fr{
- max-width: 1050px;
- }
- .tab-filter .fl span{
- font-size: 14px;
- }
- .tab-filter .fr div{
- float: left;
- margin: 0 5px;
- }
- .tab-filter .fr div.active a{
- border: #5078cb 1px solid;
- color: #5078cb;
- }
- .tab-filter .fr a{
- display: inline-block;
- padding: 1px 10px;
- border: #ccc 1px solid;
- line-height: 26px;
- font-size: 14px;
- text-align: center;
- color: #333;
- max-height: 30px;
- background: #fff;
- }
- .tab-filter .fr a i{
- /*margin-left: 5px;*/
- }
- .tab-filter .fr a:hover{
- border: #5078cb 1px solid;
- color: #5078cb;
- }
- .tab-filter .off{
- float: right;
- margin-right: 20px;
- color: black;
- }
- .tab-filter .off a:hover{
- border: none;
- color: #5078cb;
- }
- .tab-filter .off a{
- border: none;
- text-align: right;
- padding-left: 360px;
- background: none;
- color: #333;
- }
- .tab-filter .off a i{
- font-size: 16px;
- }
- .tab-filter .fr .form-control{
- width: 70px;
- height: 30px;
- border-radius: 0;
- padding-left: 5px;
- }
- </style>
|