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

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

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

11
src/views/dashboard/HomePage.vue

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

31
src/views/system/DepartList.vue

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

9
src/views/system/DepartUserList.vue

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

Loading…
Cancel
Save