
* Update index.vue 多个详情页之间切换tab,页面没有重新渲染 * feature:新增同步API功能 * feature: 同步表数据 * feature:新增同步API功能 * feature: 增加V2插件注册 * feature:给Enter的依赖结构增加单独的New 方便引用 * feature: 调整关联属性的选择模式 * feature: 增加component组件和name的映射插件,防止keepalive的懒加载失效。 * update: PluginInitializeRouter && 修复TypePluginInitializeMenu ast 类型错误 * update: 测试文件的astType 类型错误 * feature: 文件变更自动同步componentName.json。 * feature: 文件变更自动同步componentName.json。 * feat: UI美化 * feat: 自动化页面顺序调整 * feature:修改404页面 * update: PluginInitializeMenu * update: Plugin template * fixed systemApi 重复声明 * api.vue:update:修改API分组为下拉列表 * update: import添加注释 * update: plugin_enter_test.go 增加测试用例 * update: ast 预览文件路径 * update: config Autocode 新增Module字段以及如果为空的情况下自动获取运行目录下的go.mod文件 * update: auto_code_package.go 完善调用ast工具类的封装使用 * update: auto_code_template.go Create方法和修正SysAutoCodeHistory * feat:调整自动化package为模板,增加初始化配置信息,调整页面信息。 * update: ast PreviewPath MkdirAll * update: ast type错误, PluginEnter and PackageModuleEnter add TemplatePath模版路径 * update: autoCodePackage and autoCodeTemplate bug修正 * update: PackageInitializeRouter 传入两个路由组 * update: PackageModuleEnter 处理空变量时与type冲突注入 * update: Package 模版更新 * update: utils/ast 优化统一 * update: 注入内容修复错误 * fix: 修复注释错误 * update: plugin 模版 完成 * feature: 文件watch功能只在development下开启 * update: viper.go.template 因为viper不区分配置的key的大小写所以用package * update: ast 测试代码规范化 * update: package 删除api和router多余导包 * update: plugin template * update: auto_code_package 问题修复 * update: ast 测试插件的预览功能 * update: gorm_biz 更新注册方式 * update: go.mod tidy * remove: plugin template gen main.go.template * update: ast 重构, 分离读取和写入步骤支持 * update: AutoCodePackageApi 传入参数错误修复 * rename: sys_autocode_history.go => sys_auto_code_history.go * update: 预览无需落盘, 创建落盘,抽离公共参数 * update: api.go.tpl 导包位置fmt 和package js位置存放错误 * update: 测试用例修复 and PackageInitializeGorm 重构 * update: ast 新增相对路径, 代码生成器历史回滚功能 * update: ast 工具类回滚失败修复以及测试文件 * update: 代码生成器历史 回滚问题修复 * update: 代码生成器模版忽略.DS_Store * featute: 自动化GORM结构的注入和剔除 * feature: 插件模板调整 * feature: 增加公告插件示例,调整代码模板。 * feature: 自动注册插件V2。 --------- Co-authored-by: zayn <972858472@qq.com> Co-authored-by: SliverHorn <sliver_horn@qq.com> Co-authored-by: krank <emosick@qq.com> Co-authored-by: cjk <wlicjk@126.com> Co-authored-by: piexlMax(奇淼 <qimiaojiangjizhao@gmail.com> Co-authored-by: maxwell <zhong.maxwell@gmail.com>
865 lines
22 KiB
Vue
865 lines
22 KiB
Vue
<template>
|
||
<div>
|
||
<div class="gva-table-box">
|
||
<div class="gva-btn-list">
|
||
<el-button
|
||
type="primary"
|
||
icon="plus"
|
||
@click="addMenu(0)"
|
||
>
|
||
新增根菜单
|
||
</el-button>
|
||
<el-icon
|
||
class="cursor-pointer"
|
||
@click="
|
||
toDoc(
|
||
'https://www.bilibili.com/video/BV1kv4y1g7nT/?p=4&vd_source=f2640257c21e3b547a790461ed94875e'
|
||
)
|
||
"
|
||
>
|
||
<VideoCameraFilled />
|
||
</el-icon>
|
||
</div>
|
||
|
||
<!-- 由于此处菜单跟左侧列表一一对应所以不需要分页 pageSize默认999 -->
|
||
<el-table
|
||
:data="tableData"
|
||
row-key="ID"
|
||
>
|
||
<el-table-column
|
||
align="left"
|
||
label="ID"
|
||
min-width="100"
|
||
prop="ID"
|
||
/>
|
||
<el-table-column
|
||
align="left"
|
||
label="展示名称"
|
||
min-width="120"
|
||
prop="authorityName"
|
||
>
|
||
<template #default="scope">
|
||
<span>{{ scope.row.meta.title }}</span>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column
|
||
align="left"
|
||
label="图标"
|
||
min-width="140"
|
||
prop="authorityName"
|
||
>
|
||
<template #default="scope">
|
||
<div
|
||
v-if="scope.row.meta.icon"
|
||
class="icon-column"
|
||
>
|
||
<el-icon>
|
||
<component :is="scope.row.meta.icon" />
|
||
</el-icon>
|
||
<span>{{ scope.row.meta.icon }}</span>
|
||
</div>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column
|
||
align="left"
|
||
label="路由Name"
|
||
show-overflow-tooltip
|
||
min-width="160"
|
||
prop="name"
|
||
/>
|
||
<el-table-column
|
||
align="left"
|
||
label="路由Path"
|
||
show-overflow-tooltip
|
||
min-width="160"
|
||
prop="path"
|
||
/>
|
||
<el-table-column
|
||
align="left"
|
||
label="是否隐藏"
|
||
min-width="100"
|
||
prop="hidden"
|
||
>
|
||
<template #default="scope">
|
||
<span>{{ scope.row.hidden ? "隐藏" : "显示" }}</span>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column
|
||
align="left"
|
||
label="父节点"
|
||
min-width="90"
|
||
prop="parentId"
|
||
/>
|
||
<el-table-column
|
||
align="left"
|
||
label="排序"
|
||
min-width="70"
|
||
prop="sort"
|
||
/>
|
||
<el-table-column
|
||
align="left"
|
||
label="文件路径"
|
||
min-width="360"
|
||
prop="component"
|
||
/>
|
||
<el-table-column
|
||
align="left"
|
||
fixed="right"
|
||
label="操作"
|
||
width="300"
|
||
>
|
||
<template #default="scope">
|
||
<el-button
|
||
type="primary"
|
||
link
|
||
icon="plus"
|
||
@click="addMenu(scope.row.ID)"
|
||
>
|
||
添加子菜单
|
||
</el-button>
|
||
<el-button
|
||
type="primary"
|
||
link
|
||
icon="edit"
|
||
@click="editMenu(scope.row.ID)"
|
||
>
|
||
编辑
|
||
</el-button>
|
||
<el-button
|
||
type="primary"
|
||
link
|
||
icon="delete"
|
||
@click="deleteMenu(scope.row.ID)"
|
||
>
|
||
删除
|
||
</el-button>
|
||
</template>
|
||
</el-table-column>
|
||
</el-table>
|
||
</div>
|
||
<el-drawer
|
||
v-model="dialogFormVisible"
|
||
size="60%"
|
||
:before-close="handleClose"
|
||
:show-close="false"
|
||
>
|
||
<template #header>
|
||
<div class="flex justify-between items-center">
|
||
<span class="text-lg">{{ dialogTitle }}</span>
|
||
<div>
|
||
<el-button @click="closeDialog">
|
||
取 消
|
||
</el-button>
|
||
<el-button
|
||
type="primary"
|
||
@click="enterDialog"
|
||
>
|
||
确 定
|
||
</el-button>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<warning-bar title="新增菜单,需要在角色管理内配置权限才可使用" />
|
||
<el-form
|
||
v-if="dialogFormVisible"
|
||
ref="menuForm"
|
||
:inline="true"
|
||
:model="form"
|
||
:rules="rules"
|
||
label-position="top"
|
||
>
|
||
<el-row class="w-full">
|
||
<el-col :span="16">
|
||
<el-form-item
|
||
label="文件路径"
|
||
prop="component"
|
||
>
|
||
<el-select
|
||
v-model="form.component"
|
||
filterable
|
||
allow-create
|
||
autocomplete="off"
|
||
style="width: 100%"
|
||
placeholder="页面:view/xxx/xx.vue 插件:plugin/xx/xx.vue"
|
||
default-first-option
|
||
@change="fmtComponent"
|
||
>
|
||
<el-option
|
||
v-for="(item,path) in pathOptions"
|
||
:key="path"
|
||
:label="path"
|
||
:value="path"
|
||
/>
|
||
</el-select>
|
||
<span style="font-size: 12px; margin-right: 12px">如果菜单包含子菜单,请创建router-view二级路由页面或者</span><el-button
|
||
style="margin-top: 4px"
|
||
@click="form.component = 'view/routerHolder.vue'"
|
||
>
|
||
点我设置
|
||
</el-button>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="8">
|
||
<el-form-item
|
||
label="展示名称"
|
||
prop="meta.title"
|
||
>
|
||
<el-input
|
||
v-model="form.meta.title"
|
||
autocomplete="off"
|
||
/>
|
||
</el-form-item>
|
||
</el-col>
|
||
</el-row>
|
||
<el-row class="w-full">
|
||
<el-col :span="8">
|
||
<el-form-item
|
||
label="路由Name"
|
||
prop="path"
|
||
>
|
||
<el-input
|
||
v-model="form.name"
|
||
autocomplete="off"
|
||
placeholder="唯一英文字符串"
|
||
@change="changeName"
|
||
/>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="8">
|
||
<el-form-item
|
||
prop="path"
|
||
>
|
||
<template #label>
|
||
<span style="display: inline-flex; align-items: center">
|
||
<span>路由Path</span>
|
||
<el-checkbox
|
||
v-model="checkFlag"
|
||
style="margin-left: 12px; height: auto"
|
||
>添加参数</el-checkbox>
|
||
</span>
|
||
</template>
|
||
|
||
<el-input
|
||
v-model="form.path"
|
||
:disabled="!checkFlag"
|
||
autocomplete="off"
|
||
placeholder="建议只在后方拼接参数"
|
||
/>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="8">
|
||
<el-form-item
|
||
label="是否隐藏"
|
||
>
|
||
<el-select
|
||
v-model="form.hidden"
|
||
style="width: 100%"
|
||
placeholder="是否在列表隐藏"
|
||
>
|
||
<el-option
|
||
:value="false"
|
||
label="否"
|
||
/>
|
||
<el-option
|
||
:value="true"
|
||
label="是"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>
|
||
</el-col>
|
||
</el-row>
|
||
<el-row class="w-full">
|
||
<el-col :span="8">
|
||
<el-form-item
|
||
label="父节点ID"
|
||
>
|
||
<el-cascader
|
||
v-model="form.parentId"
|
||
style="width: 100%"
|
||
:disabled="!isEdit"
|
||
:options="menuOption"
|
||
:props="{
|
||
checkStrictly: true,
|
||
label: 'title',
|
||
value: 'ID',
|
||
disabled: 'disabled',
|
||
emitPath: false,
|
||
}"
|
||
:show-all-levels="false"
|
||
filterable
|
||
/>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="8">
|
||
<el-form-item
|
||
label="图标"
|
||
prop="meta.icon"
|
||
>
|
||
<icon
|
||
:meta="form.meta"
|
||
/>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="8">
|
||
<el-form-item
|
||
label="排序标记"
|
||
prop="sort"
|
||
>
|
||
<el-input
|
||
v-model.number="form.sort"
|
||
autocomplete="off"
|
||
/>
|
||
</el-form-item>
|
||
</el-col>
|
||
</el-row>
|
||
<el-row class="w-full">
|
||
<el-col :span="8">
|
||
<el-form-item
|
||
prop="meta.activeName"
|
||
>
|
||
<template #label>
|
||
<div>
|
||
<span> 高亮菜单 </span>
|
||
<el-tooltip
|
||
content="注:当到达此路由时候,指定左侧菜单指定name会处于活跃状态(亮起),可为空,为空则为本路由Name。"
|
||
placement="top"
|
||
effect="light"
|
||
>
|
||
<el-icon><QuestionFilled /></el-icon>
|
||
</el-tooltip>
|
||
</div>
|
||
</template>
|
||
<el-input
|
||
v-model="form.meta.activeName"
|
||
:placeholder="form.name"
|
||
autocomplete="off"
|
||
/>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="8">
|
||
<el-form-item
|
||
label="KeepAlive"
|
||
prop="meta.keepAlive"
|
||
>
|
||
<el-select
|
||
v-model="form.meta.keepAlive"
|
||
style="width: 100%"
|
||
placeholder="是否keepAlive缓存页面"
|
||
>
|
||
<el-option
|
||
:value="false"
|
||
label="否"
|
||
/>
|
||
<el-option
|
||
:value="true"
|
||
label="是"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="8">
|
||
<el-form-item
|
||
label="CloseTab"
|
||
prop="meta.closeTab"
|
||
>
|
||
<el-select
|
||
v-model="form.meta.closeTab"
|
||
style="width: 100%"
|
||
placeholder="是否自动关闭tab"
|
||
>
|
||
<el-option
|
||
:value="false"
|
||
label="否"
|
||
/>
|
||
<el-option
|
||
:value="true"
|
||
label="是"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>
|
||
</el-col>
|
||
</el-row>
|
||
<el-row class="w-full">
|
||
<el-col :span="8">
|
||
<el-form-item>
|
||
<template #label>
|
||
<div>
|
||
<span> 是否为基础页面 </span>
|
||
<el-tooltip
|
||
content="此项选择为是,则不会展示左侧菜单以及顶部信息。"
|
||
placement="top"
|
||
effect="light"
|
||
>
|
||
<el-icon><QuestionFilled /></el-icon>
|
||
</el-tooltip>
|
||
</div>
|
||
</template>
|
||
|
||
<el-select
|
||
v-model="form.meta.defaultMenu"
|
||
style="width: 100%"
|
||
placeholder="是否为基础页面"
|
||
>
|
||
<el-option
|
||
:value="false"
|
||
label="否"
|
||
/>
|
||
<el-option
|
||
:value="true"
|
||
label="是"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>
|
||
</el-col>
|
||
</el-row>
|
||
</el-form>
|
||
<div>
|
||
<div class="flex items-center gap-2">
|
||
<el-button
|
||
type="primary"
|
||
icon="edit"
|
||
@click="addParameter(form)"
|
||
>
|
||
新增菜单参数
|
||
</el-button>
|
||
<el-icon
|
||
class="cursor-pointer"
|
||
@click="
|
||
toDoc(
|
||
'https://www.bilibili.com/video/BV1kv4y1g7nT?p=9&vd_source=f2640257c21e3b547a790461ed94875e'
|
||
)
|
||
"
|
||
>
|
||
<VideoCameraFilled />
|
||
</el-icon>
|
||
</div>
|
||
<el-table
|
||
:data="form.parameters"
|
||
style="width: 100%; margin-top: 12px"
|
||
>
|
||
<el-table-column
|
||
align="left"
|
||
prop="type"
|
||
label="参数类型"
|
||
width="180"
|
||
>
|
||
<template #default="scope">
|
||
<el-select
|
||
v-model="scope.row.type"
|
||
placeholder="请选择"
|
||
>
|
||
<el-option
|
||
key="query"
|
||
value="query"
|
||
label="query"
|
||
/>
|
||
<el-option
|
||
key="params"
|
||
value="params"
|
||
label="params"
|
||
/>
|
||
</el-select>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column
|
||
align="left"
|
||
prop="key"
|
||
label="参数key"
|
||
width="180"
|
||
>
|
||
<template #default="scope">
|
||
<div>
|
||
<el-input v-model="scope.row.key" />
|
||
</div>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column
|
||
align="left"
|
||
prop="value"
|
||
label="参数值"
|
||
>
|
||
<template #default="scope">
|
||
<div>
|
||
<el-input v-model="scope.row.value" />
|
||
</div>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column align="left">
|
||
<template #default="scope">
|
||
<div>
|
||
<el-button
|
||
type="danger"
|
||
icon="delete"
|
||
@click="deleteParameter(form.parameters, scope.$index)"
|
||
>
|
||
删除
|
||
</el-button>
|
||
</div>
|
||
</template>
|
||
</el-table-column>
|
||
</el-table>
|
||
|
||
<div class="flex items-center gap-2 mt-3">
|
||
<el-button
|
||
type="primary"
|
||
icon="edit"
|
||
@click="addBtn(form)"
|
||
>
|
||
新增可控按钮
|
||
</el-button>
|
||
<el-icon
|
||
class="cursor-pointer"
|
||
@click="
|
||
toDoc('https://www.gin-vue-admin.com/guide/web/button-auth.html')
|
||
"
|
||
>
|
||
<QuestionFilled />
|
||
</el-icon>
|
||
<el-icon
|
||
class="cursor-pointer"
|
||
@click="
|
||
toDoc(
|
||
'https://www.bilibili.com/video/BV1kv4y1g7nT?p=11&vd_source=f2640257c21e3b547a790461ed94875e'
|
||
)
|
||
"
|
||
>
|
||
<VideoCameraFilled />
|
||
</el-icon>
|
||
</div>
|
||
|
||
<el-table
|
||
:data="form.menuBtn"
|
||
style="width: 100%; margin-top: 12px"
|
||
>
|
||
<el-table-column
|
||
align="left"
|
||
prop="name"
|
||
label="按钮名称"
|
||
width="180"
|
||
>
|
||
<template #default="scope">
|
||
<div>
|
||
<el-input v-model="scope.row.name" />
|
||
</div>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column
|
||
align="left"
|
||
prop="name"
|
||
label="备注"
|
||
width="180"
|
||
>
|
||
<template #default="scope">
|
||
<div>
|
||
<el-input v-model="scope.row.desc" />
|
||
</div>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column align="left">
|
||
<template #default="scope">
|
||
<div>
|
||
<el-button
|
||
type="danger"
|
||
icon="delete"
|
||
@click="deleteBtn(form.menuBtn, scope.$index)"
|
||
>
|
||
删除
|
||
</el-button>
|
||
</div>
|
||
</template>
|
||
</el-table-column>
|
||
</el-table>
|
||
</div>
|
||
</el-drawer>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup>
|
||
import {
|
||
updateBaseMenu,
|
||
getMenuList,
|
||
addBaseMenu,
|
||
deleteBaseMenu,
|
||
getBaseMenuById,
|
||
} from '@/api/menu'
|
||
import icon from '@/view/superAdmin/menu/icon.vue'
|
||
import WarningBar from '@/components/warningBar/warningBar.vue'
|
||
import { canRemoveAuthorityBtnApi } from '@/api/authorityBtn'
|
||
import { reactive, ref, onMounted } from 'vue'
|
||
import { ElMessage, ElMessageBox } from 'element-plus'
|
||
import { QuestionFilled, VideoCameraFilled } from '@element-plus/icons-vue'
|
||
import pathInfo from '@/pathInfo.json'
|
||
|
||
import { toDoc } from '@/utils/doc'
|
||
import { toLowerCase } from '@/utils/stringFun'
|
||
|
||
defineOptions({
|
||
name: 'Menus',
|
||
})
|
||
|
||
const pathOptions = reactive({})
|
||
|
||
onMounted(()=>{
|
||
for (let pathInfoKey in pathInfo) {
|
||
// 取消掉最前面的 /src/
|
||
pathOptions[pathInfoKey.replace(/^\/src\//, '')] = pathInfo[pathInfoKey]
|
||
}
|
||
})
|
||
|
||
const rules = reactive({
|
||
path: [{ required: true, message: '请输入菜单name', trigger: 'blur' }],
|
||
component: [{ required: true, message: '请输入文件路径', trigger: 'blur' }],
|
||
'meta.title': [
|
||
{ required: true, message: '请输入菜单展示名称', trigger: 'blur' },
|
||
],
|
||
})
|
||
|
||
const page = ref(1)
|
||
const total = ref(0)
|
||
const pageSize = ref(999)
|
||
const tableData = ref([])
|
||
const searchInfo = ref({})
|
||
// 查询
|
||
const getTableData = async() => {
|
||
const table = await getMenuList({
|
||
page: page.value,
|
||
pageSize: pageSize.value,
|
||
...searchInfo.value,
|
||
})
|
||
if (table.code === 0) {
|
||
tableData.value = table.data.list
|
||
total.value = table.data.total
|
||
page.value = table.data.page
|
||
pageSize.value = table.data.pageSize
|
||
}
|
||
}
|
||
|
||
getTableData()
|
||
|
||
// 新增参数
|
||
const addParameter = (form) => {
|
||
if (!form.parameters) {
|
||
form.parameters = []
|
||
}
|
||
form.parameters.push({
|
||
type: 'query',
|
||
key: '',
|
||
value: '',
|
||
})
|
||
}
|
||
|
||
const fmtComponent = () => {
|
||
form.value.component = form.value.component.replace(/\\/g, '/')
|
||
form.value.name = toLowerCase(pathOptions[form.value.component])
|
||
}
|
||
|
||
// 删除参数
|
||
const deleteParameter = (parameters, index) => {
|
||
parameters.splice(index, 1)
|
||
}
|
||
|
||
// 新增可控按钮
|
||
const addBtn = (form) => {
|
||
if (!form.menuBtn) {
|
||
form.menuBtn = []
|
||
}
|
||
form.menuBtn.push({
|
||
name: '',
|
||
desc: '',
|
||
})
|
||
}
|
||
// 删除可控按钮
|
||
const deleteBtn = async(btns, index) => {
|
||
const btn = btns[index]
|
||
if (btn.ID === 0) {
|
||
btns.splice(index, 1)
|
||
return
|
||
}
|
||
const res = await canRemoveAuthorityBtnApi({ id: btn.ID })
|
||
if (res.code === 0) {
|
||
btns.splice(index, 1)
|
||
}
|
||
}
|
||
|
||
const form = ref({
|
||
ID: 0,
|
||
path: '',
|
||
name: '',
|
||
hidden: false,
|
||
parentId: 0,
|
||
component: '',
|
||
meta: {
|
||
activeName: '',
|
||
title: '',
|
||
icon: '',
|
||
defaultMenu: false,
|
||
closeTab: false,
|
||
keepAlive: false,
|
||
},
|
||
parameters: [],
|
||
menuBtn: [],
|
||
})
|
||
const changeName = () => {
|
||
form.value.path = form.value.name
|
||
}
|
||
|
||
const handleClose = (done) => {
|
||
initForm()
|
||
done()
|
||
}
|
||
// 删除菜单
|
||
const deleteMenu = (ID) => {
|
||
ElMessageBox.confirm('此操作将永久删除所有角色下该菜单, 是否继续?', '提示', {
|
||
confirmButtonText: '确定',
|
||
cancelButtonText: '取消',
|
||
type: 'warning',
|
||
})
|
||
.then(async() => {
|
||
const res = await deleteBaseMenu({ ID })
|
||
if (res.code === 0) {
|
||
ElMessage({
|
||
type: 'success',
|
||
message: '删除成功!',
|
||
})
|
||
if (tableData.value.length === 1 && page.value > 1) {
|
||
page.value--
|
||
}
|
||
getTableData()
|
||
}
|
||
})
|
||
.catch(() => {
|
||
ElMessage({
|
||
type: 'info',
|
||
message: '已取消删除',
|
||
})
|
||
})
|
||
}
|
||
// 初始化弹窗内表格方法
|
||
const menuForm = ref(null)
|
||
const checkFlag = ref(false)
|
||
const initForm = () => {
|
||
checkFlag.value = false
|
||
menuForm.value.resetFields()
|
||
form.value = {
|
||
ID: 0,
|
||
path: '',
|
||
name: '',
|
||
hidden: false,
|
||
parentId: 0,
|
||
component: '',
|
||
meta: {
|
||
title: '',
|
||
icon: '',
|
||
defaultMenu: false,
|
||
closeTab: false,
|
||
keepAlive: false,
|
||
},
|
||
}
|
||
}
|
||
// 关闭弹窗
|
||
|
||
const dialogFormVisible = ref(false)
|
||
const closeDialog = () => {
|
||
initForm()
|
||
dialogFormVisible.value = false
|
||
}
|
||
// 添加menu
|
||
const enterDialog = async() => {
|
||
menuForm.value.validate(async(valid) => {
|
||
if (valid) {
|
||
let res
|
||
if (isEdit.value) {
|
||
res = await updateBaseMenu(form.value)
|
||
} else {
|
||
res = await addBaseMenu(form.value)
|
||
}
|
||
if (res.code === 0) {
|
||
ElMessage({
|
||
type: 'success',
|
||
message: isEdit.value ? '编辑成功' : '添加成功!',
|
||
})
|
||
getTableData()
|
||
}
|
||
initForm()
|
||
dialogFormVisible.value = false
|
||
}
|
||
})
|
||
}
|
||
|
||
const menuOption = ref([
|
||
{
|
||
ID: '0',
|
||
title: '根菜单',
|
||
},
|
||
])
|
||
const setOptions = () => {
|
||
menuOption.value = [
|
||
{
|
||
ID: 0,
|
||
title: '根目录',
|
||
},
|
||
]
|
||
setMenuOptions(tableData.value, menuOption.value, false)
|
||
}
|
||
const setMenuOptions = (menuData, optionsData, disabled) => {
|
||
menuData &&
|
||
menuData.forEach((item) => {
|
||
if (item.children && item.children.length) {
|
||
const option = {
|
||
title: item.meta.title,
|
||
ID: item.ID,
|
||
disabled: disabled || item.ID === form.value.ID,
|
||
children: [],
|
||
}
|
||
setMenuOptions(
|
||
item.children,
|
||
option.children,
|
||
disabled || item.ID === form.value.ID
|
||
)
|
||
optionsData.push(option)
|
||
} else {
|
||
const option = {
|
||
title: item.meta.title,
|
||
ID: item.ID,
|
||
disabled: disabled || item.ID === form.value.ID,
|
||
}
|
||
optionsData.push(option)
|
||
}
|
||
})
|
||
}
|
||
|
||
// 添加菜单方法,id为 0则为添加根菜单
|
||
const isEdit = ref(false)
|
||
const dialogTitle = ref('新增菜单')
|
||
const addMenu = (id) => {
|
||
dialogTitle.value = '新增菜单'
|
||
form.value.parentId = id
|
||
isEdit.value = false
|
||
setOptions()
|
||
dialogFormVisible.value = true
|
||
}
|
||
// 修改菜单方法
|
||
const editMenu = async(id) => {
|
||
dialogTitle.value = '编辑菜单'
|
||
const res = await getBaseMenuById({ id })
|
||
form.value = res.data.menu
|
||
isEdit.value = true
|
||
setOptions()
|
||
dialogFormVisible.value = true
|
||
}
|
||
</script>
|
||
|
||
<style scoped lang="scss">
|
||
.warning {
|
||
color: #dc143c;
|
||
}
|
||
.icon-column {
|
||
display: flex;
|
||
align-items: center;
|
||
.el-icon {
|
||
margin-right: 8px;
|
||
}
|
||
}
|
||
</style>
|