Browse Source

Merge remote-tracking branch 'origin/feature-201821-wangcz' into feature-201821-wangcz

yangc 7 years ago
parent
commit
71f646ad7c
1 changed files with 3 additions and 3 deletions
  1. 3 3
      components/provider/Suppliers.vue

+ 3 - 3
components/provider/Suppliers.vue

@@ -22,18 +22,18 @@
         <tr :key="store.uuid" v-for="store in stores.content" v-if="store" @click="goStoreDetail(store)">
           <td>
             <div class="logo">
-              <a :href="'/store/' + store.uuid" target="_blank"><img :src="store.logoUrl || '/images/store/common/default.png'" :alt="store.storeName"></a>
+              <a><img :src="store.logoUrl || '/images/store/common/default.png'" :alt="store.storeName"></a>
             </div>
           </td>
           <td colspan="3">
-            <a class="store-name" :href="'/store/' + store.uuid" target="_blank"><div :title="store.storeName">{{store.storeName}}</div></a>
+            <a class="store-name"><div :title="store.storeName">{{store.storeName}}</div></a>
             <div class="store-message">
               <span>企业介绍:</span>
               <span style="word-break: break-word;">{{showLittleDescription(store.enterprise.description)}}<em v-if="store.description && store.description.length > 160">...</em></span>
             </div>
           </td>
           <td class="vertical-middle" style="text-align: center">
-            <a :href="'/store/' + store.uuid" target="_blank"><button class="btn btn-primary">进入店铺</button></a>
+            <a><button class="btn btn-primary">进入店铺</button></a>
           </td>
         </tr>
         <tr v-if="!stores.content || stores.content.length == 0" class="no-content">