|
|
@@ -11,22 +11,29 @@
|
|
|
<li @click="onDown('CONSIGNMENT')" v-show="downName !== '寄售'">寄售</li>
|
|
|
</ul>
|
|
|
</div>
|
|
|
- <div class="shop-list" v-for="item in searchLists" @click="goStoreDetail(item.uuid)" v-if="item">
|
|
|
- <h3>{{item.storeName}}</h3>
|
|
|
- <div class="list-item">
|
|
|
- <div class="item-img">
|
|
|
- <i :style="'background:url(' + isType(item.type) + ')no-repeat 0 0/.65rem .33rem;'"></i>
|
|
|
- <img :src="item.logoUrl || '/images/component/default.png'">
|
|
|
- </div>
|
|
|
- <div class="list-item-phone">
|
|
|
- <p>电话:<span>{{item.enterprise.enTel}}</span></p>
|
|
|
- <p>传真:<span>{{item.enterprise.enFax}}</span></p>
|
|
|
- <!--<p>商家介绍: <nuxt-link :to="'/mobile/merchantDescription/'+item.uuid">点击查看</nuxt-link></p>-->
|
|
|
- <p>联系商家:<a @click="selectStoreInfo(item, $event)">点击查看</a></p>
|
|
|
- <i class="iconfont icon-shoucang" :style="item.isFocus=='true'?'color:#ff7800':'color:#bbb'" @click="focusStore(item, $event)"></i>
|
|
|
+ <div v-if="searchLists && searchLists.length">
|
|
|
+ <div class="shop-list" v-for="item in searchLists" @click="goStoreDetail(item.uuid)">
|
|
|
+ <h3>{{item.storeName}}</h3>
|
|
|
+ <div class="list-item">
|
|
|
+ <div class="item-img">
|
|
|
+ <i :style="'background:url(' + isType(item.type) + ')no-repeat 0 0/.65rem .33rem;'"></i>
|
|
|
+ <img :src="item.logoUrl || '/images/component/default.png'">
|
|
|
+ </div>
|
|
|
+ <div class="list-item-phone">
|
|
|
+ <p>电话:<span>{{item.enterprise.enTel}}</span></p>
|
|
|
+ <p>传真:<span>{{item.enterprise.enFax}}</span></p>
|
|
|
+ <!--<p>商家介绍: <nuxt-link :to="'/mobile/merchantDescription/'+item.uuid">点击查看</nuxt-link></p>-->
|
|
|
+ <p>联系商家:<a @click="selectStoreInfo(item, $event)">点击查看</a></p>
|
|
|
+ <i class="iconfont icon-shoucang" :style="item.isFocus=='true'?'color:#ff7800':'color:#bbb'" @click="focusStore(item, $event)"></i>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <div class="com-none-state" v-else>
|
|
|
+ <img src="/images/mobile/@2x/search-empty.png">
|
|
|
+ <p>抱歉,暂无搜索结果</p>
|
|
|
+ <nuxt-link to="/">返回首页</nuxt-link>
|
|
|
+ </div>
|
|
|
<remind-box :title="collectResult" :timeoutCount="timeoutCount"></remind-box>
|
|
|
<loading v-show="isSearchingMore"></loading>
|
|
|
<div class="mobile-modal" v-if="showStoreInfo">
|