|
|
@@ -4,12 +4,12 @@
|
|
|
<div class="container">
|
|
|
<div class="menu-com row">
|
|
|
<div class="menu-title col-md-12">
|
|
|
- <a href="/">商城首页</a> >
|
|
|
- <a href="/provider/home" v-if="storeInfo.type == 'AGENCY' || storeInfo.type == 'DISTRIBUTION'" title="代理经销">代理经销</a>
|
|
|
- <a href="/provider/factories" v-if="storeInfo.type == 'ORIGINAL_FACTORY'" title="原厂专区">原厂专区</a>
|
|
|
- <a :href="'/store/' + storeInfo.uuid" v-if="storeInfo.type == 'CONSIGNMENT'" title="库存寄售">库存寄售</a>
|
|
|
+ <nuxt-link to="/">商城首页</nuxt-link> >
|
|
|
+ <nuxt-link to="/provider/home" v-if="storeInfo.type == 'AGENCY' || storeInfo.type == 'DISTRIBUTION'" title="代理经销">代理经销</nuxt-link>
|
|
|
+ <nuxt-link to="/provider/factories" v-if="storeInfo.type == 'ORIGINAL_FACTORY'" title="原厂专区">原厂专区</nuxt-link>
|
|
|
+ <nuxt-link :to="'/store/' + storeInfo.uuid" v-if="storeInfo.type == 'CONSIGNMENT'" title="库存寄售">库存寄售</nuxt-link>
|
|
|
>
|
|
|
- <span v-if="storeInfo.type != 'CONSIGNMENT'"><a :href="'/store/' + storeInfo.uuid" :title="storeInfo.storeName" v-text="storeInfo.storeName">店铺名称</a>> </span>
|
|
|
+ <span v-if="storeInfo.type != 'CONSIGNMENT'"><nuxt-link :to="'/store/' + storeInfo.uuid" :title="storeInfo.storeName" v-text="storeInfo.storeName">店铺名称</nuxt-link>> </span>
|
|
|
<span>了解更多</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -17,7 +17,7 @@
|
|
|
<h3 class="col-xs-2">
|
|
|
商家介绍
|
|
|
</h3>
|
|
|
- <a class="col-xs-10" :href="'/store/' + storeInfo.uuid">返回店铺</a>
|
|
|
+ <nuxt-link class="col-xs-10" :to="'/store/' + storeInfo.uuid">返回店铺</nuxt-link>
|
|
|
</div>
|
|
|
<div class="intro-text" v-text="storeInfo.description">店铺简介</div>
|
|
|
</div>
|