Browse Source

还原部门角色绑定

dev
long 2 years ago
parent
commit
b76f328095
  1. 16
      src/views/system/DepartList.vue
  2. 14
      src/views/system/DepartUserList.vue

16
src/views/system/DepartList.vue

@ -1,5 +1,4 @@
<template xmlns:background-color="http://www.w3.org/1999/xhtml">
<a-card :bordered="false">
<a-row :gutter="10">
<a-col :md="12" :sm="24">
<a-card :bordered="false">
@ -8,10 +7,10 @@
<a-row style="margin-left: 14px">
<a-button @click="handleAdd(1)" type="primary">添加部门</a-button>
<a-button @click="handleAdd(2)" type="primary">添加下级</a-button>
<!-- <a-button type="primary" icon="download" @click="handleExportXls('部门信息')">导出</a-button>-->
<!-- <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">-->
<!-- <a-button type="primary" icon="import">导入</a-button>-->
<!-- </a-upload>-->
<a-button type="primary" icon="download" @click="handleExportXls('部门信息')">导出</a-button>
<a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
<a-button type="primary" icon="import">导入</a-button>
</a-upload>
<a-button title="删除多条数据" @click="batchDel" type="default">批量删除</a-button>
<!--<a-button @click="refresh" type="default" icon="reload" :loading="loading">刷新</a-button>-->
</a-row>
@ -156,15 +155,14 @@
</a-empty>
</a-card>
</a-tab-pane>
<!-- <a-tab-pane tab="部门权限" key="2" forceRender>-->
<!-- <depart-auth-modal ref="departAuth"/>-->
<!-- </a-tab-pane>-->
<a-tab-pane tab="部门权限" key="2" forceRender>
<depart-auth-modal ref="departAuth"/>
</a-tab-pane>
</a-tabs>
</a-col>
<depart-modal ref="departModal" @ok="loadTree"></depart-modal>
</a-row>
</a-card>
</template>
<script>
import DepartModal from './modules/DepartModal'

14
src/views/system/DepartUserList.vue

@ -1,5 +1,4 @@
<template>
<a-card :bordered="false">
<a-row :gutter="10">
<a-col :md="8" :sm="24">
<a-card :bordered="false">
@ -36,17 +35,16 @@
<a-tab-pane tab="基本信息" key="1" forceRender>
<Dept-Base-Info ref="DeptBaseInfo"></Dept-Base-Info>
</a-tab-pane>
<!-- <a-tab-pane tab="用户信息" key="2">-->
<!-- <Dept-User-Info ref="DeptUserInfo" @clearSelectedDepartKeys="clearSelectedDepartKeys"></Dept-User-Info>-->
<!-- </a-tab-pane>-->
<!-- <a-tab-pane tab="部门角色" key="3" forceRender>-->
<!-- <dept-role-info ref="DeptRoleInfo" @clearSelectedDepartKeys="clearSelectedDepartKeys"/>-->
<!-- </a-tab-pane>-->
<a-tab-pane tab="用户信息" key="2">
<Dept-User-Info ref="DeptUserInfo" @clearSelectedDepartKeys="clearSelectedDepartKeys"></Dept-User-Info>
</a-tab-pane>
<a-tab-pane tab="部门角色" key="3" forceRender>
<dept-role-info ref="DeptRoleInfo" @clearSelectedDepartKeys="clearSelectedDepartKeys"/>
</a-tab-pane>
</a-tabs>
</a-card>
</a-col>
</a-row>
</a-card>
</template>
<script>
import DeptBaseInfo from './modules/DeptBaseInfo'

Loading…
Cancel
Save