1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <html xmlns:th="http://www.w3isRossShow.org/1999/xhtml">
- <div class="other">
- <div class="other" id="articleSide" v-cloak th:if="${isSelectInfo}">
- <!-- <!–侧边栏Ross广告图–>-->
- <!-- <div v-if="isPC && isRossShow" class="article-right-ross" :class="isRossShow ? 'show' : 'none'">-->
- <!-- <a href="/supplier-1378.html" v-if="isPC"><img src="/img/ross/ross-image@1x.jpg" alt="深圳艾斯佰丽生物科技有限公司"></a>-->
- <!-- </div>-->
- <div v-if="isPC && recommend.list && recommend.list.length > 0" 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" th:if="${#arrays.length(productSellNumbers)} > 0">
- <p class="classify readerSify">
- 您可能感兴趣的商品
- <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 href="/product/list.html">更多 ></a>
- </span>
- </p>
- <div class="row" th:each="product: ${productSellNumbers}" >
- <div class="new-img xiao">
- <a th:href="'/product-'+${product.id}+'.html'" target="_blank">
- <img th:src="${product.image}"/>
- </a>
- </div>
- <div class="new-blurb xiao">
- <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" th:if="${#arrays.length(archiveFiles)} > 0">
- <p class="classify readerSify">
- 您可能感兴趣的美业资料
- <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 href="/info/articlerecommendation-0-1.html?isDocument">更多 ></a>
- </span>
- </p>
- <div class="row" th:each="file: ${archiveFiles}">
- <div class="new-img xiao">
- <a href="javascript:void(0);" th:onclick="handleFileUrl([[${file.productId}]])" target="_blank">
- <img src="/img/article/PC--pdf.png" th:if="${#strings.containsIgnoreCase(file.fileName, '.pdf')}">
- <img src="/img/info/PC-doc.png" th:if="${#strings.containsIgnoreCase(file.fileName, '.doc')}">
- <img src="/img/info/PC-ppt.png" th:if="${#strings.containsIgnoreCase(file.fileName, '.ppt')}">
- </a>
- </div>
- <div class="new-blurb xiao">
- <a target="_blank" href="javascript:void(0);" th:onclick="handleFileUrl([[${file.productId}]])">
- <p class="shuoming" th:text="${file.fileName}"></p>
- </a>
- </div>
- </div>
- </div>
- </div>
- <div v-if="isPC" class="other" th:if="${isSelectInfo}">
- <el-carousel :autoplay="true" :height="isPC ? '343px' : '61.6vw'" :interval="3000">
- <el-carousel-item th:each="ad : ${ads}" class="tui-img">
- <a class="tui-img" th:href="${ad.link}" @click="clickAD(ad.id,ad.link)" target="_blank">
- <img th:src="${ad.image}" th:alt="${ad.title}" th:onclick="handleAdvHits([[${ad}]])"/>
- </a>
- </el-carousel-item>
- </el-carousel>
- </div>
- </div>
- </html>
|