<% var headContent = { include("/pages/template/head.html"){} }; var bodyContent = { %>
<% // 列表头部 %>
姓名 ${model.name}
手机号 ${model.phone}
Email ${model.email}
地址 ${model.addr}
生日 ${model.birthday}
说明 <% if (strutil.length(model.remark) > 6) { %> ${strutil.subStringTo(model.remark, 0, 6)}... <% } else {%> ${model.remark } <% } %>
 
<%}; %> <% layout("/pages/template/_layout.html",{head:headContent,body:bodyContent}){ %> <%} %>