<% var headContent = { include("/pages/template/head.html"){} }; var bodyContent = { %>
<% // 列表头部 %>
父栏目 ${model.parentName!'根栏目' } 名称 ${model.name}
栏目类型 ${flyfox.dictValue(model.material_type!'') } url_key ${model.key}
模板路径 ${model.path}
排序 ${model.sort} 状态 <% if(model.status==2) { %> 隐藏 <% } %> <% if(model.status==1) { %> 显示 <% } %>
跳转类型 ${flyfox.dictValue(model.type ) } 跳转地址 ${model.jump_url}
说明 <% if (strutil.length(model.content) > 30) { %> ${strutil.subStringTo(model.content, 0, 30)}... <% } else {%> ${model.content } <% } %>
seo_title <% if (strutil.length(model.seo_title) > 15) { %> ${strutil.subStringTo(model.seo_title, 0, 15)}... <% } else {%> ${model.seo_title } <% } %> seo_keywords <% if (strutil.length(model.seo_keywords) > 15) { %> ${strutil.subStringTo(model.seo_keywords, 0, 15)}... <% } else {%> ${model.seo_keywords } <% } %>
seo_description <% if (strutil.length(model.seo_description) > 15) { %> ${strutil.subStringTo(model.seo_description, 0, 15)}... <% } else {%> ${model.seo_description } <% } %>
 
<%}; %> <% layout("/pages/template/_layout.html",{head:headContent,body:bodyContent}){ %> <%} %>