|
|
|
@ -20,15 +20,19 @@
|
|
|
|
|
<el-menu-item index="${tool.uuid()}" @click="addTab({title: '文件管理', name: 'file', url: '${r'${context}'}/system/file.htm'})">文件管理</el-menu-item>
|
|
|
|
|
</el-submenu>
|
|
|
|
|
<#list modules as item>
|
|
|
|
|
<#if item.hasHtml()>
|
|
|
|
|
<el-submenu index="${tool.uuid()}">
|
|
|
|
|
<template slot="title">
|
|
|
|
|
<i class="el-icon-document-copy"></i>
|
|
|
|
|
<span slot="title">${item.moduleComment}</span>
|
|
|
|
|
</template>
|
|
|
|
|
<#list item.tables as table>
|
|
|
|
|
<#if table.getHtml()>
|
|
|
|
|
<el-menu-item index="${tool.uuid()}" @click="addTab({title: '${table.tableComment}', name: '${table.tableName}', url: '${r"${context}"}/${item.moduleName}/${table.getFName()}.htm'})">${table.tableComment}</el-menu-item>
|
|
|
|
|
</#if>
|
|
|
|
|
</#list>
|
|
|
|
|
</el-submenu>
|
|
|
|
|
</#if>
|
|
|
|
|
</#list>
|
|
|
|
|
</el-menu>
|
|
|
|
|
</div>
|
|
|
|
|