明树Git Lab

Commit f81a5cf9 authored by chenron's avatar chenron

部门管理

parent 28cffdfd
...@@ -46,6 +46,13 @@ const routes = [ ...@@ -46,6 +46,13 @@ const routes = [
// component: () => import('@/views/systemManage/index.vue'), // component: () => import('@/views/systemManage/index.vue'),
meta: { menuName: '系统管理', icon: 'tools' }, meta: { menuName: '系统管理', icon: 'tools' },
children: [ children: [
{
path: '/systemManage/departManage',
name: '部门管理',
title: 'departManage',
component: () => import('@/views/systemManage/departManage.vue'),
meta: { menuName: '部门管理',}
},
{ {
path: '/systemManage/userManage', path: '/systemManage/userManage',
name: '用户管理', name: '用户管理',
......
This diff is collapsed.
<template> <template>
<div class="user-manage" v-loading="loading"> <div class="user-manage" v-loading="loading">
<!-- 查询表单 -->
<div class="search-form"> <div class="search-form">
<commonForm <commonForm
v-model="searchForm" v-model="searchForm"
...@@ -10,8 +9,6 @@ ...@@ -10,8 +9,6 @@
@reset="handleReset" @reset="handleReset"
/> />
</div> </div>
<!-- 用户列表表格 -->
<div class="table-container"> <div class="table-container">
<common-table <common-table
:tableHeight="tableHeight" :tableHeight="tableHeight"
...@@ -52,7 +49,6 @@ ...@@ -52,7 +49,6 @@
</common-table> </common-table>
</div> </div>
<!-- 用户表单对话框 -->
<el-dialog <el-dialog
v-model="dialogVisible" v-model="dialogVisible"
:title="dialogTitle" :title="dialogTitle"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment