|
@@ -274,14 +274,14 @@
|
|
|
<p class="td-6">选择</p>
|
|
|
</div>
|
|
|
<div class="product-supporting-pro">
|
|
|
- <div class="product-supporting-list" v-for="pros in defaultSupportingList">
|
|
|
+ <div class="product-supporting-list" v-for="(pros,index) in defaultSupportingList" :class="index == 0 ? 'active' : ''">
|
|
|
<div class="tr tr-1">
|
|
|
- <a :href="'/product-'+pros.productId+'.html'">
|
|
|
+ <a :href="'/product-'+pros.productId+'.html'" target="_blank">
|
|
|
<img :src="pros.image" :alt="pros.name">
|
|
|
</a>
|
|
|
</div>
|
|
|
<div class="tr tr-2">
|
|
|
- <a :href="'/product-'+pros.productId+'.html'">
|
|
|
+ <a :href="'/product-'+pros.productId+'.html'" target="_blank">
|
|
|
<p v-html="pros.name"></p>
|
|
|
</a>
|
|
|
</div>
|