Browse Source

修改部门问题

dev
caoyizhong 2 years ago
parent
commit
6841b1142f
  1. 13
      src/components/jeecgbiz/modal/JSelectUserByDepModal.vue
  2. 15
      src/views/activiti/form/ProcessUdgetPlanForm.vue
  3. 11
      src/views/dashboard/HomePage.vue
  4. 31
      src/views/system/DepartList.vue
  5. 9
      src/views/system/DepartUserList.vue

13
src/components/jeecgbiz/modal/JSelectUserByDepModal.vue

@ -295,8 +295,9 @@
},
// ,
onDepSelect(selectedDepIds) {
if (selectedDepIds[0] != null) {
this.initQueryUserByDepId(selectedDepIds) // id
// console.log("123123",selectedDepIds)
if (!!selectedDepIds[0]) {
this.initQueryUserByDepId(selectedDepIds[0]) // id
if (this.selectedDepIds[0] !== selectedDepIds[0]) {
this.selectedDepIds = [selectedDepIds[0]]
}
@ -311,8 +312,12 @@
},
// id
initQueryUserByDepId(selectedDepIds) {
this.loading = true
return queryUserByDepId(selectedDepIds).then((res) => {
console.log(">>>>",selectedDepIds)
this.loading = true;
let a= {
id : selectedDepIds
}
return queryUserByDepId(a).then((res) => {
if (res.success) {
this.dataSource = res.result
this.ipagination.total = res.result.length

15
src/views/activiti/form/ProcessUdgetPlanForm.vue

@ -1272,7 +1272,8 @@
if (val==1 && values.materialType!=6 ){
this.isIfDirect = true
}else {
this.isIfDirect = false
this.isIfDirect = false;
this.isIfInspection = false;
}
})
@ -1299,6 +1300,18 @@
if (res.success) {
// console.log("??????????????",res.result);
// this.planType = res.result.planType
if (res.result.planType ==1 ){
this.isIfDirect = true;
if (res.result.ifDirect == 1) {
this.isIfInspection = true
} else {
this.isIfInspection = false
}
}else {
this.isIfDirect = false;
this.isIfInspection = false;
}
let formData = res.result
formData.tableName = r.tableName
this.data = formData

11
src/views/dashboard/HomePage.vue

@ -388,6 +388,16 @@ export default {
this.colorLists();
},
watch:{
$route: {
handler: function (val, oldVal){
this.todoList();
// console.log("",val);
},
//
deep: true
}
},
methods: {
getHeight(){
@ -718,7 +728,6 @@ export default {
},
//
async todoList(){
getAction(this.url.todoManger).then((res) => {
if (res.success) {
// console.log("res")

31
src/views/system/DepartList.vue

@ -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)

9
src/views/system/DepartUserList.vue

@ -154,14 +154,14 @@
}
this.loading = false
}
console.log("biaoshiii",res.message);
// console.log("biaoshiii",res.message);
that.userIdentity = res.message
})
},
setThisExpandedKeys(node) {
//
if (node.children && node.children.length > 0) {
this.iExpandedKeys.push(node.key)
// this.iExpandedKeys.push(node.key)
//
/**
for (let a = 0; a < node.children.length; a++) {
@ -227,14 +227,13 @@
if (this.selectedKeys[0] !== selectedKeys[0]) {
this.selectedKeys = [selectedKeys[0]];
}
console.log("12312")
// console.log("12312")
let record = e.node.dataRef;
this.checkedKeys.push(record.id);
this.$refs.DeptBaseInfo.open(record);
this.$refs.DeptUserInfo.onClearSelected();
this.$refs.DeptUserInfo.open(record);
console.log("" +
"123123",this.userIdentity)
// console.log("" +"123123",this.userIdentity)
if(this.userIdentity !== '1'){
this.$refs.DeptRoleInfo.onClearSelected();
this.$refs.DeptRoleInfo.open(record);

Loading…
Cancel
Save