|
|
|
@ -22,9 +22,10 @@
|
|
|
|
|
</a-alert> |
|
|
|
|
<a-input-search @search="onSearch" style="width:100%;margin-top: 10px" placeholder="请输入部门名称"/> |
|
|
|
|
<!-- 树--> |
|
|
|
|
<a-col :md="10" :sm="24"> |
|
|
|
|
<template> |
|
|
|
|
<a-dropdown :trigger="[this.dropTrigger]" @visibleChange="dropStatus"> |
|
|
|
|
<a-col > |
|
|
|
|
<div style="background: #fff;overflow-y: auto;height: 60vh;width: 100%"> |
|
|
|
|
<template> |
|
|
|
|
<a-dropdown :trigger="[this.dropTrigger]" @visibleChange="dropStatus"> |
|
|
|
|
<span style="user-select: none"> |
|
|
|
|
<a-tree |
|
|
|
|
checkable |
|
|
|
@ -40,14 +41,15 @@
|
|
|
|
|
:autoExpandParent="autoExpandParent" |
|
|
|
|
@expand="onExpand"/> |
|
|
|
|
</span> |
|
|
|
|
<!--新增右键点击事件,和增加添加和删除功能--> |
|
|
|
|
<a-menu slot="overlay"> |
|
|
|
|
<a-menu-item @click="handleAdd(3)" key="1">添加</a-menu-item> |
|
|
|
|
<a-menu-item @click="handleDelete" key="2">删除</a-menu-item> |
|
|
|
|
<a-menu-item @click="closeDrop" key="3">取消</a-menu-item> |
|
|
|
|
</a-menu> |
|
|
|
|
</a-dropdown> |
|
|
|
|
</template> |
|
|
|
|
<!--新增右键点击事件,和增加添加和删除功能--> |
|
|
|
|
<a-menu slot="overlay"> |
|
|
|
|
<a-menu-item @click="handleAdd(3)" key="1">添加</a-menu-item> |
|
|
|
|
<a-menu-item @click="handleDelete" key="2">删除</a-menu-item> |
|
|
|
|
<a-menu-item @click="closeDrop" key="3">取消</a-menu-item> |
|
|
|
|
</a-menu> |
|
|
|
|
</a-dropdown> |
|
|
|
|
</template> |
|
|
|
|
</div> |
|
|
|
|
</a-col> |
|
|
|
|
</div> |
|
|
|
|
</a-card> |
|
|
|
@ -387,8 +389,11 @@
|
|
|
|
|
if (res.success) { |
|
|
|
|
that.departTree = [] |
|
|
|
|
for (let i = 0; i < res.result.length; i++) { |
|
|
|
|
let temp = res.result[i] |
|
|
|
|
that.departTree.push(temp) |
|
|
|
|
if(res.result[i].orgType != '3'){ |
|
|
|
|
let temp = res.result[i] |
|
|
|
|
that.departTree.push(temp) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
that.$message.warning(res.message) |
|
|
|
|