You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

412 lines
12 KiB

11 months ago
<!-- @format -->
<template>
<div class="main">
<div class="left">
<div class="ns-table-title">部门管理</div>
<a-row>
<a-col :span="12" class="tree">
11 months ago
<ns-button style="margin: 10px" type="primary" @click="addApartment">新增部门</ns-button>
<ns-button type="primary" @click="addApartmentSon">新增子部门</ns-button>
<ns-button style="margin: 10px" type="primary" @click="deleteApartment">删除</ns-button>
10 months ago
<a-tree :tree-data="apartmentTreeData" defaultExpandAll @select="SelectApartmentTree">
11 months ago
<template #title="{ title }">
{{ title }}
</template>
</a-tree>
</a-col>
<a-col :span="12" class="list">
<a-tabs v-model:activeKey="activeKey">
<a-tab-pane key="1" tab="部门信息">
10 months ago
<ns-form
ref="formRef"
:schemas="formSchema"
:model="formData"
formLayout="vertical"
class="form" />
11 months ago
</a-tab-pane>
<a-tab-pane key="2" tab="部门权限">
<a-tree
:tree-data="apartmentAdminTreeData"
v-model:checkedKeys="ApartcheckedKeys"
checkable
10 months ago
defaultExpandAll
11 months ago
@select="ApartmentSelect">
<template #title="{ title }">
{{ title }}
</template>
</a-tree>
11 months ago
</a-tab-pane>
</a-tabs>
11 months ago
<ns-button style="margin: 20px" type="primary" @click="CancelApartment">取消</ns-button>
11 months ago
<ns-button type="primary" @click="ApartmentSure">{{
disabled ? '编辑' : '确定'
}}</ns-button>
</a-col>
</a-row>
</div>
<div class="right">
<div class="ns-table-title">角色管理</div>
<a-row>
<a-col :span="12" class="tree">
<ns-button style="margin: 10px" type="primary" @click="addUser">新增角色</ns-button>
<ns-button type="primary" @click="addUserSon">新增子角色</ns-button>
<ns-button style="margin: 10px" type="primary" @click="deleteUser">删除</ns-button>
10 months ago
<a-tree :tree-data="userTreeData" defaultExpandAll @select="SelectUserTree">
11 months ago
<template #title="{ title }">
{{ title }}
</template>
</a-tree>
</a-col>
<a-col :span="12" class="list">
<a-tabs v-model:activeKey="activeKey2">
<a-tab-pane key="1" tab="角色信息">
11 months ago
<ns-form
:schemas="formSchema2"
:model="formData2"
formLayout="vertical"
class="form" />
</a-tab-pane>
<a-tab-pane key="2" tab="角色权限">
<a-tree
:tree-data="userAdminTreeData"
v-model:checkedKeys="UsercheckedKeys"
10 months ago
defaultExpandAll
11 months ago
checkable
@select="UserSelect">
<template #title="{ title }">
{{ title }}
</template>
</a-tree>
11 months ago
</a-tab-pane>
</a-tabs>
11 months ago
<ns-button style="margin: 20px" type="primary" @click="CancelUser">取消</ns-button>
<ns-button type="primary" @click="UserSure">{{ disabled2 ? '编辑' : '确定' }}</ns-button>
11 months ago
</a-col>
</a-row>
</div>
</div>
</template>
<script lang="ts">
11 months ago
import { createVNode, defineComponent, reactive, ref, watch } from 'vue';
11 months ago
import { Modal } from 'ant-design-vue';
import { ExclamationCircleOutlined } from '@ant-design/icons-vue';
11 months ago
import { http } from '/nerv-lib/util/http';
10 months ago
import { uuid } from '@antv/x6/lib/util/string/uuid';
10 months ago
import { cloneDeep } from 'lodash-es';
import { formConfig, formConfig2 } from './config';
11 months ago
export default defineComponent({
10 months ago
name: 'AuthorityManageIndex',
11 months ago
setup() {
10 months ago
const formRef = ref();
10 months ago
let formData = ref({});
let formData2 = ref({});
const activeKey = ref('1');
const activeKey2 = ref('1');
const disabled = ref(true);
const disabled2 = ref(true);
11 months ago
const ApartcheckedKeys = ref<string[]>([]);
const UsercheckedKeys = ref<string[]>([]);
10 months ago
const selectKey = ref();
const selectRef = ref();
const selectKey2 = ref();
const selectRef2 = ref();
const formSchema = formConfig(disabled as any);
const formSchema2 = formConfig2(disabled2 as any);
11 months ago
watch(ApartcheckedKeys, () => {
console.log('checkedKeys', ApartcheckedKeys.value);
});
watch(UsercheckedKeys, () => {
console.log('checkedKeys', UsercheckedKeys.value);
});
10 months ago
const opMap: any = {
type: 'add',
fuc: () => {},
record: {},
};
const apartmentTreeData = ref([
{
title: '铁路总局',
key: '0-0',
10 months ago
info: { name: '铁路总局' },
10 months ago
children: [
10 months ago
{ title: '济阳站', key: '0-0-0', info: { name: '济阳站' } },
{ title: '临沂站', key: '0-0-1', info: { name: '临沂站' } },
10 months ago
],
},
]);
const userTreeData = ref([
{
title: '产品总监',
key: '0-0',
children: [
10 months ago
{ title: '产品经理', key: '0-0-0', info: { departname: '产品经理' } },
{ title: '产品助理', key: '0-0-1', info: { departname: '产品助理' } },
10 months ago
],
},
]);
const apartmentAdminTreeData = [
{
title: '首页',
key: '0-0',
children: [
{
title: '控制台',
key: '0-0-0',
children: [
{ title: 'leaf', key: '0-0-0-0' },
{ title: 'leaf', key: '0-0-0-1' },
],
},
{
title: '用户管理',
key: '0-0-1',
children: [{ key: '0-0-1-0', title: 'sss' }],
},
],
},
];
const userAdminTreeData = ref([
{
title: '产品总监',
key: '0-0',
children: [
{ title: '产品经理1', key: '0-0-0' },
{ title: '产品经理2', key: '0-0-1' },
],
},
]);
11 months ago
const addApartment = () => {
disabled.value = false;
10 months ago
opMap.type = 'add';
11 months ago
};
const addApartmentSon = () => {
disabled.value = false;
10 months ago
opMap.type = 'addson';
11 months ago
};
10 months ago
const addUser = () => {
disabled2.value = false;
};
const addUserSon = () => {
disabled.value = false;
10 months ago
opMap.type = 'addson';
10 months ago
};
11 months ago
const deleteApartment = () => {
Modal.confirm({
title: '是否确认删除',
icon: createVNode(ExclamationCircleOutlined),
content: createVNode('div', { style: 'color:red;' }, ''),
10 months ago
onOk() {
function deepDel(data = apartmentTreeData.value[0].children) {
data.map((item, index) => {
if (item.key === selectKey.value) data.splice(index, 1);
});
}
deepDel();
console.log(selectKey.value);
},
11 months ago
onCancel() {
console.log('Cancel');
},
class: 'test',
});
};
const deleteUser = () => {
Modal.confirm({
title: '是否确认删除',
icon: createVNode(ExclamationCircleOutlined),
content: createVNode('div', { style: 'color:red;' }, ''),
10 months ago
onOk() {
function deepDel(data = userTreeData.value[0].children) {
data.map((item, index) => {
if (item.key === selectKey2.value) data.splice(index, 1);
});
}
deepDel();
console.log(selectKey2.value);
},
11 months ago
onCancel() {
console.log('Cancel');
},
class: 'test',
});
};
11 months ago
const SelectApartmentTree = (selectedKeys: any, info: any) => {
10 months ago
disabled.value = false;
11 months ago
console.log(selectedKeys, 'selectedKeys');
10 months ago
console.log(info.node.dataRef, 'info');
selectKey.value = selectedKeys[0];
selectRef.value = info.node.dataRef;
formData.value = info.node.dataRef.info;
11 months ago
};
11 months ago
const SelectUserTree = (selectedKeys: any, info: any) => {
10 months ago
disabled2.value = false;
11 months ago
console.log(selectedKeys, 'selectedKeys');
10 months ago
console.log(info.node.dataRef.info, 'info');
selectKey2.value = selectedKeys[0];
selectRef2.value = info.node.dataRef;
formData2.value = info.node.dataRef.info;
11 months ago
};
10 months ago
const CancelApartment = () => {
disabled.value = true;
};
const CancelUser = () => {
disabled2.value = true;
};
11 months ago
const ApartmentSelect = (selectedKeys: any, info: any) => {
console.log(selectedKeys, 'selectedKeys');
console.log(info, 'info');
};
const UserSelect = (selectedKeys: any, info: any) => {
console.log(selectedKeys, 'selectedKeys');
console.log(info, 'info');
};
11 months ago
const ApartmentSure = () => {
10 months ago
// formRef.value?.triggerSubmit().then(() => {});
11 months ago
disabled.value = !disabled.value;
10 months ago
opMap.fuc && opMap.fuc(formData.value);
10 months ago
// console.log(formData.value.name, 'formData');
console.log(opMap.type, 'opMap.type');
if (opMap.type === 'add') {
apartmentTreeData.value[0].children.push({
title: formData.value.name,
key: 'a1',
10 months ago
info: { ...formData.value },
10 months ago
});
10 months ago
} else if (selectRef.value && opMap.type === 'addson')
selectRef.value['children'] = [
{ key: '123', title: formData.value.name, info: { ...cloneDeep(formData.value) } },
];
else {
10 months ago
console.log('ss');
}
10 months ago
formData.value = {};
11 months ago
};
11 months ago
const UserSure = () => {
disabled2.value = !disabled2.value;
10 months ago
opMap.fuc && opMap.fuc(formData2.value);
console.log(formData2.value, 'formData2');
10 months ago
console.log(opMap.type, 'opMap.type');
if (opMap.type === 'add') {
userTreeData.value[0].children.push({
title: formData2.value.departname,
key: 'a2',
info: { ...formData2.value },
});
} else if (selectRef2.value && opMap.type === 'addson')
selectRef2.value['children'] = [
{
key: '123',
title: formData2.value.departname,
info: { ...cloneDeep(formData2.value) },
},
];
else {
console.log('ss');
}
formData2.value = {};
11 months ago
};
11 months ago
return {
11 months ago
disabled,
11 months ago
disabled2,
11 months ago
formSchema,
11 months ago
formSchema2,
11 months ago
formData,
11 months ago
formData2,
apartmentTreeData,
userTreeData,
SelectApartmentTree,
SelectUserTree,
11 months ago
activeKey,
11 months ago
activeKey2,
ApartmentSure,
11 months ago
UserSure,
11 months ago
addApartment,
addApartmentSon,
deleteApartment,
deleteUser,
addUser,
addUserSon,
11 months ago
CancelApartment,
CancelUser,
apartmentAdminTreeData,
ApartmentSelect,
ApartcheckedKeys,
userAdminTreeData,
UsercheckedKeys,
UserSelect,
10 months ago
formRef,
11 months ago
};
},
});
</script>
<style scoped>
.main {
display: flex;
flex: 1;
}
.left {
width: 50%;
height: calc(100vh-50px);
border-right: 5px solid rgb(229, 235, 240);
}
11 months ago
.tree {
11 months ago
width: 400px;
height: 89vh;
border-right: 2px solid rgb(229, 235, 240);
}
.right {
width: 50%;
}
.top {
height: 50vh;
border-bottom: 5px solid rgb(229, 235, 240);
}
.ns-table-title {
text-align: left;
height: 46px;
line-height: 46px;
font-size: 18px;
font-weight: bold;
user-select: text;
padding-left: 16px;
width: 100%;
border-bottom: 2px solid rgb(229, 235, 240);
}
.table {
width: 2000px;
}
.admin {
text-align: left;
height: 42px;
line-height: 42px;
font-size: 16px;
font-weight: bold;
user-select: text;
padding-left: 16px;
width: calc(100% + 32px);
}
.form {
11 months ago
margin: 20px;
11 months ago
}
</style>