| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- <template>
- <div class="ele-body">
- <el-card shadow="never" v-loading="loading">
- <ele-split-layout
- width="266px"
- allow-collapse
- :right-style="{ overflow: 'hidden' }"
- >
- <div>
- <!-- 操作按钮 -->
- <ele-toolbar class="ele-toolbar-actions">
- <div style="margin: 5px 0">
- <el-input size="small" suffix-icon="el-icon-search" placeholder="请输入功能名称" v-model="filterText"> </el-input>
- </div>
- </ele-toolbar>
- <div class="ele-border-lighter sys-organization-list">
- <el-tree
- ref="tree"
- :data="data"
- highlight-current
- node-key="id"
- :props="{ label: 'name' }"
- :expand-on-click-node="false"
- :default-expand-all="true"
- @node-click="onNodeClick"
- />
- </div>
- </div>
- <template v-slot:content>
- <code-list
- v-if="current"
- :organization-list="data"
- :organization-id="current.id"
- />
- </template>
- </ele-split-layout>
- </el-card>
- </div>
- </template>
- <script>
- import CodeList from './components/code-list.vue';
- import {
- listOrganizations,
- removeOrganization
- } from '@/api/system/organization';
- export default {
- name: 'codeManagement',
- components: { CodeList },
- data() {
- return {
- // 加载状态
- loading: true,
- // 列表数据
- data: [],
- // 选中数据
- current: null,
- // 是否显示表单弹窗
- showEdit: false,
- // 编辑回显数据
- editData: null,
- // 上级id
- parentId: null,
- filterText:''
- };
- },
- created() {
- this.query();
- },
- methods: {
- /* 查询 */
- query() {
- this.loading = true;
- listOrganizations()
- .then((list) => {
- this.loading = false;
- this.data = this.$util.toTreeData({
- data: list,
- idField: 'id',
- parentIdField: 'parentId'
- });
- this.$nextTick(() => {
- this.onNodeClick(this.data[0]);
- });
- })
- .catch((e) => {
- this.loading = false;
- this.$message.error(e.message);
- });
- },
- /* 选择数据 */
- onNodeClick(row) {
- if (row) {
- this.current = row;
- this.parentId = row.id;
- this.$refs.tree.setCurrentKey(row.id);
- } else {
- this.current = null;
- this.parentId = null;
- }
- },
- /* 显示编辑 */
- openEdit(item) {
- this.editData = item;
- this.showEdit = true;
- },
- /* 删除 */
- remove() {
- this.$confirm('确定要删除选中的机构吗?', '提示', {
- type: 'warning'
- })
- .then(() => {
- const loading = this.$loading({ lock: true });
- removeOrganization([this.current.id])
- .then((msg) => {
- loading.close();
- this.$message.success(msg);
- this.query();
- })
- .catch((e) => {
- loading.close();
- this.$message.error(e.message);
- });
- })
- .catch(() => {});
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .sys-organization-list {
- height: calc(100vh - 264px);
- box-sizing: border-box;
- border-width: 1px;
- border-style: solid;
- overflow: auto;
- }
- .sys-organization-list :deep(.el-tree-node__content) {
- height: 40px;
- & > .el-tree-node__expand-icon {
- margin-left: 10px;
- }
- }
- </style>
|