|
@@ -5,22 +5,46 @@
|
|
|
<div class="paren_header">
|
|
|
<p>{{ title }}</p>
|
|
|
<template>
|
|
|
- <div class="column" v-show="vice">
|
|
|
- <div :class="active == index ? 'column_childs' : 'column_child'" v-for="(item, index) in colType" :key="index" @click="upStart(index)">
|
|
|
+ <div
|
|
|
+ v-show="vice"
|
|
|
+ class="column"
|
|
|
+ >
|
|
|
+ <div
|
|
|
+ v-for="(item, index) in colType"
|
|
|
+ :key="index"
|
|
|
+ :class="active == index ? 'column_childs' : 'column_child'"
|
|
|
+ @click="upStart(index)"
|
|
|
+ >
|
|
|
{{ item.name }}
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
</div>
|
|
|
<div class="paren_content">
|
|
|
- <div class="dptBox" v-show="active == 0">
|
|
|
+ <div
|
|
|
+ v-show="active == 0"
|
|
|
+ class="dptBox"
|
|
|
+ >
|
|
|
<el-scrollbar style="height: 100%">
|
|
|
- <el-tree :data="data" :check-strictly="true" :default-expanded-keys="defaultExpandedKeys" show-checkbox @node-click="nodeClick" @check-change="currentChange" :props="defaultProps" :default-checked-keys="checkedKeys" :node-key="nodekey" ref="tree" highlight-current>
|
|
|
- <span v-if="orgType == 'org'" slot-scope="{ data }" :title="data.OrganName" class="org-data-tree-node">
|
|
|
- {{ data.OrganName }}
|
|
|
- </span>
|
|
|
- <span v-else slot-scope="{ data }" :title="data.AuthName" class="org-data-tree-node">
|
|
|
- {{ data.AuthName }}
|
|
|
+ <el-tree
|
|
|
+ ref="tree"
|
|
|
+ :data="data"
|
|
|
+ :check-strictly="true"
|
|
|
+ :default-expanded-keys="defaultExpandedKeys"
|
|
|
+ show-checkbox
|
|
|
+ :props="defaultProps"
|
|
|
+ :default-checked-keys="checkedKeys"
|
|
|
+ :node-key="nodeKey"
|
|
|
+ highlight-current
|
|
|
+ @node-click="nodeClick"
|
|
|
+ @check-change="currentChange"
|
|
|
+ >
|
|
|
+ <span
|
|
|
+ slot-scope="{ data }"
|
|
|
+ :title="data[defaultProps.label]"
|
|
|
+ class="org-data-tree-node"
|
|
|
+ >
|
|
|
+ {{ data[defaultProps.label] }}
|
|
|
</span>
|
|
|
</el-tree>
|
|
|
</el-scrollbar>
|
|
@@ -28,14 +52,28 @@
|
|
|
<!-- <div class="dptBox" v-if="doesJobShow" v-show="active == 1">
|
|
|
<Rolelist :type="true" @radioChange="radioChange" :radioCheck="radioCheck" :number="8" :active="true" class="lessData" :mainData="mainData" />
|
|
|
</div> -->
|
|
|
- <div v-show="active == 1" class="dptBox duoBox">
|
|
|
+ <div
|
|
|
+ v-show="active == 1"
|
|
|
+ class="dptBox duoBox"
|
|
|
+ >
|
|
|
<el-scrollbar style="height: 100%">
|
|
|
- <el-tree :data="data" show-checkbox @check-change="currentChangeDuo" :default-expanded-keys="defaultExpandedKeys" :props="defaultProps" :default-checked-keys="checkedKeysDuo" :node-key="nodekey" ref="treeDuo" highlight-current>
|
|
|
- <span v-if="orgType == 'org'" slot-scope="{ data }" :title="data.OrganName" class="org-data-tree-node">
|
|
|
- {{ data.OrganName }}
|
|
|
- </span>
|
|
|
- <span v-else slot-scope="{ data }" :title="data.AuthName" class="org-data-tree-node">
|
|
|
- {{ data.AuthName }}
|
|
|
+ <el-tree
|
|
|
+ ref="treeDuo"
|
|
|
+ :data="data"
|
|
|
+ show-checkbox
|
|
|
+ :default-expanded-keys="defaultExpandedKeys"
|
|
|
+ :props="defaultProps"
|
|
|
+ :default-checked-keys="checkedKeysDuo"
|
|
|
+ :node-key="nodeKey"
|
|
|
+ highlight-current
|
|
|
+ @check-change="currentChangeDuo"
|
|
|
+ >
|
|
|
+ <span
|
|
|
+ slot-scope="{ data }"
|
|
|
+ :title="data[defaultProps.label]"
|
|
|
+ class="org-data-tree-node"
|
|
|
+ >
|
|
|
+ {{ data[defaultProps.label] }}
|
|
|
</span>
|
|
|
</el-tree>
|
|
|
</el-scrollbar>
|
|
@@ -45,223 +83,204 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
|
-import Rolelist from '@/components/rolelist'
|
|
|
+// import Rolelist from '@/components/rolelist'
|
|
|
export default {
|
|
|
+ // components: { Rolelist },
|
|
|
props: {
|
|
|
title: {
|
|
|
type: String,
|
|
|
- default: "",
|
|
|
+ default: ''
|
|
|
},
|
|
|
vice: {
|
|
|
type: Boolean,
|
|
|
- default: false,
|
|
|
+ default: false
|
|
|
},
|
|
|
data: {
|
|
|
type: Array,
|
|
|
- default: () => [],
|
|
|
+ default: () => []
|
|
|
},
|
|
|
- nodekey: {
|
|
|
+ nodeKey: {
|
|
|
type: String,
|
|
|
- default: "",
|
|
|
+ default: ''
|
|
|
+ },
|
|
|
+ upNodeKey: {
|
|
|
+ type: String,
|
|
|
+ default: ''
|
|
|
},
|
|
|
defaultProps: {
|
|
|
type: Object,
|
|
|
- default: () => { },
|
|
|
+ default: () => {}
|
|
|
},
|
|
|
checkedKeys: {
|
|
|
- //已选中
|
|
|
+ // 已选中
|
|
|
type: Array,
|
|
|
- default: () => [],
|
|
|
+ default: () => []
|
|
|
},
|
|
|
checkedKeysDuo: {
|
|
|
- //已选中
|
|
|
+ // 已选中
|
|
|
type: Array,
|
|
|
- default: () => [],
|
|
|
+ default: () => []
|
|
|
},
|
|
|
lessData: {
|
|
|
- //副岗
|
|
|
+ // 副岗
|
|
|
type: Array,
|
|
|
- default: () => [],
|
|
|
+ default: () => []
|
|
|
},
|
|
|
mainData: {
|
|
|
- //主岗
|
|
|
+ // 主岗
|
|
|
type: Array,
|
|
|
- default: () => [],
|
|
|
+ default: () => []
|
|
|
},
|
|
|
radioCheck: {
|
|
|
type: Number,
|
|
|
- default: 0,
|
|
|
+ default: 0
|
|
|
},
|
|
|
checkBoxList: {
|
|
|
type: Array,
|
|
|
- default: () => [],
|
|
|
- },
|
|
|
- orgType: {
|
|
|
- type: String,
|
|
|
- default: "org",
|
|
|
+ default: () => []
|
|
|
},
|
|
|
orgList: {
|
|
|
type: Array,
|
|
|
default: () => []
|
|
|
+ },
|
|
|
+ defaultMultiple: {
|
|
|
+ type: Boolean,
|
|
|
+ default: false
|
|
|
}
|
|
|
},
|
|
|
- components: { Rolelist },
|
|
|
- data () {
|
|
|
+ data() {
|
|
|
return {
|
|
|
active: 0,
|
|
|
colType: [
|
|
|
{
|
|
|
- name: "所属组织",
|
|
|
+ name: '所属组织'
|
|
|
},
|
|
|
{
|
|
|
- name: "组织授权",
|
|
|
+ name: '组织授权'
|
|
|
}
|
|
|
],
|
|
|
checkedDatas: [],
|
|
|
- checkedId: null,
|
|
|
- checkedList: [], //选中的列表,
|
|
|
- nodekeys: "nodekey",
|
|
|
+ checkedList: [], // 选中的列表
|
|
|
defaultExpandedKeys: [-1],
|
|
|
getExpandedKeysStep: [false, false]
|
|
|
- };
|
|
|
+ }
|
|
|
},
|
|
|
watch: {
|
|
|
checkedKeys: {
|
|
|
- handler (val) {
|
|
|
- this.checkedList = val;
|
|
|
+ handler(val) {
|
|
|
+ this.checkedList = val
|
|
|
this.$refs.tree.setCheckedKeys(val)
|
|
|
this.getExpandedKeysStep.splice(0, 1, true)
|
|
|
},
|
|
|
- deep: true,
|
|
|
+ deep: true
|
|
|
},
|
|
|
checkedKeysDuo: {
|
|
|
- handler (val) {
|
|
|
+ handler(val) {
|
|
|
this.$refs.tree.setCheckedKeys(val)
|
|
|
},
|
|
|
- deep: true,
|
|
|
+ deep: true
|
|
|
},
|
|
|
orgList: {
|
|
|
- handler (val) {
|
|
|
+ handler() {
|
|
|
this.getExpandedKeysStep.splice(1, 1, true)
|
|
|
},
|
|
|
deep: true
|
|
|
},
|
|
|
getExpandedKeysStep: {
|
|
|
- handler (val) {
|
|
|
+ handler(val) {
|
|
|
if (val.every(v => v)) {
|
|
|
this.defaultExpandedKeys = [-1]
|
|
|
- if (this.orgType === 'org') {
|
|
|
- this.checkedKeys.forEach(key => {
|
|
|
- if (key !== -1) {
|
|
|
- const org = this.orgList.find(item => item.OrganId == key)
|
|
|
- if (org) {
|
|
|
- const OrganUpid = org.OrganUpid
|
|
|
- if (!this.defaultExpandedKeys.includes(OrganUpid)) {
|
|
|
- this.defaultExpandedKeys.push(OrganUpid)
|
|
|
- }
|
|
|
+ this.checkedKeys.forEach(key => {
|
|
|
+ if (key !== -1) {
|
|
|
+ const node = this.orgList.find(item => item[this.nodeKey] == key)
|
|
|
+ if (node) {
|
|
|
+ const upNodeKey = node[this.upNodeKey]
|
|
|
+ if (!this.defaultExpandedKeys.includes(upNodeKey)) {
|
|
|
+ this.defaultExpandedKeys.push(upNodeKey)
|
|
|
}
|
|
|
}
|
|
|
- })
|
|
|
- } else if (this.orgType === 'auth') {
|
|
|
- this.checkedKeys.forEach(key => {
|
|
|
- if (key !== -1) {
|
|
|
- const auth = this.orgList.find(item => item.AuthId == key)
|
|
|
- if (auth) {
|
|
|
- const UpAuthId = auth.UpAuthId
|
|
|
- if (!this.defaultExpandedKeys.includes(UpAuthId)) {
|
|
|
- this.defaultExpandedKeys.push(UpAuthId)
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- })
|
|
|
- }
|
|
|
+ }
|
|
|
+ })
|
|
|
}
|
|
|
},
|
|
|
deep: true
|
|
|
}
|
|
|
},
|
|
|
- mounted () {
|
|
|
+ mounted() {
|
|
|
if (this.data != null) {
|
|
|
this.data = this.formatData(this.data)
|
|
|
}
|
|
|
+ if (this.defaultMultiple) {
|
|
|
+ this.active = 1
|
|
|
+ }
|
|
|
},
|
|
|
methods: {
|
|
|
- //点击选择
|
|
|
- upStart (index) {
|
|
|
- this.active = index;
|
|
|
- this.$emit("getTreeindex", index)
|
|
|
+ // 点击选择
|
|
|
+ upStart(index) {
|
|
|
+ this.active = index
|
|
|
+ this.$emit('getTreeindex', index)
|
|
|
},
|
|
|
- formatData (params) {
|
|
|
- let data = params;
|
|
|
- data.map((item) => {
|
|
|
- if (item.hasOwnProperty('children')) {
|
|
|
- item.disabled = true;
|
|
|
+ formatData(params) {
|
|
|
+ const data = params
|
|
|
+ data.forEach(item => {
|
|
|
+ if (Object.hasOwnProperty.call(item, 'children')) {
|
|
|
+ item.disabled = true
|
|
|
this.formatData(item.children)
|
|
|
}
|
|
|
- });
|
|
|
- return data;
|
|
|
+ })
|
|
|
+ return data
|
|
|
},
|
|
|
- currentChange (data, isChecked) {
|
|
|
- if (this.orgType == 'org') {
|
|
|
- const { OrganId } = data
|
|
|
- this.$emit("getTreeData", this.$refs.tree.getCheckedNodes())
|
|
|
- if (isChecked) {
|
|
|
- const checked = [OrganId]
|
|
|
- this.$refs.tree.setCheckedKeys(checked)
|
|
|
- }
|
|
|
- } else if (this.orgType == 'auth') {
|
|
|
- const { AuthId } = data
|
|
|
- this.$emit("getTreeData", this.$refs.tree.getCheckedNodes())
|
|
|
- if (isChecked) {
|
|
|
- const checked = [AuthId]
|
|
|
- this.$refs.tree.setCheckedKeys(checked)
|
|
|
- }
|
|
|
+ currentChange(data, isChecked) {
|
|
|
+ const key = data[this.nodeKey]
|
|
|
+ this.$emit('getTreeData', this.$refs.tree.getCheckedNodes())
|
|
|
+ if (isChecked) {
|
|
|
+ const checked = [key]
|
|
|
+ this.$refs.tree.setCheckedKeys(checked)
|
|
|
}
|
|
|
},
|
|
|
- currentChangeDuo () {
|
|
|
+ currentChangeDuo() {
|
|
|
const arr = this.$refs.treeDuo.getCheckedNodes()
|
|
|
- this.$emit("getTreeDataDuo", arr)
|
|
|
+ this.$emit('getTreeDataDuo', arr)
|
|
|
},
|
|
|
// 选中后设置初始数据
|
|
|
- setDataObj (arr) {
|
|
|
- arr.forEach((item) => {
|
|
|
+ setDataObj(arr) {
|
|
|
+ arr.forEach(item => {
|
|
|
if (!item.children) {
|
|
|
item.children = {
|
|
|
OrganId: item.OrganId,
|
|
|
- ValidBegin: "",
|
|
|
- ValidEnd: "",
|
|
|
- Action: "",
|
|
|
- QueryRow: "",
|
|
|
- QueryCol: "",
|
|
|
- NewCol: "",
|
|
|
- EditRow: "",
|
|
|
- EditCol: "",
|
|
|
- DeleteRow: "",
|
|
|
- };
|
|
|
+ ValidBegin: '',
|
|
|
+ ValidEnd: '',
|
|
|
+ Action: '',
|
|
|
+ QueryRow: '',
|
|
|
+ QueryCol: '',
|
|
|
+ NewCol: '',
|
|
|
+ EditRow: '',
|
|
|
+ EditCol: '',
|
|
|
+ DeleteRow: ''
|
|
|
+ }
|
|
|
}
|
|
|
- });
|
|
|
- this.$emit("getTreeData", arr)
|
|
|
+ })
|
|
|
+ this.$emit('getTreeData', arr)
|
|
|
},
|
|
|
- nodeClick (data) {
|
|
|
- this.$emit("getTreeDatas", data)
|
|
|
- this.checkedId = data.nodekey
|
|
|
+ nodeClick(data) {
|
|
|
+ this.$emit('getTreeDatas', data)
|
|
|
},
|
|
|
- radioChange (val) {
|
|
|
+ radioChange(val) {
|
|
|
this.$emit('radioChange', val)
|
|
|
},
|
|
|
- //多选框
|
|
|
- checkChange (arr) {
|
|
|
- this.$emit("checkChange", arr)
|
|
|
+ // 多选框
|
|
|
+ checkChange(arr) {
|
|
|
+ this.$emit('checkChange', arr)
|
|
|
},
|
|
|
- checkClick (item) {
|
|
|
- this.$emit("checkClick", item)
|
|
|
+ checkClick(item) {
|
|
|
+ this.$emit('checkClick', item)
|
|
|
}
|
|
|
- },
|
|
|
-};
|
|
|
+ }
|
|
|
+}
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss">
|
|
|
-@import "./organization.scss";
|
|
|
+@import './organization.scss';
|
|
|
.DBox {
|
|
|
cursor: not-allowed;
|
|
|
}
|