|
|
@@ -22,10 +22,21 @@
|
|
|
<img :src="item.logoUrl || '/images/component/default.png'">
|
|
|
</div>
|
|
|
<div class="list-item-phone">
|
|
|
- <p>电话:<span>{{item.enterprise.enTel}}</span></p>
|
|
|
+ <!--<div v-if="store.enterprise.enPhone"> <a :href="'tel:' + store.enterprise.enPhone" @click="clickPhone = true" :class="{'click-phone': clickPhone}">{{store.enterprise.enPhone}}</a></div>-->
|
|
|
+ <!--<div v-else><span>-</span></div>-->
|
|
|
+ <!--<p>电话:<span>{{item.enterprise.enTel || '-'}}</span></p>-->
|
|
|
+ <p v-if="item.enterprise.enTel" @click.stop="">
|
|
|
+ 电话:<a :href="'tel:' + item.enterprise.enTel" >{{item.enterprise.enTel}}</a>
|
|
|
+ </p>
|
|
|
+ <p v-else>电话:<span>-</span></p>
|
|
|
+ <!--<p>手机:<span>{{item.enterprise.enPhone || '-'}}</span></p>-->
|
|
|
+ <p v-if="item.enterprise.enPhone" @click.stop="">
|
|
|
+ 手机:<a :href="'tel:' + item.enterprise.enPhone" >{{item.enterprise.enPhone}}</a>
|
|
|
+ </p>
|
|
|
+ <p v-else>手机:<span>-</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>
|
|
|
+ <!--<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>
|
|
|
@@ -288,6 +299,9 @@
|
|
|
border-bottom: .1rem solid #e2e4e6;
|
|
|
/* padding-bottom:.1rem;*/
|
|
|
box-shadow: 0 .03rem .01rem 0 #cdcbcb96;
|
|
|
+ .click-phone{
|
|
|
+ color: #f44336;
|
|
|
+ }
|
|
|
h3{
|
|
|
font-size: .32rem;
|
|
|
line-height: .4rem;
|