类型 标签名
作用
参数
返回值
完成
站点 site.info(); 获取站点信息

SiteInfo 已完成
站点 site.carouselList(); 获取站点轮播图(列表)
参数名 数据类型 默认值 作用
limit int 10 取前n条数据
type String 类型


List<SiteCarouselPicture> 已完成
站点 site.ad(); 获取站点广告位(单个)
参数名 数据类型 默认值 作用
number String 编号

render

boolean true

广告内容中可能包含

beetl模板的代码,是否执行

返回html片段。

不再返回 SiteAdContent对象

已完成
站点

site.executeTime();

执行时间 java.text.DecimalFormat 已完成
站点 site.recommend(); 获取推荐位(单个)
参数名 数据类型 默认值 作用
number String 编号
SiteRecommend

2.特版位标签

类型 标签名

作用

参数

返回值

站点 site.specialList() 获取特版详情(列表)
参数名 数据类型 默认值 作用
number String 编号

render

boolean true

广告内容中可能包含

beetl模板的代码,是否执行

limit int 10 取前n条数据

List<Object>

列表中的内容是html片段


site.ad()标签广告位使用示例

<% 
var html=site.ad({number:"sy01",render:true});
%>
${html}

site.recommend()推荐位标签使用示例

1.以大首页“特卖惠”为例(推荐商品)

<ul class="pic-list clearfix">
<% var r=site.recommend({number:'tmh'});%>
<% for(ri in r.siteRecommendItemList!){
var product=product.one({pid:ri.pId!});%>
<li>
<div class="p-picture">
<a target="_blank" href="${ri.url!}">
<img src="${ctxfs}${ri.path!}@160x160" onerror="fdp.defaultImage('${ctxStatic}/images/default_goods.png');"/>
</a>
</div>
<div class="text">
<a target="_blank" href="${ri.url!}">
<p class="p-name">${isNotEmpty(product.brandName!)?product.brandName!+'-':''}${product.name!}</p>
<p class="p-price">
<% if((product.type!)=='1'){%>
¥${product.minPrice1!}<span class="price-type"></span>
<%}%>
<% if((product.type!)=='2'){%>
¥${product.minPrice2!}<span class="price-type2"></span>
<%}%>
<% if((product.type!)=='3'){%>
¥${product.minPrice1!}<span class="price-type"></span>
<%}%>
<% if(isNotEmpty(product.marketPrice!)){%>
<span class="p-prom">¥${product.marketPrice!}</span>
<%}%>
</p>
</a>
</div>
</li>
<%}%>
<div class="clear"></div>
</ul>


2.以大首页“品牌商城”为例(推荐图片)

<div id="dos1" class="tab-pane active">
<ul class="piclink-list">
<% var recommend1=site.recommend({number:'ppsc'});%>
<% for(ri in recommend1.siteRecommendItemList){%>
<li>
<a target="_blank" href="${ri.url!}">
<img src="${ctxfs}${ri.path!}@!120X60" onerror="fdp.defaultImage('${ctxfs}/shop_init/store_logo.png');"/>
</a>
</li>
<%}%>
<div class="clear"></div>
</ul>
</div>