多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
#### 全局头尾文件,只包含了css、js以及全局变量,但不包含任何div,引入以下文件。 PC端 ``` {include file="../templates/overall/header_common.html" /} {include file="../templates/overall/footer_common.html" /} ``` 手机端 ``` {include file="../templates/overall/wap/header_common.html" /} {include file="../templates/overall/wap/footer_common.html" /} ``` #### 包括头尾文件+顶部菜+导航菜单+底部菜单+底部版权,引入以下文件。 PC端包含导航 ``` {include file="../templates/overall/header.html" /} {include file="../templates/overall/footer.html" /} ``` PC端只包含头部尾部 ``` {include file="../templates/overall/header_menu.html" /} {include file="../templates/overall/footer_menu.html" /} ``` 手机端 ``` {include file="../templates/overall/wap/header.html" /} {include file="../templates/overall/wap/footer.html" /} ``` #### 引用其他模块的头部模版。 ``` {template file="cms/header.html"/} ``` #### layui表格,如果列表是表格,需额外引入以下文件。 PC端/wap共用 ``` {include file="../templates/overall/inc/layui_form.html" /} ``` #### layui表单,如果是表单页面,需额外引入以下文件。 PC端/wap共用 ``` {include file="../templates/overall/inc/layui_form_q.html" /} ```