藏茗山學院
安全可靠、性能穩定、追求極致的用戶體驗
JEECMSv9.x常用功能標簽大全
專題分頁 [@cms_topic_page]
專題分頁標簽
[@cms_topic_page channelId=’1’ recommend=’1’ count='2' descLen='50' append='...']
參數詳解:
channelId:欄目ID 非必選
recommend:是否推薦 0全部 1推薦的 非必選
count :每頁分頁數
作用:對頁面顯示的專題列表進行分頁
具體例子:
<div class="pagebar" style="margin:30px auto;">
[@cms_topic_page count='2' descLen='50' append='...']
<div class="pagebar" >
[#list tag_pagination.list as t]
<dl class="list line zt">
<dt><a href="${base}/topic/${t.id}.jspx" target="_blank">${t.name}</a></dt>
<dd class="pic"><a href="${base}/topic/${t.id}.jspx"><img src="${t.titleImg!site.defImg}"/></a></dd>
<dd class="text">[@text_cut s=t.description len=descLen append=append/]</dd>
</dl>
[/#list]
</div>
<div>[@cms_pagination sysPage='1'/]</div>
[/@cms_topic_page]
</div>
專題對象屬性
name:專題名稱
shortName:簡稱
keywords:關鍵詞
description:描述
titleImg:標題圖
contentImg:內容圖
priority:排序
recommend:是否推薦
專題列表 [@cms_topic_list]
專題列表標簽
[@cms_topic_list channelId=’1’ recommend=’1’ count='2' descLen='50' append='...']
參數詳解:
參數和cms_topic_page標簽相同,只是cms_topic_list標簽體內不能插入分頁標簽[@cms_pagination sysPage='1'/]
count:列表獲取的專題數量
評論分頁 [@cms_comment_page]
評論分頁標簽
[@cms_comment_page siteId =‘1’contentId=‘1’ greaterThen=‘0’ checked=‘1’ recommend =‘1’ count='6' orderBy='1 ']
參數詳解:
siteId:站點id,非必選
contentId:內容ID,非必選
greaterThen: 評論內容最大支持大于多少,非必選
checked: 是否需要審核,1審核通過的,0 全部 非必選 默認全部
recommend:是否推薦,1推薦的,0 全部 非必選 默認全部
parentId:上級評論ID 優先級大于contentId若是出現了parentId ,contentId參數無效
count:分頁數
orderBy:排列順序:0 :按評論時間降序 1 :按評論時間升序。默認降序
若是parentId contentId siteId都沒有,則默認當前站點的評論
在內容頁模板中可以將contentId 設置成content.id,讀取本內容下的評論
作用:對評論分頁讀取
具體例子:
<div class="pagebar">
[@cms_comment_page contentId=content.id count='6' orderBy='1']
<dl class="rmpl">
[#if tag_pagination.list?size = 0]
<dt><span>暫無相關評論!</span></dt>
[#else]
[#list tag_pagination.list as c]
<dt><span>${(c.commentUser.username)!"匿名網友"}</span>于 ${c.createTime} 評論道:</dt>
<dd>${c.textHtml!}</dd>
<dd class="line"></dd>
[/#list]
<div class="pagebar">[@cms_pagination sysPage='1'/]</div>
[/#if]
</dl>
[/@cms_comment_page]
</div>
評論對象屬性
textHtml:評論內容
replayHtml:回復內容
ip:評論者ip地址
createTime:評論時間
replayTime:回復時間
ups:頂數
downs:踩數
recommend:是否推薦
checked:是否審核
replyCount:回復數
replayUser:回復用戶對象 例如獲取回復管理員用戶名${c. replayUser.username!}
commentUser:評論用戶對象 例如${c. commentUser.username!}
parent:父級評論對象 例如${c. parent.username!}
評論列表 [@cms_comment_list]
評論列表標簽
[@cms_comment_list siteId =‘1’contentId=‘1’ greaterThen=‘0’ checked=‘1’ recommend =‘1’ count='6' orderBy='1 ']
參數和cms_comment_page標簽一致,只是不能標簽體內不能插入分頁標簽
具體例子:
<div class="blue_right_top"><h2><a href="#" target="_blank">熱門評論</a></h2></div>
<div class="blue_right_div">
[@cms_comment_list siteId='1' count='5' recommend='1' textLen='50' append='...']
<dl class="rmpl">
[#list tag_list as c]
<dt><span>${(c.commentUser.username)!"匿名網友"}</span>對<a href="${c.content.url}" target="_blank">${c.content.title}</a>評論道:</dt>
<dd>[@text_cut s=c.textHtml len=textLen append=append/]</dd>
<dd class="line"></dd>
[/#list]
</dl>
[/@cms_comment_list]
</div>