@/**
@ * 本页面所用的模板变量
@ *
@ * title : 页面的标题
@ * layoutContent : 主页面的html内容
@ * js : 业务所需要的js,为数组
@ * css : 业务所需要的css,为数组
@ * bg : 背景颜色
@ * plugins : 需要用到的插件,目前有["ztree"]
@ **/
${title!"管理系统"}
@if(isNotEmpty(plugins)){
@if(array.contain(plugins,"ztree")){
@}
@}
@/* 其他业务用的css */
@if(isNotEmpty(css)){
@for(item in css){
@if(strutil.startWith(item,"/")){
@item = ctxPath + item;
@}
@}
@}
@/* 页面加载loading */
@ include("/common/loading.html"){}
@/* 正文 */
${layoutContent}
@/* 加入contextPath属性和session超时的配置 */
@/* js和业务用的js数组 */
@if(isNotEmpty(plugins)){
@if(array.contain(plugins,"ztree")){
@}
@if(array.contain(plugins,"ue")){
@}
@}
@if(isNotEmpty(js)){
@for(item in js){
@if(strutil.startWith(item,"/")){
@item = ctxPath + item;
@}
@}
@}