|
|
@@ -43,13 +43,22 @@
|
|
|
<div style="background: #FFFFFF;" v-if="isOpen">
|
|
|
<ul class = "shop-contact list-unstyled" style="padding: 15px 0; margin-bottom: 0; border-top: #e8e8e8 1px solid; margin-top: 20px;">
|
|
|
<li v-if="storeInfo.enterprise.enTel">
|
|
|
- <span>电话:</span><span v-text="storeInfo.enterprise.enTel"></span>
|
|
|
+ <span class="public">电话:</span><span v-text="storeInfo.enterprise.enTel"></span>
|
|
|
</li>
|
|
|
<li v-if="storeInfo.enterprise.enFax">
|
|
|
- <span>传真:</span><span v-text="storeInfo.enterprise.enFax"></span>
|
|
|
+ <span class="public">传真:</span><span v-text="storeInfo.enterprise.enFax"></span>
|
|
|
</li>
|
|
|
<li v-if="storeInfo.enterprise.address || storeInfo.enterprise.enAddress">
|
|
|
- <span>地址:</span><span v-text="storeInfo.enterprise.address || storeInfo.enterprise.enAddress"></span>
|
|
|
+ <span class="public">地址:</span><span v-text="storeInfo.enterprise.address || storeInfo.enterprise.enAddress"></span>
|
|
|
+ </li>
|
|
|
+ <li v-if="storeInfo.enterprise.enPhone || storeInfo.enterprise.enPhone">
|
|
|
+ <span class="public">手机:</span><span v-text="storeInfo.enterprise.enPhone || storeInfo.enterprise.enPhone"></span>
|
|
|
+ </li>
|
|
|
+ <li v-if="storeInfo.enterprise.enWeixin || storeInfo.enterprise.enWeixin">
|
|
|
+ <span class="public">微信:</span><span v-text="storeInfo.enterprise.enWeixin || storeInfo.enterprise.enWeixin"></span>
|
|
|
+ </li>
|
|
|
+ <li v-if="storeInfo.enterprise.enQQ || storeInfo.enterprise.enQQ">
|
|
|
+ <span class="public">Q Q:</span><span v-text="storeInfo.enterprise.enQQ || storeInfo.enterprise.enQQ"></span>
|
|
|
</li>
|
|
|
<li class="text-right">
|
|
|
<nuxt-link :to="{ name: 'store-uuid-description', params: { uuid: storeInfo.uuid } }">了解更多></nuxt-link>
|
|
|
@@ -315,6 +324,26 @@ export default {
|
|
|
#nav_fragment .shop-contact a{
|
|
|
color: rgb(33,71,151);
|
|
|
}
|
|
|
+ #nav_fragment .shop-contact li {
|
|
|
+ height: 25px;
|
|
|
+ }
|
|
|
+ #nav_fragment .shop-contact span{
|
|
|
+ display:inline-block;
|
|
|
+ height: 100%
|
|
|
+ }
|
|
|
+ #nav_fragment .shop-contact .public {
|
|
|
+ width:44px;
|
|
|
+ display:inline-block;
|
|
|
+ text-align: justify;
|
|
|
+ vertical-align:top;
|
|
|
+ }
|
|
|
+ #nav_fragment .shop-contact .public::after{
|
|
|
+ content:"";
|
|
|
+ display: inline-block;
|
|
|
+ width:100%;
|
|
|
+ overflow:hidden;
|
|
|
+ height:0;
|
|
|
+ }
|
|
|
|
|
|
#nav_fragment #search_input {
|
|
|
height: 40px;
|