|
@@ -28,62 +28,43 @@
|
|
|
<div v-if="isPC" class="recommend">
|
|
|
<p class="classify readerSify">
|
|
|
你可能感兴趣的商品
|
|
|
- <span class="nextPreBtn">
|
|
|
- <span v-if="recommend.nextPage" class="next" @click="getRecommend(typeId, recommend.nextPage)"></span>
|
|
|
- <span v-if="recommend.prePage" class="pre" @click="getRecommend(typeId, recommend.prePage)"></span>
|
|
|
- </span>
|
|
|
- </p>
|
|
|
- <div class="row" v-for="item in recommend.list">
|
|
|
- <div class="new-img xiao">
|
|
|
- <a :href="'/info/detail-'+item.id+'-1.html'" target="_blank">
|
|
|
- <img :src="item.image"/>
|
|
|
- </a>
|
|
|
- </div>
|
|
|
- <div class="new-blurb xiao">
|
|
|
- <a :href="'/info/detail-'+item.id+'-1.html'" target="_blank">
|
|
|
- <p class="shuoming" v-html="item.title"></p>
|
|
|
- </a>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div v-if="isPC" class="recommend">
|
|
|
- <p class="classify readerSify">
|
|
|
- 热门推荐
|
|
|
- <span class="nextPreBtn">
|
|
|
- <span v-if="recommend.nextPage" class="next" @click="getRecommend(typeId, recommend.nextPage)"></span>
|
|
|
- <span v-if="recommend.prePage" class="pre" @click="getRecommend(typeId, recommend.prePage)"></span>
|
|
|
+ <span class="more-product">
|
|
|
+<!-- <span v-if="recommend.nextPage" class="next" @click="getRecommend(typeId, recommend.nextPage)"></span>-->
|
|
|
+<!-- <span v-if="recommend.prePage" class="pre" @click="getRecommend(typeId, recommend.prePage)"></span>-->
|
|
|
+ <a>更多 ></a>
|
|
|
</span>
|
|
|
</p>
|
|
|
- <div class="row" v-for="item in recommend.list">
|
|
|
+ <div class="row" th:each="product: ${productSellNumbers}" >
|
|
|
<div class="new-img xiao">
|
|
|
- <a :href="'/info/detail-'+item.id+'-1.html'" target="_blank">
|
|
|
- <img :src="item.image"/>
|
|
|
+ <a th:href="'/product-'+${product.id}+'.html'" target="_blank">
|
|
|
+ <img th:src="product.image"/>
|
|
|
</a>
|
|
|
</div>
|
|
|
<div class="new-blurb xiao">
|
|
|
- <a :href="'/info/detail-'+item.id+'-1.html'" target="_blank">
|
|
|
- <p class="shuoming" v-html="item.title"></p>
|
|
|
+ <a th:href="'/product-'+${product.id}+'.html'" target="_blank">
|
|
|
+ <p class="shuoming" th:text="${product.name}"></p>
|
|
|
</a>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div v-if="isPC" class="recommend">
|
|
|
<p class="classify readerSify">
|
|
|
- 热门推荐
|
|
|
- <span class="nextPreBtn">
|
|
|
- <span v-if="recommend.nextPage" class="next" @click="getRecommend(typeId, recommend.nextPage)"></span>
|
|
|
- <span v-if="recommend.prePage" class="pre" @click="getRecommend(typeId, recommend.prePage)"></span>
|
|
|
+ 您可能感兴趣的美业资料
|
|
|
+ <span class="more-product">
|
|
|
+<!-- <span v-if="recommend.nextPage" class="next" @click="getRecommend(typeId, recommend.nextPage)"></span>-->
|
|
|
+<!-- <span v-if="recommend.prePage" class="pre" @click="getRecommend(typeId, recommend.prePage)"></span>-->
|
|
|
+ <a>更多 ></a>
|
|
|
</span>
|
|
|
</p>
|
|
|
- <div class="row" v-for="item in recommend.list">
|
|
|
+ <div class="row" th:each="product: ${productSellNumbers}">
|
|
|
<div class="new-img xiao">
|
|
|
- <a :href="'/info/detail-'+item.id+'-1.html'" target="_blank">
|
|
|
- <img :src="item.image"/>
|
|
|
+ <a th:href="'/product-'+${product.id}+'.html'" target="_blank">
|
|
|
+ <img src="/img/article/PC--pdf.png"/>
|
|
|
</a>
|
|
|
</div>
|
|
|
<div class="new-blurb xiao">
|
|
|
- <a :href="'/info/detail-'+item.id+'-1.html'" target="_blank">
|
|
|
- <p class="shuoming" v-html="item.title"></p>
|
|
|
+ <a th:href="'/product-'+${product.id}+'.html'" target="_blank">
|
|
|
+ <p class="shuoming" th:text="${product.name}"></p>
|
|
|
</a>
|
|
|
</div>
|
|
|
</div>
|