|
@@ -2,905 +2,246 @@
|
|
|
<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
xsi:schemaLocation="https://www.thymeleaf.org ">
|
|
|
<head>
|
|
|
- <title>采美365网--医疗美容生活美容正品采购平台</title>
|
|
|
+ <title>采美365网-医美采购平台-生美采购平台-美业一站式正品采购平台</title>
|
|
|
+ <meta name="keywords" content="美业采购商城,美业信息平台,美业采购顾问,美业采购咨询,美容产品,美容仪器,医美产品,医美器械,二手仪器,美业正品联盟">
|
|
|
+ <meta name="description" content="采美365网是一家专注于医美生美的B2B采购平台,拥有各类医疗器械资质和进出口资质,聚集全球众多知名供应商,上架丰富的医美生美产品和仪器,一站式解决美容机构的采购需求">
|
|
|
<meta name="baidu-site-verification" content="KbkRJg9357"/>
|
|
|
+ <link rel="canonical" href="https://www.caimei365.com/"/>
|
|
|
<template th:replace="components/head-link"></template>
|
|
|
<link th:href="@{/css/index/index_new.h5.css(v=${version})}" media="screen and (max-width:768px)" rel="stylesheet" type="text/css">
|
|
|
<link th:href="@{/css/index/index_new.pc.css(v=${version})}" media="screen and (min-width:768px)" rel="stylesheet" type="text/css">
|
|
|
+ <template th:replace="components/analysis"></template>
|
|
|
</head>
|
|
|
<body>
|
|
|
<!-- 引用头部 -->
|
|
|
<template th:replace="components/header"></template>
|
|
|
<!-- 首页 -->
|
|
|
<div id="container">
|
|
|
- <!--loading-->
|
|
|
- <div v-if="listLoading" class="loading">
|
|
|
- <img src="/img/base/loading.gif">
|
|
|
+ <!--首页图片轮播-->
|
|
|
+ <div id="swiper-container" class="swiper-container">
|
|
|
+ <ul class="swiper-wrapper swiper-wrapper-banner">
|
|
|
+ <li class="swiper-slide mfc" th:each="img: ${bannerList}">
|
|
|
+ <a th:href="${img.link}"><img th:src="${img.image}" th:alt="${img.title}"></a>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ <div class="swiper-pagination swiper-pagination-banner mfc"><span v-if="isPC" th:each="img: ${bannerList}"></span></div>
|
|
|
+ <a class="swiper-button-prev" href="javascript:void(0)"></a>
|
|
|
+ <a class="swiper-button-next" href="javascript:void(0)"></a>
|
|
|
</div>
|
|
|
- <template v-else>
|
|
|
- <!--首页图片轮播-->
|
|
|
- <div id="swiper-container" class="swiper-container">
|
|
|
- <ul class="swiper-wrapper swiper-wrapper-banner">
|
|
|
- <li class="swiper-slide mfc" v-for="img in images">
|
|
|
- <a :href="img.link"><img :src="img.image" :alt="img.title"></a>
|
|
|
- </li>
|
|
|
- </ul>
|
|
|
- <div class="swiper-pagination swiper-pagination-banner mfc"><span v-if="isPC" v-for="i in images.length"></span></div>
|
|
|
- <a class="swiper-button-prev" href="javascript:void(0)"></a>
|
|
|
- <a class="swiper-button-next" href="javascript:void(0)"></a>
|
|
|
- </div>
|
|
|
- <div class="mNavBox h5Only clear">
|
|
|
- <!--导航菜单-->
|
|
|
- <a class="nav" :href="menu.link" v-for="(menu,index) in topMenuList">
|
|
|
- <img class="nav-icon" :src="menu.icon" :alt="menu.name">
|
|
|
- <p v-text="menu.name"></p>
|
|
|
- </a>
|
|
|
- </div>
|
|
|
- <!--首页楼层主体数据-->
|
|
|
- <div class="section_container">
|
|
|
- <div class="inner">
|
|
|
- <div class="section_right">
|
|
|
- <div class="box swiper-wrapper" >
|
|
|
- <div class="section_right_item" v-if="liveList && liveList.length>0">
|
|
|
- <div class="right_item_title">
|
|
|
- <p>精彩直播</p>
|
|
|
- <a href="https://wx.vzan.com/plug-ins/?v=637429463853329710#/FixupIndex/399803126?shareuid=0" target="_blank" v-if="isPC">更多></a>
|
|
|
- <a href="https://wx.vzan.com/plug-ins/?v=637429463853329710#/FixupIndex/399803126?shareuid=0" target="_blank" v-if="!isPC">></a>
|
|
|
- </div>
|
|
|
- <div class="right_item_main" v-for="(live,index) in liveList">
|
|
|
- <a :href="live.link" class="item_banner" v-if="index === 0" target="_blank" :title="live.liveTitle">
|
|
|
- <img src="/img/base/placeholder.png" :data-original="live.homePageImage" :alt="live.liveTitle">
|
|
|
- <div class="name" v-text="live.liveTitle"></div>
|
|
|
- <div class="statu">
|
|
|
- <i :class="live.liveStatus | statusTypeClass" class="mIcon"></i>
|
|
|
- <p>{{ live.liveStatus | statusType }}</p>
|
|
|
- </div>
|
|
|
- </a>
|
|
|
- <a :href="live.link" class="item_text" v-if="index > 0" target="_blank" :title="live.liveTitle">
|
|
|
- <p class="item_text_name info" v-text="live.liveTitle"></p>
|
|
|
- </a>
|
|
|
- </div>
|
|
|
+ <div class="mNavBox h5Only clear">
|
|
|
+ <!--导航菜单-->
|
|
|
+ <a th:each="menu: ${topMenuList}" class="nav" th:href="${menu.link}">
|
|
|
+ <img class="nav-icon" th:src="${menu.icon}" th:alt="${menu.name}">
|
|
|
+ <p th:text="${menu.name}"></p>
|
|
|
+ </a>
|
|
|
+ </div>
|
|
|
+ <!--首页楼层主体数据-->
|
|
|
+ <div class="section_container">
|
|
|
+ <div class="inner">
|
|
|
+ <div id="sidebar" class="section_right">
|
|
|
+ <div class="box swiper-wrapper" >
|
|
|
+ <div class="section_right_item" th:if="${sideJson.get('liveList')}!=null and ${sideJson.get('liveList').size}>0">
|
|
|
+ <div class="right_item_title">
|
|
|
+ <p>精彩直播</p>
|
|
|
+ <a href="https://wx.vzan.com/plug-ins/?v=637429463853329710#/FixupIndex/399803126?shareuid=0" target="_blank" rel="nofollow">
|
|
|
+ <template v-if="isPC">更多></template><template v-else>></template>
|
|
|
+ </a>
|
|
|
</div>
|
|
|
- <div class="section_right_item" v-if="cmImageList && cmImageList.length>0">
|
|
|
- <div class="right_item_title">
|
|
|
- <p>最新活动</p>
|
|
|
- <a href="/promotions.html" target="_blank" v-if="isPC">更多></a>
|
|
|
- <a href="/promotions.html" target="_blank" v-if="!isPC">></a>
|
|
|
- </div>
|
|
|
- <div class="right_item_main" v-for="(cmImage,index) in cmImageList">
|
|
|
- <a :href="cmImage.link" class="item_banner" v-if="index === 0" target="_blank" :title="cmImage.title">
|
|
|
- <img src="/img/base/placeholder.png" :data-original="cmImage.homePageImage" :alt="cmImage.title">
|
|
|
- <div class="name" v-text="cmImage.title"></div>
|
|
|
- </a>
|
|
|
- <a :href="cmImage.link" class="item_text" v-if="index > 0" target="_blank" :title="cmImage.title">
|
|
|
- <p class="item_text_name info" v-text="cmImage.title"></p>
|
|
|
- </a>
|
|
|
- </div>
|
|
|
+ <div class="right_item_main" th:each="live,stat : ${sideJson.get('liveList')}" th:object="${live}">
|
|
|
+ <a th:if="${stat.index}==0" th:href="*{link}" th:title="*{liveTitle}" class="item_banner" target="_blank" rel="nofollow">
|
|
|
+ <img src="/img/base/placeholder.png" th:attr="data-original=*{homePageImage}" th:alt="*{liveTitle}">
|
|
|
+ <div class="name" th:text="*{liveTitle}"></div>
|
|
|
+ <div class="statu">
|
|
|
+ <template th:if="*{liveStatus}==1"><i class="mIcon icon-wart"></i><p>未开始</p></template>
|
|
|
+ <template th:if="*{liveStatus}==2"><i class="mIcon icon-live"></i><p>直播中</p></template>
|
|
|
+ <template th:if="*{liveStatus}==3"><i class="mIcon icon-end"></i><p>看回放</p></template>
|
|
|
+ </div>
|
|
|
+ </a>
|
|
|
+ <a th:if="${stat.index}>0" th:href="*{link}" th:title="*{liveTitle}" class="item_text" target="_blank" rel="nofollow">
|
|
|
+ <p class="item_text_name" th:text="*{liveTitle}"></p>
|
|
|
+ </a>
|
|
|
</div>
|
|
|
- <div class="section_right_item" v-if="infoList && infoList.length>0">
|
|
|
- <div class="right_item_title">
|
|
|
- <p>热门文章</p>
|
|
|
- <a href="https://www.caimei365.com/info/center-3-1.html" target="_blank" v-if="isPC">更多></a>
|
|
|
- <a href="https://www.caimei365.com/info/center-3-1.html" target="_blank" v-if="!isPC">></a>
|
|
|
- </div>
|
|
|
- <div class="right_item_main" v-for="(info,index) in infoList">
|
|
|
- <a :href="info.link" class="item_banner" v-if="index === 0" target="_blank" :title="info.title">
|
|
|
- <img src="/img/base/placeholder.png" :data-original="info.homePageImage" :alt="info.title">
|
|
|
- <div class="name" v-text="info.title"></div>
|
|
|
- </a>
|
|
|
- <a :href="info.link" class="item_text" v-if="index > 0" target="_blank" :title="info.title">
|
|
|
- <p class="item_text_name " v-text="info.title"></p>
|
|
|
- <p class="item_text_time" v-if="isPC" v-text="info.createDate"></p>
|
|
|
- </a>
|
|
|
- </div>
|
|
|
+ </div>
|
|
|
+ <div id="fixed-wrap" class="section_right_item" th:if="${sideJson.get('cmImageList')}!=null and ${sideJson.get('cmImageList').size}>0">
|
|
|
+ <div class="right_item_title">
|
|
|
+ <p>最新活动</p>
|
|
|
+ <a href="https://www.caimei365.com/promotions.html" target="_blank">
|
|
|
+ <template v-if="isPC">更多></template><template v-else>></template>
|
|
|
+ </a>
|
|
|
+ </div>
|
|
|
+ <div class="right_item_main" th:each="image,stat : ${sideJson.get('cmImageList')}" th:object="${image}">
|
|
|
+ <a th:if="${stat.index}==0" th:href="*{link}" th:title="*{title}" class="item_banner" target="_blank">
|
|
|
+ <img src="/img/base/placeholder.png" th:attr="data-original=*{homePageImage}" th:alt="*{title}">
|
|
|
+ <div class="name" th:text="*{title}"></div>
|
|
|
+ </a>
|
|
|
+ <a th:if="${stat.index}>0" th:href="*{link}" th:title="*{title}" class="item_text" target="_blank">
|
|
|
+ <p class="item_text_name" th:text="*{title}"></p>
|
|
|
+ </a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="section_right_item" th:if="${sideJson.get('infoList')}!=null and ${sideJson.get('infoList').size}>0">
|
|
|
+ <div class="right_item_title">
|
|
|
+ <p>热门文章</p>
|
|
|
+ <a href="https://www.caimei365.com/info/center-3-1.html" target="_blank">
|
|
|
+ <template v-if="isPC">更多></template><template v-else>></template>
|
|
|
+ </a>
|
|
|
+ </div>
|
|
|
+ <div class="right_item_main" th:each="info,stat : ${sideJson.get('infoList')}" th:object="${info}">
|
|
|
+ <a th:if="${stat.index}==0" th:href="*{link}" th:title="*{title}" class="item_banner" target="_blank">
|
|
|
+ <img src="/img/base/placeholder.png" th:attr="data-original=*{homePageImage}" th:alt="*{title}">
|
|
|
+ <div class="name" th:text="*{title}"></div>
|
|
|
+ </a>
|
|
|
+ <a th:if="${stat.index}>0" th:href="*{link}" th:title="*{title}" class="item_text" target="_blank">
|
|
|
+ <p class="item_text_name info" th:text="*{title}"></p>
|
|
|
+ <p class="item_text_time" v-if="isPC" th:text="*{createDate}"></p>
|
|
|
+ </a>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="section_left ">
|
|
|
- <div class="section_page" v-for="(page,index) in pageList">
|
|
|
- <div class="section_page_title" v-if="page.floorContent">
|
|
|
- <h1 v-text="page.title" :data-id="index+1"></h1>
|
|
|
- <p v-text="page.detail"></p>
|
|
|
+ </div>
|
|
|
+ <div class="section_left ">
|
|
|
+ <div class="section_page" th:each="floor,stat : ${floorJson.get('homePageFloor')}">
|
|
|
+ <th:block th:if="${floor.get('floorContent')}!=null">
|
|
|
+ <div class="section_page_title">
|
|
|
+ <h1 th:text="${floor.get('title')}" th:attr="data-id=${stat.index+1}"></h1>
|
|
|
+ <p th:text="${floor.get('detail')}"></p>
|
|
|
</div>
|
|
|
- <template v-if="page.floorContent && page.floorContent.templateType == '1'">
|
|
|
- <div class="section_page_main clear mfw" :class="page.isPageMore ? '' : 'max'">
|
|
|
- <a :href="page.floorContent.adsLink1!='' ? page.floorContent.adsLink1 : 'javascript:void(0)' "
|
|
|
- class="page_main_item ad_02" :class="page.floorContent.adsLink1!='' ? '' : 'default' "
|
|
|
- :target="page.floorContent.adsLink1!='' ? '_blank' : ''">
|
|
|
- <img v-if="isPC" :src="page.floorContent.pcAdsImage1" alt="" class="page_main_item_adv">
|
|
|
- <img v-else :src="page.floorContent.appletsAdsImage1" alt="" class="page_main_item_adv">
|
|
|
- </a>
|
|
|
- <a :href="pros.link" class="page_main_item ad_04" v-for="(pros,index) in page.floorImageList" target="_blank">
|
|
|
- <img class="page_main_image" src="/img/base/placeholder.png" :data-original="pros.image" :alt="pros.name">
|
|
|
- <div class="page_main_tag" v-if="pros.listType == 2"><p>{{ pros.label }}</p></div>
|
|
|
- <div class="page_main_text"><sapn class="tag" v-if="pros.product!=null && pros.product.beautyActFlag==1">美博会</sapn>{{ pros.name }}</div>
|
|
|
- <div class="page_main_price" v-if="pros.listType == 1">
|
|
|
- <template v-if="GLOBAL_USER_ID && GLOBAL_USER_ID>0">
|
|
|
- <!--正常商品, 二手商品-->
|
|
|
- <!--用户身份 0、个人 1、协销 2、会员机构 3、供应商 4,普通机构-->
|
|
|
- <template v-if="pros.product.productCategory==1">
|
|
|
- <template v-if="pros.product.price1TextFlag==1">
|
|
|
- <!--价格未公开-->
|
|
|
- <div class="main_price_text">
|
|
|
- <div class="price_text_tag">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_unde">¥价格未公开</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <!--可见价格-->
|
|
|
- <template v-if="(pros.product.price1TextFlag==0 && pros.product.userIdentity!=3) || pros.product.userIdentity==2 || (pros.product.userIdentity==3 && pros.product.shopID==GLOBAL_SHOP_ID)">
|
|
|
- <div class="main_price_text" v-if="pros.product.productCategory == 1">
|
|
|
- <div class="price_text_tag">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">
|
|
|
- {{pros.product.promotions.name}}
|
|
|
- <span v-if="pros.priceFlag != 1">:¥{{pros.product.retailPrice | NumFormat}}</span>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div class="main_price_show" :class="PromotionsFormat(pros.product.promotions) ? 'none' : ''">
|
|
|
- ¥{{ (PromotionsFormat(pros.product.promotions) ? pros.product.price1 : pros.product.retailPrice ) | NumFormat }}
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <!--仅会员机构可见-->
|
|
|
- <template v-else-if="pros.product.price1TextFlag==2 && pros.product.userIdentity==4">
|
|
|
- <div class="main_price_text">
|
|
|
- <div class="price_text_tag">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_unde">¥会员可见</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <div class="price_text_tag right-box">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_none">
|
|
|
- <em class="price_grade"><span class="bold">¥</span><i :class="'icon mIcon price_grade_'+pros.product.price1Grade"></i></em>
|
|
|
- <p class="listTag" v-if="pros.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <div class="main_price_text" v-if="pros.product.detailTalkFlag == '2'">
|
|
|
- <div class="price_text_tag"></div>
|
|
|
- <div class="main_price_show">¥价格祥聊</div>
|
|
|
- </div>
|
|
|
- <div class="main_price_text" v-else>
|
|
|
- <div class="price_text_tag"></div>
|
|
|
- <div class="main_price_show">¥{{ pros.product.retailPrice | NumFormat }}</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <template v-if="pros.product.productCategory == 1">
|
|
|
- <div class="price_text_tag ">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_none">
|
|
|
- <em class="price_grade"><span class="bold">¥</span><i :class="'icon mIcon price_grade_'+pros.product.price1Grade"></i></em>
|
|
|
- <p class="listTag " v-if="pros.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <div class="main_price_none sec">
|
|
|
- <em class="price_grade"><span>¥</span>登录可见</em>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- </div>
|
|
|
- </a>
|
|
|
- </div>
|
|
|
- <div class="section_page_more" v-if="page.isPageMore">
|
|
|
- <div class="more" @click="showMorePageFn(page)"> <i class="icon mIcon"></i>查看更多</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-if="page.floorContent && page.floorContent.templateType == '2'">
|
|
|
- <div class="section_page_main clear mfw" :class="page.isPageMore ? '' : 'max'">
|
|
|
- <a :href="page.floorContent.adsLink1!='' ? page.floorContent.adsLink1 : 'javascript:void(0)' "
|
|
|
- class="page_main_item ad_02" :class="page.floorContent.adsLink1!='' ? '' : 'default' "
|
|
|
- :target="page.floorContent.adsLink1!='' ? '_blank' : ''">
|
|
|
- <img v-if="isPC" :src="page.floorContent.pcAdsImage1" alt="" class="page_main_item_adv">
|
|
|
- <img v-else :src="page.floorContent.appletsAdsImage1" alt="" class="page_main_item_adv">
|
|
|
- </a>
|
|
|
- <a :href="page.floorContent.adsLink2!='' ? page.floorContent.adsLink2 : 'javascript:void(0)'"
|
|
|
- class="page_main_item ad_03" :class="page.floorContent.adsLink2!='' ? '' : 'default' "
|
|
|
- :target="page.floorContent.adsLink2!='' ? '_blank' : ''">
|
|
|
- <img v-if="isPC" :src="page.floorContent.pcAdsImage2" alt="" class="page_main_item_adv">
|
|
|
- <img v-else :src="page.floorContent.appletsAdsImage2" alt="" class="page_main_item_adv">
|
|
|
- </a>
|
|
|
- <a :href="pros.link" class="page_main_item ad_04" v-for="(pros,index) in page.floorImageList" target="_blank">
|
|
|
- <img class="page_main_image" src="/img/base/placeholder.png" :data-original="pros.image" :alt="pros.name">
|
|
|
- <div class="page_main_tag" v-if="pros.listType == 2"><p>{{ pros.label }}</p></div>
|
|
|
- <div class="page_main_text"><sapn class="tag" v-if="pros.product!=null && pros.product.beautyActFlag==1">美博会</sapn>{{ pros.name }}</div>
|
|
|
- <div class="page_main_price" v-if="pros.listType == 1">
|
|
|
- <template v-if="GLOBAL_USER_ID && GLOBAL_USER_ID>0">
|
|
|
- <!--正常商品, 二手商品-->
|
|
|
- <!--用户身份 0、个人 1、协销 2、会员机构 3、供应商 4,普通机构-->
|
|
|
- <template v-if="pros.product.productCategory==1">
|
|
|
- <template v-if="pros.product.price1TextFlag==1">
|
|
|
- <!--价格未公开-->
|
|
|
- <div class="main_price_text">
|
|
|
- <div class="price_text_tag">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_unde">¥价格未公开</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <!--可见价格-->
|
|
|
- <template v-if="(pros.product.price1TextFlag==0 && pros.product.userIdentity!=3) || pros.product.userIdentity==2 || (pros.product.userIdentity==3 && pros.product.shopID==GLOBAL_SHOP_ID)">
|
|
|
- <div class="main_price_text" v-if="pros.product.productCategory == 1">
|
|
|
- <div class="price_text_tag">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">
|
|
|
- {{pros.product.promotions.name}}
|
|
|
- <span v-if="pros.priceFlag != 1">:¥{{pros.product.retailPrice | NumFormat}}</span>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div class="main_price_show" :class="PromotionsFormat(pros.product.promotions) ? 'none' : ''">
|
|
|
- ¥{{ (PromotionsFormat(pros.product.promotions) ? pros.product.price1 : pros.product.retailPrice ) | NumFormat }}
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <!--仅会员机构可见-->
|
|
|
- <template v-else-if="pros.product.price1TextFlag==2 && pros.product.userIdentity==4">
|
|
|
- <div class="main_price_text">
|
|
|
- <div class="price_text_tag">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_unde">¥会员可见</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <div class="price_text_tag right-box">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_none">
|
|
|
- <em class="price_grade"><span class="bold">¥</span><i :class="'icon mIcon price_grade_'+pros.product.price1Grade"></i></em>
|
|
|
- <p class="listTag" v-if="pros.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <div class="main_price_text" v-if="pros.product.detailTalkFlag == '2'">
|
|
|
- <div class="price_text_tag"></div>
|
|
|
- <div class="main_price_show">¥价格祥聊</div>
|
|
|
- </div>
|
|
|
- <div class="main_price_text" v-else>
|
|
|
- <div class="price_text_tag"></div>
|
|
|
- <div class="main_price_show">¥{{ pros.product.retailPrice | NumFormat }}</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <template v-if="pros.product.productCategory == 1">
|
|
|
- <div class="price_text_tag right-box">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_none">
|
|
|
- <em class="price_grade"><span class="bold">¥</span><i :class="'icon mIcon price_grade_'+pros.product.price1Grade"></i></em>
|
|
|
- <p class="listTag " v-if="pros.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <div class="main_price_none sec">
|
|
|
- <em class="price_grade"><span>¥</span>登录可见</em>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- </div>
|
|
|
- </a>
|
|
|
- </div>
|
|
|
- <div class="section_page_more" v-if="page.isPageMore">
|
|
|
- <div class="more" @click="showMorePageFn(page)"> <i class="icon mIcon"></i>查看更多</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-if="page.floorContent && page.floorContent.templateType == '3'">
|
|
|
- <div class="section_page_main type_03 clear mfw" :class="page.isPageMore ? '' : 'max'">
|
|
|
- <a :href="page.floorContent.adsLink1!='' ? page.floorContent.adsLink1 : 'javascript:void(0)' "
|
|
|
- class="page_main_item ad_01" :class="page.floorContent.adsLink1!='' ? '' : 'default' "
|
|
|
- :target="page.floorContent.adsLink1!='' ? '_blank' : ''">
|
|
|
- <img v-if="isPC" :src="page.floorContent.pcAdsImage1" alt="" class="page_main_item_adv">
|
|
|
- <img v-else :src="page.floorContent.appletsAdsImage1" alt="" class="page_main_item_adv">
|
|
|
- </a>
|
|
|
- <a :href="page.floorContent.adsLink2!='' ? page.floorContent.adsLink2 : 'javascript:void(0)' "
|
|
|
- class="page_main_item ad_02" :class="page.floorContent.adsLink2!='' ? '' : 'default' "
|
|
|
- :target="page.floorContent.adsLink2!='' ? '_blank' : ''">
|
|
|
- <img v-if="isPC" :src="page.floorContent.pcAdsImage2" alt="" class="page_main_item_adv">
|
|
|
- <img v-else :src="page.floorContent.appletsAdsImage2" alt="" class="page_main_item_adv">
|
|
|
- </a>
|
|
|
- <a :href="pros.link" class="page_main_item ad_04" v-for="(pros,index) in page.floorImageList" target="_blank">
|
|
|
- <img class="page_main_image" src="/img/base/placeholder.png" :data-original="pros.image" :alt="pros.name">
|
|
|
- <div class="page_main_tag" v-if="pros.listType == 2"><p>{{ pros.label }}</p></div>
|
|
|
- <div class="page_main_text"><sapn class="tag" v-if="pros.product!=null && pros.product.beautyActFlag==1">美博会</sapn>{{ pros.name }}</div>
|
|
|
- <div class="page_main_price" v-if="pros.listType == 1">
|
|
|
- <template v-if="GLOBAL_USER_ID && GLOBAL_USER_ID>0">
|
|
|
- <!--正常商品, 二手商品-->
|
|
|
- <!--用户身份 0、个人 1、协销 2、会员机构 3、供应商 4,普通机构-->
|
|
|
- <template v-if="pros.product.productCategory==1">
|
|
|
- <template v-if="pros.product.price1TextFlag==1">
|
|
|
- <!--价格未公开-->
|
|
|
- <div class="main_price_text">
|
|
|
- <div class="price_text_tag">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_unde">¥价格未公开</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <!--可见价格-->
|
|
|
- <template v-if="(pros.product.price1TextFlag==0 && pros.product.userIdentity!=3) || pros.product.userIdentity==2 || (pros.product.userIdentity==3 && pros.product.shopID==GLOBAL_SHOP_ID)">
|
|
|
- <div class="main_price_text" v-if="pros.product.productCategory == 1">
|
|
|
- <div class="price_text_tag">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">
|
|
|
- {{pros.product.promotions.name}}
|
|
|
- <span v-if="pros.priceFlag != 1">:¥{{pros.product.retailPrice | NumFormat}}</span>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div class="main_price_show" :class="PromotionsFormat(pros.product.promotions) ? 'none' : ''">
|
|
|
- ¥{{ (PromotionsFormat(pros.product.promotions) ? pros.product.price1 : pros.product.retailPrice ) | NumFormat }}
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <!--仅会员机构可见-->
|
|
|
- <template v-else-if="pros.product.price1TextFlag==2 && pros.product.userIdentity==4">
|
|
|
- <div class="main_price_text">
|
|
|
- <div class="price_text_tag">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_unde">¥会员可见</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <div class="price_text_tag right-box">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_none">
|
|
|
- <em class="price_grade"><span class="bold">¥</span><i :class="'icon mIcon price_grade_'+pros.product.price1Grade"></i></em>
|
|
|
- <p class="listTag " v-if="pros.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <div class="main_price_text" v-if="pros.product.detailTalkFlag == '2'">
|
|
|
- <div class="price_text_tag"></div>
|
|
|
- <div class="main_price_show">¥价格祥聊</div>
|
|
|
- </div>
|
|
|
- <div class="main_price_text" v-else>
|
|
|
- <div class="price_text_tag"></div>
|
|
|
- <div class="main_price_show">¥{{ pros.product.retailPrice | NumFormat }}</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <template v-if="pros.product.productCategory == 1">
|
|
|
- <div class="price_text_tag right-box">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_none">
|
|
|
- <em class="price_grade"><span class="bold">¥</span><i :class="'icon mIcon price_grade_'+pros.product.price1Grade"></i></em>
|
|
|
- <p class="listTag " v-if="pros.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <div class="main_price_none sec">
|
|
|
- <em class="price_grade"><span>¥</span>登录可见</em>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- </div>
|
|
|
- </a>
|
|
|
- </div>
|
|
|
- <div class="section_page_more" v-if="page.isPageMore">
|
|
|
- <div class="more" @click="showMorePageFn(page)"> <i class="icon mIcon"></i>查看更多</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-if="page.floorContent && page.floorContent.templateType == '4'">
|
|
|
- <div class="section_page_main type_03 clear mfw" :class="page.isPageMore ? '' : 'max'">
|
|
|
- <a :href="page.floorContent.adsLink1!='' ? page.floorContent.adsLink1 : 'javascript:void(0)' "
|
|
|
- class="page_main_item ad_01" :class="page.floorContent.adsLink1!='' ? '' : 'default' "
|
|
|
- :target="page.floorContent.adsLink1!='' ? '_blank' : ''">
|
|
|
- <img v-if="isPC" :src="page.floorContent.pcAdsImage1" alt="" class="page_main_item_adv">
|
|
|
- <img v-else :src="page.floorContent.appletsAdsImage1" alt="" class="page_main_item_adv">
|
|
|
- </a>
|
|
|
- <a :href="page.floorContent.adsLink2!='' ? page.floorContent.adsLink2 : 'javascript:void(0)' "
|
|
|
- class="page_main_item ad_02" :class="page.floorContent.adsLink2!='' ? '' : 'default' "
|
|
|
- :target="page.floorContent.adsLink2!='' ? '_blank' : ''">
|
|
|
- <img v-if="isPC" :src="page.floorContent.pcAdsImage2" alt="" class="page_main_item_adv">
|
|
|
- <img v-else :src="page.floorContent.appletsAdsImage2" alt="" class="page_main_item_adv">
|
|
|
- </a>
|
|
|
- <a :href="page.floorContent.adsLink3!='' ? page.floorContent.adsLink3 : 'javascript:void(0)' "
|
|
|
- class="page_main_item ad_03" :class="page.floorContent.adsLink3!='' ? '' : 'default' "
|
|
|
- :target="page.floorContent.adsLink3!='' ? '_blank' : ''">
|
|
|
- <img v-if="isPC" :src="page.floorContent.pcAdsImage3" alt="" class="page_main_item_adv">
|
|
|
- <img v-else :src="page.floorContent.appletsAdsImage3" alt="" class="page_main_item_adv">
|
|
|
- </a>
|
|
|
- <a :href="pros.link" class="page_main_item ad_04" v-for="(pros,index) in page.floorImageList" target="_blank">
|
|
|
- <img class="page_main_image" src="/img/base/placeholder.png" :data-original="pros.image" :alt="pros.name">
|
|
|
- <div class="page_main_tag" v-if="pros.listType == 2"><p>{{ pros.label }}</p></div>
|
|
|
- <div class="page_main_text"><sapn class="tag" v-if="pros.product!=null && pros.product.beautyActFlag==1" >美博会</sapn>{{ pros.name }}</div>
|
|
|
- <div class="page_main_price" v-if="pros.listType == 1">
|
|
|
- <template v-if="GLOBAL_USER_ID && GLOBAL_USER_ID>0">
|
|
|
- <!--正常商品, 二手商品-->
|
|
|
- <!--用户身份 0、个人 1、协销 2、会员机构 3、供应商 4,普通机构-->
|
|
|
- <template v-if="pros.product.productCategory==1">
|
|
|
- <template v-if="pros.product.price1TextFlag==1">
|
|
|
- <!--价格未公开-->
|
|
|
- <div class="main_price_text">
|
|
|
- <div class="price_text_tag">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_unde">¥价格未公开</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <!--可见价格-->
|
|
|
- <template v-if="(pros.product.price1TextFlag==0 && pros.product.userIdentity!=3) || pros.product.userIdentity==2 || (pros.product.userIdentity==3 && pros.product.shopID==GLOBAL_SHOP_ID)">
|
|
|
- <div class="main_price_text" v-if="pros.product.productCategory == 1">
|
|
|
- <div class="price_text_tag">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">
|
|
|
- {{pros.product.promotions.name}}
|
|
|
- <span v-if="pros.priceFlag != 1">:¥{{pros.product.retailPrice | NumFormat}}</span>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div class="main_price_show" :class="PromotionsFormat(pros.product.promotions) ? 'none' : ''">
|
|
|
- ¥{{ (PromotionsFormat(pros.product.promotions) ? pros.product.price1 : pros.product.retailPrice ) | NumFormat }}
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <!--仅会员机构可见-->
|
|
|
- <template v-else-if="pros.product.price1TextFlag==2 && pros.product.userIdentity==4">
|
|
|
- <div class="main_price_text">
|
|
|
- <div class="price_text_tag">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_unde">¥会员可见</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <div class="price_text_tag right-box">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_none">
|
|
|
- <em class="price_grade"><span class="bold">¥</span><i :class="'icon mIcon price_grade_'+pros.product.price1Grade"></i></em>
|
|
|
- <p class="listTag " v-if="pros.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <div class="main_price_text" v-if="pros.product.detailTalkFlag == '2'">
|
|
|
- <div class="price_text_tag"></div>
|
|
|
- <div class="main_price_show">¥价格祥聊</div>
|
|
|
- </div>
|
|
|
- <div class="main_price_text" v-else>
|
|
|
- <div class="price_text_tag"></div>
|
|
|
- <div class="main_price_show">¥{{ pros.product.retailPrice | NumFormat }}</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <template v-if="pros.product.productCategory == 1">
|
|
|
- <div class="price_text_tag right-box">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_none">
|
|
|
- <em class="price_grade "><span class="bold">¥</span><i :class="'icon mIcon price_grade_'+pros.product.price1Grade"></i></em>
|
|
|
- <p class="listTag " v-if="pros.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <div class="main_price_none sec">
|
|
|
- <em class="price_grade"><span>¥</span>登录可见</em>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- </div>
|
|
|
- </a>
|
|
|
- </div>
|
|
|
- <div class="section_page_more" v-if="page.isPageMore">
|
|
|
- <div class="more" @click="showMorePageFn(page)"><i class="icon mIcon"></i>查看更多</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-if="page.floorContent && page.floorContent.templateType == '5'">
|
|
|
- <div class="section_page_main type_03 clear mfw" :class="page.isPageMore ? '' : 'max'">
|
|
|
- <a :href="page.floorContent.adsLink1!='' ? page.floorContent.adsLink1 : 'javascript:void(0)' "
|
|
|
- class="page_main_item ad_01" :class="page.floorContent.adsLink1!='' ? '' : 'default' "
|
|
|
- :target="page.floorContent.adsLink1!='' ? '_blank' : ''">
|
|
|
- <img v-if="isPC" :src="page.floorContent.pcAdsImage1" alt="" class="page_main_item_adv">
|
|
|
- <img v-else :src="page.floorContent.appletsAdsImage1" alt="" class="page_main_item_adv">
|
|
|
- </a>
|
|
|
- <a :href="pros.link" class="page_main_item ad_04" v-for="(pros,index) in page.floorImageList" target="_blank">
|
|
|
- <img class="page_main_image" src="/img/base/placeholder.png" :data-original="pros.image" :alt="pros.name">
|
|
|
- <div class="page_main_tag" v-if="pros.listType == 2"><p>{{ pros.label }}</p></div>
|
|
|
- <div class="page_main_text"><span class="tag" v-if="pros.product!=null && pros.product.beautyActFlag==1">美博会</span>{{ pros.name }}</div>
|
|
|
- <div class="page_main_price" v-if="pros.listType == 1">
|
|
|
- <template v-if="GLOBAL_USER_ID && GLOBAL_USER_ID>0">
|
|
|
- <!--正常商品, 二手商品-->
|
|
|
- <!--用户身份 0、个人 1、协销 2、会员机构 3、供应商 4,普通机构-->
|
|
|
- <template v-if="pros.product.productCategory==1">
|
|
|
- <template v-if="pros.product.price1TextFlag==1">
|
|
|
- <!--价格未公开-->
|
|
|
- <div class="main_price_text">
|
|
|
- <div class="price_text_tag">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_unde">¥价格未公开</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <!--可见价格-->
|
|
|
- <template v-if="(pros.product.price1TextFlag==0 && pros.product.userIdentity!=3) || pros.product.userIdentity==2 || (pros.product.userIdentity==3 && pros.product.shopID==GLOBAL_SHOP_ID)">
|
|
|
- <div class="main_price_text" v-if="pros.product.productCategory == 1">
|
|
|
- <div class="price_text_tag">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">
|
|
|
- {{pros.product.promotions.name}}
|
|
|
- <span v-if="pros.priceFlag != 1">:¥{{pros.product.retailPrice | NumFormat}}</span>
|
|
|
+ <th:block th:object="${floor.get('floorContent')}">
|
|
|
+ <div th:class="*{templateType}==8? 'hotList swiper-container-floor' : ''" th:id="*{templateType}==8? 'recommendBox' : ''">
|
|
|
+ <div th:class="*{templateType}==8? *{'section_page_main type_08 swiper-wrapper recommendBox-wrapper clear mfw section_'+templateType} : *{'section_page_main clear mfw section_'+templateType}">
|
|
|
+ <!-- 广告图 -->
|
|
|
+ <th:block th:if="*{templateType}==1 or *{templateType}==2 or *{templateType}==3 or *{templateType}==4 or *{templateType}==5">
|
|
|
+ <a th:href="*{#strings.isEmpty(adsLink1)}? 'javascript:;' : *{adsLink1}" th:attr="target=(*{#strings.isEmpty(adsLink1)} ? '_self' : '_blank')" class="page_main_item ad_01">
|
|
|
+ <img v-if="isPC" th:src="*{pcAdsImage1}" alt="" class="page_main_item_adv">
|
|
|
+ <img v-else th:src="*{appletsAdsImage1}" alt="" class="page_main_item_adv">
|
|
|
+ </a>
|
|
|
+ </th:block>
|
|
|
+ <th:block th:if="*{templateType}==2 or *{templateType}==3 or *{templateType}==4">
|
|
|
+ <a th:href="*{#strings.isEmpty(adsLink2)}? 'javascript:;' : *{adsLink2}" th:attr="target=(*{#strings.isEmpty(adsLink2)} ? '_self' : '_blank')" class="page_main_item ad_02">
|
|
|
+ <img v-if="isPC" th:src="*{pcAdsImage2}" alt="" class="page_main_item_adv">
|
|
|
+ <img v-else th:src="*{appletsAdsImage2}" alt="" class="page_main_item_adv">
|
|
|
+ </a>
|
|
|
+ </th:block>
|
|
|
+ <th:block th:if="*{templateType}==4">
|
|
|
+ <a th:href="*{#strings.isEmpty(adsLink3)}? 'javascript:;' : *{adsLink3}" th:attr="target=(*{#strings.isEmpty(adsLink3)} ? '_self' : '_blank')" class="page_main_item ad_03">
|
|
|
+ <img v-if="isPC" th:src="*{pcAdsImage3}" alt="" class="page_main_item_adv">
|
|
|
+ <img v-else th:src="*{appletsAdsImage3}" alt="" class="page_main_item_adv">
|
|
|
+ </a>
|
|
|
+ </th:block>
|
|
|
+ <!-- 商品/图片 列表 -->
|
|
|
+ <th:block th:each="pros : ${floor.get('floorImageList')}" th:object="${pros}">
|
|
|
+ <a th:href="*{link}" class="page_main_item ad_04 swiper-slide" target="_blank">
|
|
|
+ <img class="page_main_image" src="/img/base/placeholder.png" th:attr="data-original=*{image}" th:alt="*{name}">
|
|
|
+ <div class="page_main_tag" th:if="*{listType}==2"><p th:text="*{label}"></p></div>
|
|
|
+ <div class="page_main_text">
|
|
|
+ <th:block th:if="${pros.containsKey('product')}">
|
|
|
+ <span class="tag" th:if="${pros.get('product').containsKey('beautyActFlag')} and ${pros.get('product').get('beautyActFlag')}==1">美博会</span>
|
|
|
+ </th:block>
|
|
|
+ <span th:text="${pros.get('name')}"></span>
|
|
|
+ </div>
|
|
|
+ <div class="page_main_price" th:if="*{listType}==1">
|
|
|
+ <th:block th:if="${pros.get('product')}!=null" th:object="${pros.get('product')}">
|
|
|
+ <!-- 商品价格 -->
|
|
|
+ <div th:attr="class=*{'main_price_text product_'+productId}, data-id=*{productId}">
|
|
|
+ <!-- 正常商品 -->
|
|
|
+ <th:block th:if="*{productCategory}==1">
|
|
|
+ <div class="price_text_tag" th:if="${pros.get('product').containsKey('actStatus')}">
|
|
|
+ <p class="listTag" th:if="*{actStatus}==1 and ${pros.get('product').get('promotions')}!=null">
|
|
|
+ <template th:text="*{promotions.name}"></template>
|
|
|
+ <th:block th:if="*{promotions.type}==1 and *{promotions.mode}==1">
|
|
|
+ <!--单品优惠:优惠价-->
|
|
|
+ <span class="price_num"></span>
|
|
|
+ </th:block>
|
|
|
</p>
|
|
|
</div>
|
|
|
- <div class="main_price_show" :class="PromotionsFormat(pros.product.promotions) ? 'none' : ''">
|
|
|
- ¥{{ (PromotionsFormat(pros.product.promotions) ? pros.product.price1 : pros.product.retailPrice ) | NumFormat }}
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <!--仅会员机构可见-->
|
|
|
- <template v-else-if="pros.product.price1TextFlag==2 && pros.product.userIdentity==4">
|
|
|
- <div class="main_price_text">
|
|
|
- <div class="price_text_tag">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_unde">¥会员可见</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <div class="price_text_tag right-box">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_none">
|
|
|
- <em class="price_grade"><span class="bold">¥</span><i :class="'icon mIcon price_grade_'+pros.product.price1Grade"></i></em>
|
|
|
- <p class="listTag " v-if="pros.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <div class="main_price_text" v-if="pros.product.detailTalkFlag == '2'">
|
|
|
- <div class="price_text_tag"></div>
|
|
|
- <div class="main_price_show">¥价格祥聊</div>
|
|
|
- </div>
|
|
|
- <div class="main_price_text" v-else>
|
|
|
- <div class="price_text_tag"></div>
|
|
|
- <div class="main_price_show">¥{{ pros.product.retailPrice | NumFormat }}</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <template v-if="pros.product.productCategory == 1">
|
|
|
- <div class="price_text_tag right-box">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_none">
|
|
|
- <em class="price_grade"><span class="bold">¥</span><i :class="'icon mIcon price_grade_'+pros.product.price1Grade"></i></em>
|
|
|
- <p class="listTag " v-if="pros.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <div class="main_price_none sec">
|
|
|
- <em class="price_grade"><span>¥</span>登录可见</em>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- </div>
|
|
|
- </a>
|
|
|
- </div>
|
|
|
- <div class="section_page_more" v-if="page.isPageMore">
|
|
|
- <div class="more" @click="showMorePageFn(page)"> <i class="icon mIcon"></i>查看更多</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-if="page.floorContent && page.floorContent.templateType == '6'">
|
|
|
- <div class="section_page_main clear mfw" :class="page.isPageMore ? '' : 'max'">
|
|
|
- <a :href="pros.link" class="page_main_item ad_04" v-for="(pros,index) in page.floorImageList" target="_blank">
|
|
|
- <img class="page_main_image" src="/img/base/placeholder.png" :data-original="pros.image" :alt="pros.name">
|
|
|
- <div class="page_main_tag" v-if="pros.listType == 2"><p>{{ pros.label }}</p></div>
|
|
|
- <div class="page_main_text"><sapn class="tag" v-if="pros.product!=null && pros.product.beautyActFlag==1">美博会</sapn>{{ pros.name }}</div>
|
|
|
- <div class="page_main_price" v-if="pros.listType == 1">
|
|
|
- <template v-if="GLOBAL_USER_ID && GLOBAL_USER_ID>0">
|
|
|
- <!--正常商品, 二手商品-->
|
|
|
- <!--用户身份 0、个人 1、协销 2、会员机构 3、供应商 4,普通机构-->
|
|
|
- <template v-if="pros.product.productCategory==1">
|
|
|
- <template v-if="pros.product.price1TextFlag==1">
|
|
|
- <!--价格未公开-->
|
|
|
- <div class="main_price_text">
|
|
|
- <div class="price_text_tag">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_unde">¥价格未公开</div>
|
|
|
+ <div class="main_price_none">
|
|
|
+ <em class="price_grade"><span class="bold">¥</span><i th:attr="class=*{'icon mIcon price_grade_'+priceGrade}"></i></em>
|
|
|
+ </div>
|
|
|
+ <div class="main_price_login" th:attr="data-id=*{priceFlag}">
|
|
|
+ <!--0公开价格 1不公开价格 2仅对会员机构公开-->
|
|
|
+ <em th:if="*{priceFlag}==1" class="price_grade"><span>¥</span>价格未公开</em>
|
|
|
+ <th:block th:unless="*{priceFlag}==1">
|
|
|
+ <em class="price_grade_club"><span>¥</span>会员可见</em>
|
|
|
+ <!--机构价-->
|
|
|
+ <div class="main_price_show">¥<span class="price_num"></span></div>
|
|
|
+ <!--单品优惠时的划线价-->
|
|
|
+ <div class="main_price_show none">¥<span class="price_o_num"></span></div>
|
|
|
+ <!--供应商除自己的商品外,也显示价格等级-->
|
|
|
+ <em class="price_grade_shop"><span class="bold">¥</span><i th:attr="class=*{'icon mIcon price_grade_'+priceGrade}"></i></em>
|
|
|
+ </th:block>
|
|
|
+ </div>
|
|
|
+ </th:block>
|
|
|
+ <!-- 二手商品 -->
|
|
|
+ <th:block th:if="*{productCategory}!=1">
|
|
|
+ <div class="main_price_none sec">
|
|
|
+ <em class="price_grade"><span>¥</span>登录可见</em>
|
|
|
+ </div>
|
|
|
+ <div class="main_price_login" data-id="3">
|
|
|
+ <div class="price_text_tag"></div>
|
|
|
+ <div th:if="*{detailTalkFlag}==2" class="main_price_show">¥价格祥聊</div>
|
|
|
+ <div th:if="*{detailTalkFlag}!=2" class="main_price_show">¥<span class="price_num"></span></div>
|
|
|
+ <!--供应商显示价格等级-->
|
|
|
+ <em class="price_grade_shop"><span class="bold">¥</span><i th:attr="class=*{'icon mIcon price_grade_'+priceGrade}"></i></em>
|
|
|
+ </div>
|
|
|
+ </th:block>
|
|
|
</div>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <!--可见价格-->
|
|
|
- <template v-if="(pros.product.price1TextFlag==0 && pros.product.userIdentity!=3) || pros.product.userIdentity==2 || (pros.product.userIdentity==3 && pros.product.shopID==GLOBAL_SHOP_ID)">
|
|
|
- <div class="main_price_text" v-if="pros.product.productCategory == 1">
|
|
|
- <div class="price_text_tag">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">
|
|
|
- {{pros.product.promotions.name}}
|
|
|
- <span v-if="pros.priceFlag != 1">:¥{{pros.product.retailPrice | NumFormat}}</span>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div class="main_price_show" :class="PromotionsFormat(pros.product.promotions) ? 'none' : ''">
|
|
|
- ¥{{ (PromotionsFormat(pros.product.promotions) ? pros.product.price1 : pros.product.retailPrice ) | NumFormat }}
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <!--仅会员机构可见-->
|
|
|
- <template v-else-if="pros.product.price1TextFlag==2 && pros.product.userIdentity==4">
|
|
|
- <div class="main_price_text">
|
|
|
- <div class="price_text_tag">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_unde">¥会员可见</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <div class="price_text_tag right-box">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_none">
|
|
|
- <em class="price_grade"><span class="bold">¥</span><i :class="'icon mIcon price_grade_'+pros.product.price1Grade"></i></em>
|
|
|
- <p class="listTag " v-if="pros.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <div class="main_price_text" v-if="pros.product.detailTalkFlag == '2'">
|
|
|
- <div class="price_text_tag"></div>
|
|
|
- <div class="main_price_show">¥价格祥聊</div>
|
|
|
- </div>
|
|
|
- <div class="main_price_text" v-else>
|
|
|
- <div class="price_text_tag"></div>
|
|
|
- <div class="main_price_show">¥{{ pros.product.retailPrice | NumFormat }}</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <template v-if="pros.product.productCategory == 1">
|
|
|
- <div class="price_text_tag right-box">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_none">
|
|
|
- <em class="price_grade"><span class="bold">¥</span><i :class="'icon mIcon price_grade_'+pros.product.price1Grade"></i></em>
|
|
|
- <p class="listTag " v-if="pros.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <div class="main_price_none sec">
|
|
|
- <em class="price_grade"><span>¥</span>登录可见</em>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- </div>
|
|
|
- </a>
|
|
|
- </div>
|
|
|
- <a :href="page.floorContent.adsLink1!='' ? page.floorContent.adsLink1 : 'javascript:void(0)' "
|
|
|
- class="page_main_item ad_01" :class="page.floorContent.adsLink1!='' ? '' : 'default' "
|
|
|
- :target="page.floorContent.adsLink1!='' ? '_blank' : ''">
|
|
|
- <img v-if="isPC" :src="page.floorContent.pcAdsImage1" alt="" class="page_main_item_adv">
|
|
|
- <img v-else :src="page.floorContent.appletsAdsImage1" alt="" class="page_main_item_adv">
|
|
|
- </a>
|
|
|
- </template>
|
|
|
- <template v-if="page.floorContent && page.floorContent.templateType == '7'">
|
|
|
- <div class="section_page_main clear mfw" :class="page.isPageMore ? 'max' : ''">
|
|
|
- <a :href="pros.link" class="page_main_item ad_04" v-for="(pros,index) in page.floorImageList" target="_blank">
|
|
|
- <img class="page_main_image" src="/img/base/placeholder.png" :data-original="pros.image" :alt="pros.name">
|
|
|
- <div class="page_main_tag" v-if="pros.listType == 2"><p>{{ pros.label }}</p></div>
|
|
|
- <div class="page_main_text"><span class="tag" v-if="pros.product!=null && pros.product.beautyActFlag==1">美博会</span>{{ pros.name }}</div>
|
|
|
- <div class="page_main_price" v-if="pros.listType == 1">
|
|
|
- <template v-if="GLOBAL_USER_ID && GLOBAL_USER_ID>0">
|
|
|
- <!--正常商品, 二手商品-->
|
|
|
- <!--用户身份 0、个人 1、协销 2、会员机构 3、供应商 4,普通机构-->
|
|
|
- <template v-if="pros.product.productCategory==1">
|
|
|
- <template v-if="pros.product.price1TextFlag==1">
|
|
|
- <!--价格未公开-->
|
|
|
- <div class="main_price_text">
|
|
|
- <div class="price_text_tag">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_unde">¥价格未公开</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <!--可见价格-->
|
|
|
- <template v-if="(pros.product.price1TextFlag==0 && pros.product.userIdentity!=3) || pros.product.userIdentity==2 || (pros.product.userIdentity==3 && pros.product.shopID==GLOBAL_SHOP_ID)">
|
|
|
- <div class="main_price_text" v-if="pros.product.productCategory == 1">
|
|
|
- <div class="price_text_tag">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">
|
|
|
- {{pros.product.promotions.name}}
|
|
|
- <span v-if="pros.priceFlag != 1">:¥{{pros.product.retailPrice | NumFormat}}</span>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div class="main_price_show" :class="PromotionsFormat(pros.product.promotions) ? 'none' : ''">
|
|
|
- ¥{{ (PromotionsFormat(pros.product.promotions) ? pros.product.price1 : pros.product.retailPrice ) | NumFormat }}
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <!--仅会员机构可见-->
|
|
|
- <template v-else-if="pros.product.price1TextFlag==2 && pros.product.userIdentity==4">
|
|
|
- <div class="main_price_text">
|
|
|
- <div class="price_text_tag">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_unde">¥会员可见</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <div class="price_text_tag right-box">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_none">
|
|
|
- <em class="price_grade"><span class="bold">¥</span><i :class="'icon mIcon price_grade_'+pros.product.price1Grade"></i></em>
|
|
|
- <p class="listTag " v-if="pros.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <div class="main_price_text" v-if="pros.product.detailTalkFlag == '2'">
|
|
|
- <div class="price_text_tag"></div>
|
|
|
- <div class="main_price_show">¥价格祥聊</div>
|
|
|
- </div>
|
|
|
- <div class="main_price_text" v-else>
|
|
|
- <div class="price_text_tag"></div>
|
|
|
- <div class="main_price_show">¥{{ pros.product.retailPrice | NumFormat }}</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <template v-if="pros.product.productCategory == 1">
|
|
|
- <div class="price_text_tag right-box">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_none">
|
|
|
- <em class="price_grade"><span class="bold">¥</span><i :class="'icon mIcon price_grade_'+pros.product.price1Grade"></i></em>
|
|
|
- <p class="listTag " v-if="pros.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <div class="main_price_none sec">
|
|
|
- <em class="price_grade"><span>¥</span>登录可见</em>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- </div>
|
|
|
- </a>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-if="page.floorContent && page.floorContent.templateType == '8'">
|
|
|
- <div class="floorCon">
|
|
|
- <div class="hotList swiper-container-floor" id="recommendBox">
|
|
|
- <div class="section_page_main type_08 clear mfw swiper-wrapper recommendBox-wrapper" :class="page.isPageMore ? 'max' : ''">
|
|
|
- <a class="page_main_item ad_04 swiper-slide" :href="pros.link" v-for="(pros,index) in page.floorImageList" target="_blank">
|
|
|
- <img class="page_main_image" :src="pros.image" :alt="pros.name">
|
|
|
- <div class="page_main_tag" v-if="pros.listType == 2">{{ pros.label }}</div>
|
|
|
- <div class="page_main_text" target="_blank"><sapn class="tag" v-if="pros.product!=null && pros.product.beautyActFlag==1">美博会</sapn>{{pros.name}}</div>
|
|
|
- <div class="page_main_price" v-if="pros.listType == 1">
|
|
|
- <template v-if="GLOBAL_USER_ID && GLOBAL_USER_ID>0">
|
|
|
- <!--正常商品, 二手商品-->
|
|
|
- <!--用户身份 0、个人 1、协销 2、会员机构 3、供应商 4,普通机构-->
|
|
|
- <template v-if="pros.product.productCategory==1">
|
|
|
- <template v-if="pros.product.price1TextFlag==1">
|
|
|
- <!--价格未公开-->
|
|
|
- <div class="main_price_text">
|
|
|
- <div class="price_text_tag">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_unde">¥价格未公开</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <!--可见价格-->
|
|
|
- <template v-if="(pros.product.price1TextFlag==0 && pros.product.userIdentity!=3) || pros.product.userIdentity==2 || (pros.product.userIdentity==3 && pros.product.shopID==GLOBAL_SHOP_ID)">
|
|
|
- <div class="main_price_text" v-if="pros.product.productCategory == 1">
|
|
|
- <div class="price_text_tag">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">
|
|
|
- {{pros.product.promotions.name}}
|
|
|
- <span v-if="pros.priceFlag != 1">:¥{{pros.product.retailPrice | NumFormat}}</span>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div class="main_price_show" :class="PromotionsFormat(pros.product.promotions) ? 'none' : ''">
|
|
|
- ¥{{ (PromotionsFormat(pros.product.promotions) ? pros.product.price1 : pros.product.retailPrice ) | NumFormat }}
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <!--仅会员机构可见-->
|
|
|
- <template v-else-if="pros.product.price1TextFlag==2 && pros.product.userIdentity==4">
|
|
|
- <div class="main_price_text">
|
|
|
- <div class="price_text_tag">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_unde">¥会员可见</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <div class="price_text_tag right-box">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_none">
|
|
|
- <em class="price_grade"><span class="bold">¥</span><i :class="'icon mIcon price_grade_'+pros.product.price1Grade"></i></em>
|
|
|
- <p class="listTag " v-if="pros.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <div class="main_price_text" v-if="pros.product.detailTalkFlag == '2'">
|
|
|
- <div class="price_text_tag"></div>
|
|
|
- <div class="main_price_show">¥价格祥聊</div>
|
|
|
- </div>
|
|
|
- <div class="main_price_text" v-else>
|
|
|
- <div class="price_text_tag"></div>
|
|
|
- <div class="main_price_show">¥{{ pros.product.retailPrice | NumFormat }}</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <template v-if="pros.product.productCategory == 1">
|
|
|
- <div class="price_text_tag right-box">
|
|
|
- <p class="listTag" v-if="pros.product.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- <div class="main_price_none">
|
|
|
- <em class="price_grade right-box"><span class="bold">¥</span><i :class="'icon mIcon price_grade_'+pros.product.price1Grade"></i></em>
|
|
|
- <p class="listTag" v-if="pros.actStatus==1">{{pros.product.promotions.name}}</p>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
- <div class="main_price_none sec">
|
|
|
- <em class="price_grade"><span>¥</span>登录可见</em>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </template>
|
|
|
+ </th:block>
|
|
|
</div>
|
|
|
</a>
|
|
|
- </div>
|
|
|
- <div class="swiper-pagination swiper-pagination-floor mfc"><span v-if="isPC" v-for="i in Math.ceil(page.floorImageList.length / 5)"></span></div>
|
|
|
+ </th:block>
|
|
|
+ <!-- 广告图 -->
|
|
|
+ <th:block th:if="*{templateType}==6">
|
|
|
+ <a th:href="*{#strings.isEmpty(adsLink1)}? 'javascript:;' : *{adsLink1}" th:attr="target=(*{#strings.isEmpty(adsLink1)} ? '_self' : '_blank')" class="page_main_item ad_01">
|
|
|
+ <img v-if="isPC" th:src="*{pcAdsImage1}" alt="" class="page_main_item_adv">
|
|
|
+ <img v-else th:src="*{appletsAdsImage1}" alt="" class="page_main_item_adv">
|
|
|
+ </a>
|
|
|
+ </th:block>
|
|
|
</div>
|
|
|
+ <div th:if="*{templateType}==8" class="swiper-pagination swiper-pagination-floor mfc" th:attr="data-id=${floor.get('floorImageList').size}"></div>
|
|
|
</div>
|
|
|
- </template>
|
|
|
+ <div class="section_page_more" th:attr="data-id=*{templateType}, data-size=${floor.get('floorImageList').size}">
|
|
|
+ <div class="more" @click="showMoreItem($event)"> <i class="icon mIcon"></i>查看更多</div>
|
|
|
+ </div>
|
|
|
+ </th:block>
|
|
|
+ </th:block>
|
|
|
+ </div>
|
|
|
+ <div class="section_page">
|
|
|
+ <div class="section_page_title">
|
|
|
+ <h1 data-id="99">优质供应商</h1>
|
|
|
+ <p>采美正品联盟 质量保证</p>
|
|
|
</div>
|
|
|
- <div class="section_page">
|
|
|
- <div class="section_page_title">
|
|
|
- <h1 :data-id="pageList.length+1">优质供应商</h1>
|
|
|
- <p>采美正品联盟 质量保证</p>
|
|
|
- </div>
|
|
|
- <div class="section_page_bottom">
|
|
|
- <a :href="supplierWwwLink!='' ? supplierWwwLink : 'javascript:void(0)' " class="page_main_li ad_01" :target="supplierWwwLink!='' ? '_blank' : ''"><img class="page_main_item_adv" :src="supplierImage" alt=""> </a>
|
|
|
- <a :href="shop.link" class="page_main_li ad_02" v-for="(shop,index) in supplierList" target="_blank">
|
|
|
- <img class="page_main_logo" src="/img/base/placeholder.png" :data-original="shop.image" :alt="shop.supplierName">
|
|
|
- <div class="page_main_name">{{ shop.supplierName }}</div>
|
|
|
+ <div class="section_page_bottom" th:object="${floorJson.get('supplierImage')}">
|
|
|
+ <a th:href="*{#strings.isEmpty(wwwLink)}? 'javascript:;' : *{wwwLink}" th:attr="target=(*{#strings.isEmpty(wwwLink)} ? '_self' : '_blank')" class="page_main_li ad_01">
|
|
|
+ <img th:src="*{wwwImage}" alt="" class="page_main_item_adv">
|
|
|
+ </a>
|
|
|
+ <template th:each="shop : ${floorJson.get('supplierImage').get('qualitySupplierList')}" th:object="${shop}">
|
|
|
+ <a th:href="*{link}" target="_blank" class="page_main_li ad_02">
|
|
|
+ <img class="page_main_logo" src="/img/base/placeholder.png" th:attr="data-original=*{image}" th:alt="*{supplierName}">
|
|
|
+ <div class="page_main_name" th:text="*{supplierName}"></div>
|
|
|
</a>
|
|
|
- </div>
|
|
|
+ </template>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <!--右侧边栏导航-->
|
|
|
- <div id="sideNav" v-if="isPC">
|
|
|
- <div class="item">
|
|
|
- <a class="item-sideNav" href="javascript:void(0);" v-for="nav in asideNav" :data-id="nav.id" v-text="nav.value" ></a>
|
|
|
+ </div>
|
|
|
+ <!--右侧边栏导航-->
|
|
|
+ <div id="sideNav" v-if="isPC">
|
|
|
+ <div class="item">
|
|
|
+ <a class="item-sideNav" href="javascript:void(0);" v-for="nav in asideNav" :data-id="nav.id" v-text="nav.value" ></a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <!--美博会弹窗-->
|
|
|
+ <div id="meibohui" class="Popup" v-if="popupFlag" :class="popupFlag ? 'show' :'' "
|
|
|
+ onclick="_czc.push(['_trackEvent','美博会','点击','用户访问','','meibohui'])">
|
|
|
+ <div class="show_popup">
|
|
|
+ <div class="bg_icon" @click="closePopup"><i class="icon mIcon"></i></div>
|
|
|
+ <div class="bg_img" @click="popupPage">
|
|
|
+ <img src="https://static.caimei365.com/app/meibohui/www/activity-pop-pc.png" v-if="isPC">
|
|
|
+ <img src="https://static.caimei365.com/app/meibohui/www/activity-pop-h5.png" v-else>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <!--美博会弹窗-->
|
|
|
-<!-- <div class="Popup" v-if="showflag" :class="showflag ? 'show' :'' ">-->
|
|
|
-<!-- <div class="show_popup">-->
|
|
|
-<!-- <div class="bg_icon" @click="closepopup"><i class="icon mIcon"></i></div>-->
|
|
|
-<!-- <div class="bg_img" @click="zhuanti"><img src="/img/Beautyfair/youhui-pc.png" v-if="isPC"><img src="/img/Beautyfair/youhui.h5.png" v-else></div>-->
|
|
|
-<!-- </div>-->
|
|
|
-<!-- </div>-->
|
|
|
- </template>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<!-- 引入底部 -->
|
|
|
<template th:replace="components/footer"></template>
|