|
|
|
@ -1,31 +1,52 @@
|
|
|
|
|
import { HttpClient } from '@angular/common/http'; |
|
|
|
|
import { Component, OnInit, AfterViewInit, ViewChild, ViewContainerRef } from '@angular/core'; |
|
|
|
|
import { TreeService } from 'src/app/service/tree.service'; |
|
|
|
|
import { NzFormatEmitEvent, NzTreeComponent, NzTreeNodeOptions } from 'ng-zorro-antd/tree'; |
|
|
|
|
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; |
|
|
|
|
import { ModalButtonOptions, NzModalService } from 'ng-zorro-antd/modal'; |
|
|
|
|
import { NzMessageService } from 'ng-zorro-antd/message'; |
|
|
|
|
import { AddorComponent } from './addor/addor.component'; |
|
|
|
|
import { EditorComponent } from './editor/editor.component'; |
|
|
|
|
import { HttpClient } from "@angular/common/http"; |
|
|
|
|
import { |
|
|
|
|
Component, |
|
|
|
|
OnInit, |
|
|
|
|
AfterViewInit, |
|
|
|
|
ViewChild, |
|
|
|
|
ViewContainerRef, |
|
|
|
|
} from "@angular/core"; |
|
|
|
|
import { TreeService } from "src/app/service/tree.service"; |
|
|
|
|
import { |
|
|
|
|
NzFormatEmitEvent, |
|
|
|
|
NzTreeComponent, |
|
|
|
|
NzTreeNodeOptions, |
|
|
|
|
} from "ng-zorro-antd/tree"; |
|
|
|
|
import { FormBuilder, FormGroup, Validators } from "@angular/forms"; |
|
|
|
|
import { ModalButtonOptions, NzModalService } from "ng-zorro-antd/modal"; |
|
|
|
|
import { NzMessageService } from "ng-zorro-antd/message"; |
|
|
|
|
import { AddorComponent } from "./addor/addor.component"; |
|
|
|
|
import { EditorComponent } from "./editor/editor.component"; |
|
|
|
|
|
|
|
|
|
import { NzFormatBeforeDropEvent } from 'ng-zorro-antd/tree'; |
|
|
|
|
import { Observable, of } from 'rxjs'; |
|
|
|
|
import { delay } from 'rxjs/operators'; |
|
|
|
|
import { WarningEventsComponent } from './warning-events/warning-events.component'; |
|
|
|
|
import { NzFormatBeforeDropEvent } from "ng-zorro-antd/tree"; |
|
|
|
|
import { Observable, of } from "rxjs"; |
|
|
|
|
import { delay } from "rxjs/operators"; |
|
|
|
|
import { WarningEventsComponent } from "./warning-events/warning-events.component"; |
|
|
|
|
@Component({ |
|
|
|
|
selector: 'app-organization', |
|
|
|
|
templateUrl: './organization.component.html', |
|
|
|
|
styleUrls: ['./organization.component.scss'] |
|
|
|
|
selector: "app-organization", |
|
|
|
|
templateUrl: "./organization.component.html", |
|
|
|
|
styleUrls: ["./organization.component.scss"], |
|
|
|
|
}) |
|
|
|
|
export class OrganizationComponent implements OnInit { |
|
|
|
|
validateForm!: FormGroup; |
|
|
|
|
constructor(private fb: FormBuilder, private http: HttpClient, private toTree: TreeService, private modal: NzModalService, private message: NzMessageService, private viewContainerRef: ViewContainerRef) { } |
|
|
|
|
constructor( |
|
|
|
|
private fb: FormBuilder, |
|
|
|
|
private http: HttpClient, |
|
|
|
|
private toTree: TreeService, |
|
|
|
|
private modal: NzModalService, |
|
|
|
|
private message: NzMessageService, |
|
|
|
|
private viewContainerRef: ViewContainerRef |
|
|
|
|
) {} |
|
|
|
|
|
|
|
|
|
level: number; //当前登录账号的组织机构等级
|
|
|
|
|
ngOnInit(): void { |
|
|
|
|
this.level = JSON.parse( |
|
|
|
|
sessionStorage.getItem("userdata") |
|
|
|
|
).organization.level; |
|
|
|
|
this.validateForm = this.fb.group({ |
|
|
|
|
search: [null] |
|
|
|
|
search: [null], |
|
|
|
|
}); |
|
|
|
|
this.getAllOrganization() |
|
|
|
|
this.getAllOrganization(); |
|
|
|
|
} |
|
|
|
|
//搜索框提交
|
|
|
|
|
submitForm(): void { |
|
|
|
@ -36,69 +57,85 @@ export class OrganizationComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//获取所有组织机构
|
|
|
|
|
searchValue = ''; |
|
|
|
|
searchValue = ""; |
|
|
|
|
nzExpandAll = false; |
|
|
|
|
totalCount: string |
|
|
|
|
totalCount: string; |
|
|
|
|
|
|
|
|
|
allOrList: any |
|
|
|
|
organization: any |
|
|
|
|
isLoading = false |
|
|
|
|
allOrList: any; |
|
|
|
|
organization: any; |
|
|
|
|
isLoading = false; |
|
|
|
|
getAllOrganization() { |
|
|
|
|
this.isLoading = true |
|
|
|
|
let OrganizationUnitId = sessionStorage.getItem('isGasStation') == 'true' ? JSON.parse(sessionStorage.getItem('userdataOfgasstation')).organization.id : JSON.parse(sessionStorage.getItem('userdata')).organization.id |
|
|
|
|
this.isLoading = true; |
|
|
|
|
let OrganizationUnitId = |
|
|
|
|
sessionStorage.getItem("isGasStation") == "true" |
|
|
|
|
? JSON.parse(sessionStorage.getItem("userdataOfgasstation")) |
|
|
|
|
.organization.id |
|
|
|
|
: JSON.parse(sessionStorage.getItem("userdata")).organization.id; |
|
|
|
|
let params = { |
|
|
|
|
OrganizationUnitId: OrganizationUnitId, |
|
|
|
|
IsContainsChildren: "true" |
|
|
|
|
} |
|
|
|
|
this.http.get('/api/services/app/Organization/GetAll', { |
|
|
|
|
params: params |
|
|
|
|
}).subscribe((data: any) => { |
|
|
|
|
this.organization = data.result.items |
|
|
|
|
this.getStationsNum(data.result.items) |
|
|
|
|
this.totalCount = data.result.totalCount |
|
|
|
|
}) |
|
|
|
|
IsContainsChildren: "true", |
|
|
|
|
}; |
|
|
|
|
this.http |
|
|
|
|
.get("/api/services/app/Organization/GetAll", { |
|
|
|
|
params: params, |
|
|
|
|
}) |
|
|
|
|
.subscribe((data: any) => { |
|
|
|
|
this.organization = data.result.items; |
|
|
|
|
this.getStationsNum(data.result.items); |
|
|
|
|
this.totalCount = data.result.totalCount; |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//获得组织机构下有多少油站
|
|
|
|
|
stationsList |
|
|
|
|
stationsList; |
|
|
|
|
getStationsNum(e) { |
|
|
|
|
let OrganizationUnitId = sessionStorage.getItem('isGasStation') == 'true' ? JSON.parse(sessionStorage.getItem('userdataOfgasstation')).organization.id : JSON.parse(sessionStorage.getItem('userdata')).organization.id |
|
|
|
|
this.http.get('/api/services/app/GasStation/GetCountsByOrganizations?IsContainsChildren=true').subscribe((data: any) => { |
|
|
|
|
this.stationsList = data.result |
|
|
|
|
const arrs = e.map(item => { |
|
|
|
|
const data = this.stationsList.find(i => item.id == i.organizationId) |
|
|
|
|
return { |
|
|
|
|
...item, |
|
|
|
|
products: data ? data : false |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
for (let index = 0; index < arrs.length; index++) { |
|
|
|
|
if (arrs[index].id == OrganizationUnitId) { |
|
|
|
|
arrs[index].parentId = null |
|
|
|
|
let OrganizationUnitId = |
|
|
|
|
sessionStorage.getItem("isGasStation") == "true" |
|
|
|
|
? JSON.parse(sessionStorage.getItem("userdataOfgasstation")) |
|
|
|
|
.organization.id |
|
|
|
|
: JSON.parse(sessionStorage.getItem("userdata")).organization.id; |
|
|
|
|
this.http |
|
|
|
|
.get( |
|
|
|
|
"/api/services/app/GasStation/GetCountsByOrganizations?IsContainsChildren=true" |
|
|
|
|
) |
|
|
|
|
.subscribe((data: any) => { |
|
|
|
|
this.stationsList = data.result; |
|
|
|
|
const arrs = e.map((item) => { |
|
|
|
|
const data = this.stationsList.find( |
|
|
|
|
(i) => item.id == i.organizationId |
|
|
|
|
); |
|
|
|
|
return { |
|
|
|
|
...item, |
|
|
|
|
products: data ? data : false, |
|
|
|
|
}; |
|
|
|
|
}); |
|
|
|
|
for (let index = 0; index < arrs.length; index++) { |
|
|
|
|
if (arrs[index].id == OrganizationUnitId) { |
|
|
|
|
arrs[index].parentId = null; |
|
|
|
|
} |
|
|
|
|
arrs[index].title = arrs[index].displayName; |
|
|
|
|
arrs[index].key = arrs[index].id; |
|
|
|
|
arrs[index].selectable = false; |
|
|
|
|
} |
|
|
|
|
arrs[index].title = arrs[index].displayName |
|
|
|
|
arrs[index].key = arrs[index].id |
|
|
|
|
arrs[index].selectable = false |
|
|
|
|
} |
|
|
|
|
this.nodes = [...this.toTree.toTree(arrs)] |
|
|
|
|
this.defaultExpandedKeys.length == 0 ? this.defaultExpandedKeys = [this.nodes[0].id] : this.defaultExpandedKeys = [...this.defaultExpandedKeys] |
|
|
|
|
this.isLoading = false |
|
|
|
|
}) |
|
|
|
|
this.nodes = [...this.toTree.toTree(arrs)]; |
|
|
|
|
this.defaultExpandedKeys.length == 0 |
|
|
|
|
? (this.defaultExpandedKeys = [this.nodes[0].id]) |
|
|
|
|
: (this.defaultExpandedKeys = [...this.defaultExpandedKeys]); |
|
|
|
|
this.isLoading = false; |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ViewChild('nzTreeComponent', { static: false }) nzTreeComponent!: NzTreeComponent; |
|
|
|
|
@ViewChild("nzTreeComponent", { static: false }) |
|
|
|
|
nzTreeComponent!: NzTreeComponent; |
|
|
|
|
|
|
|
|
|
defaultExpandedKeys = []; |
|
|
|
|
|
|
|
|
|
nodes: any[] = [] |
|
|
|
|
|
|
|
|
|
nodes: any[] = []; |
|
|
|
|
|
|
|
|
|
addOr(node?: any) { |
|
|
|
|
// console.log(node)
|
|
|
|
|
const modal = this.modal.create({ |
|
|
|
|
nzTitle: node ? '新增组织机构' : '新增一级组织机构', |
|
|
|
|
nzTitle: node ? "新增组织机构" : "新增一级组织机构", |
|
|
|
|
nzContent: AddorComponent, |
|
|
|
|
nzViewContainerRef: this.viewContainerRef, |
|
|
|
|
nzWidth: 288, |
|
|
|
@ -106,42 +143,48 @@ export class OrganizationComponent implements OnInit {
|
|
|
|
|
nzOnOk: async () => { |
|
|
|
|
// console.log('hhhhhhh', instance.validateForm)
|
|
|
|
|
if (instance.validateForm.valid) { |
|
|
|
|
await new Promise(resolve => { |
|
|
|
|
let isGasStation |
|
|
|
|
instance.validateForm.value.OrgnizationLevel == 4 ? isGasStation = true : isGasStation = false |
|
|
|
|
await new Promise((resolve) => { |
|
|
|
|
let isGasStation; |
|
|
|
|
instance.validateForm.value.OrgnizationLevel == 4 |
|
|
|
|
? (isGasStation = true) |
|
|
|
|
: (isGasStation = false); |
|
|
|
|
let body = { |
|
|
|
|
parentId: node ? Number(node.key) : null, |
|
|
|
|
displayName: instance.validateForm.value.name, |
|
|
|
|
isGasStation: isGasStation, |
|
|
|
|
isSkipAudit: !instance.validateForm.value.isParticipationAudit, |
|
|
|
|
level: instance.validateForm.value.OrgnizationLevel, |
|
|
|
|
} |
|
|
|
|
this.http.post('/api/services/app/Organization/Create', body).subscribe(data => { |
|
|
|
|
resolve(data) |
|
|
|
|
this.message.create('success', '创建成功!'); |
|
|
|
|
this.nzTreeComponent.getExpandedNodeList().forEach((item) => { |
|
|
|
|
this.defaultExpandedKeys.push(item.key) |
|
|
|
|
}) |
|
|
|
|
this.getAllOrganization() |
|
|
|
|
return true |
|
|
|
|
}, err => { |
|
|
|
|
resolve(err) |
|
|
|
|
this.message.create('warning', '创建失败'); |
|
|
|
|
return false |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
}; |
|
|
|
|
this.http |
|
|
|
|
.post("/api/services/app/Organization/Create", body) |
|
|
|
|
.subscribe( |
|
|
|
|
(data) => { |
|
|
|
|
resolve(data); |
|
|
|
|
this.message.create("success", "创建成功!"); |
|
|
|
|
this.nzTreeComponent.getExpandedNodeList().forEach((item) => { |
|
|
|
|
this.defaultExpandedKeys.push(item.key); |
|
|
|
|
}); |
|
|
|
|
this.getAllOrganization(); |
|
|
|
|
return true; |
|
|
|
|
}, |
|
|
|
|
(err) => { |
|
|
|
|
resolve(err); |
|
|
|
|
this.message.create("warning", "创建失败"); |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
); |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
this.message.create('warning', '请填写完整!'); |
|
|
|
|
return false |
|
|
|
|
this.message.create("warning", "请填写完整!"); |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
const instance = modal.getContentComponent(); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
editOr(node) { |
|
|
|
|
const modal = this.modal.create({ |
|
|
|
|
nzTitle: '编辑组织机构', |
|
|
|
|
nzTitle: "编辑组织机构", |
|
|
|
|
nzContent: EditorComponent, |
|
|
|
|
nzViewContainerRef: this.viewContainerRef, |
|
|
|
|
nzWidth: 288, |
|
|
|
@ -151,102 +194,106 @@ export class OrganizationComponent implements OnInit {
|
|
|
|
|
nzOnOk: async () => { |
|
|
|
|
// console.log('hhhhhhh', instance.validateForm)
|
|
|
|
|
if (instance.validateForm.valid) { |
|
|
|
|
await new Promise(resolve => { |
|
|
|
|
let isGasStation |
|
|
|
|
instance.validateForm.value.OrgnizationLevel == 4 ? isGasStation = true : isGasStation = false |
|
|
|
|
await new Promise((resolve) => { |
|
|
|
|
let isGasStation; |
|
|
|
|
instance.validateForm.value.OrgnizationLevel == 4 |
|
|
|
|
? (isGasStation = true) |
|
|
|
|
: (isGasStation = false); |
|
|
|
|
let body = { |
|
|
|
|
id: node.origin.id, |
|
|
|
|
parentId: node.origin.parentId, |
|
|
|
|
displayName: instance.validateForm.value.name, |
|
|
|
|
isGasStation: isGasStation, |
|
|
|
|
isSkipAudit: !instance.validateForm.value.isParticipationAudit, |
|
|
|
|
level: instance.validateForm.value.OrgnizationLevel |
|
|
|
|
} |
|
|
|
|
this.http.put('/api/services/app/Organization/Update', body).subscribe(data => { |
|
|
|
|
resolve(data) |
|
|
|
|
this.message.create('success', '编辑成功!'); |
|
|
|
|
this.nzTreeComponent.getExpandedNodeList().forEach((item) => { |
|
|
|
|
this.defaultExpandedKeys.push(item.key) |
|
|
|
|
}) |
|
|
|
|
this.getAllOrganization() |
|
|
|
|
return true |
|
|
|
|
}, err => { |
|
|
|
|
resolve(err) |
|
|
|
|
this.message.create('warning', '编辑失败'); |
|
|
|
|
return false |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
level: instance.validateForm.value.OrgnizationLevel, |
|
|
|
|
}; |
|
|
|
|
this.http |
|
|
|
|
.put("/api/services/app/Organization/Update", body) |
|
|
|
|
.subscribe( |
|
|
|
|
(data) => { |
|
|
|
|
resolve(data); |
|
|
|
|
this.message.create("success", "编辑成功!"); |
|
|
|
|
this.nzTreeComponent.getExpandedNodeList().forEach((item) => { |
|
|
|
|
this.defaultExpandedKeys.push(item.key); |
|
|
|
|
}); |
|
|
|
|
this.getAllOrganization(); |
|
|
|
|
return true; |
|
|
|
|
}, |
|
|
|
|
(err) => { |
|
|
|
|
resolve(err); |
|
|
|
|
this.message.create("warning", "编辑失败"); |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
); |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
this.message.create('warning', '请填写完整!'); |
|
|
|
|
return false |
|
|
|
|
this.message.create("warning", "请填写完整!"); |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
const instance = modal.getContentComponent(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
waring(node) { |
|
|
|
|
const modal = this.modal.create({ |
|
|
|
|
nzTitle: '油站预警事件接收情况', |
|
|
|
|
nzTitle: "油站预警事件接收情况", |
|
|
|
|
nzContent: WarningEventsComponent, |
|
|
|
|
nzViewContainerRef: this.viewContainerRef, |
|
|
|
|
nzWidth: 388, |
|
|
|
|
nzClassName: 'WarningEvents', |
|
|
|
|
nzClassName: "WarningEvents", |
|
|
|
|
nzFooter: null, |
|
|
|
|
nzMaskClosable: false, |
|
|
|
|
nzComponentParams: { |
|
|
|
|
data: node.origin, |
|
|
|
|
}, |
|
|
|
|
nzOnOk: () => { |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
nzOnOk: () => {}, |
|
|
|
|
}); |
|
|
|
|
const instance = modal.getContentComponent(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
deleteOr(item) { |
|
|
|
|
console.log(item) |
|
|
|
|
console.log(item); |
|
|
|
|
if (item.origin.children && item.origin.children.length != 0) { |
|
|
|
|
this.message.create('warning', '请先删除所有子节点'); |
|
|
|
|
this.message.create("warning", "请先删除所有子节点"); |
|
|
|
|
} else { |
|
|
|
|
this.modal.confirm({ |
|
|
|
|
nzTitle: `确定要删除${item.title}这个机构吗?`, |
|
|
|
|
nzOkText: '确定', |
|
|
|
|
nzOkType: 'primary', |
|
|
|
|
nzOkText: "确定", |
|
|
|
|
nzOkType: "primary", |
|
|
|
|
nzOnOk: () => { |
|
|
|
|
this.http.delete('/api/services/app/Organization/Delete', { |
|
|
|
|
params: { |
|
|
|
|
Id: item.origin.id |
|
|
|
|
} |
|
|
|
|
}).subscribe(data => { |
|
|
|
|
this.nzTreeComponent.getExpandedNodeList().forEach((item) => { |
|
|
|
|
this.defaultExpandedKeys.push(item.key) |
|
|
|
|
this.http |
|
|
|
|
.delete("/api/services/app/Organization/Delete", { |
|
|
|
|
params: { |
|
|
|
|
Id: item.origin.id, |
|
|
|
|
}, |
|
|
|
|
}) |
|
|
|
|
this.getAllOrganization() |
|
|
|
|
this.message.create('success', '删除成功!'); |
|
|
|
|
}) |
|
|
|
|
.subscribe((data) => { |
|
|
|
|
this.nzTreeComponent.getExpandedNodeList().forEach((item) => { |
|
|
|
|
this.defaultExpandedKeys.push(item.key); |
|
|
|
|
}); |
|
|
|
|
this.getAllOrganization(); |
|
|
|
|
this.message.create("success", "删除成功!"); |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
nzCancelText: '取消', |
|
|
|
|
nzOnCancel: () => { |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
nzCancelText: "取消", |
|
|
|
|
nzOnCancel: () => {}, |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
nzEvent(event: NzFormatEmitEvent): void { |
|
|
|
|
console.log('event', event) |
|
|
|
|
console.log("event", event); |
|
|
|
|
if (this.isDrag) { |
|
|
|
|
let parentId |
|
|
|
|
if (this.pos == 0) {//目标节点内部
|
|
|
|
|
parentId = event.node.key |
|
|
|
|
let parentId; |
|
|
|
|
if (this.pos == 0) { |
|
|
|
|
//目标节点内部
|
|
|
|
|
parentId = event.node.key; |
|
|
|
|
} else { |
|
|
|
|
if (event.node.level == 0) { |
|
|
|
|
parentId = null |
|
|
|
|
parentId = null; |
|
|
|
|
} else { |
|
|
|
|
parentId = event.node.origin.parentId |
|
|
|
|
parentId = event.node.origin.parentId; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -256,24 +303,28 @@ export class OrganizationComponent implements OnInit {
|
|
|
|
|
// code: instance.validateForm.value.code,
|
|
|
|
|
// displayName: event.dragNode.origin.displayName,
|
|
|
|
|
// isGasStation: event.dragNode.origin.isGasStation
|
|
|
|
|
} |
|
|
|
|
this.http.post('/api/services/app/Organization/Move', null, { |
|
|
|
|
params: { |
|
|
|
|
id: event.dragNode.key, |
|
|
|
|
parentId: parentId, |
|
|
|
|
} |
|
|
|
|
}).subscribe(data => { |
|
|
|
|
this.message.create('success', '拖拽成功!'); |
|
|
|
|
this.nzTreeComponent.getExpandedNodeList().forEach((item) => { |
|
|
|
|
this.defaultExpandedKeys.push(item.key) |
|
|
|
|
}; |
|
|
|
|
this.http |
|
|
|
|
.post("/api/services/app/Organization/Move", null, { |
|
|
|
|
params: { |
|
|
|
|
id: event.dragNode.key, |
|
|
|
|
parentId: parentId, |
|
|
|
|
}, |
|
|
|
|
}) |
|
|
|
|
this.getAllOrganization() |
|
|
|
|
return true |
|
|
|
|
}, err => { |
|
|
|
|
this.message.create('warning', '拖拽失败'); |
|
|
|
|
return false |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
.subscribe( |
|
|
|
|
(data) => { |
|
|
|
|
this.message.create("success", "拖拽成功!"); |
|
|
|
|
this.nzTreeComponent.getExpandedNodeList().forEach((item) => { |
|
|
|
|
this.defaultExpandedKeys.push(item.key); |
|
|
|
|
}); |
|
|
|
|
this.getAllOrganization(); |
|
|
|
|
return true; |
|
|
|
|
}, |
|
|
|
|
(err) => { |
|
|
|
|
this.message.create("warning", "拖拽失败"); |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
// console.log('this.allOrList', this.allOrList)
|
|
|
|
|
// let orders = {}
|
|
|
|
@ -302,7 +353,6 @@ export class OrganizationComponent implements OnInit {
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// let idArr = []
|
|
|
|
|
// targetNodeData.forEach(i => {
|
|
|
|
|
// idArr.push(i.id)
|
|
|
|
@ -323,7 +373,7 @@ export class OrganizationComponent implements OnInit {
|
|
|
|
|
// if (event.dragNode.isEnd[event.dragNode.isEnd.length - 1]) { //如果移入到最后一个
|
|
|
|
|
// // console.log("最后")
|
|
|
|
|
// array.push(event.dragNode.origin)
|
|
|
|
|
// } else if (event.dragNode.isStart[event.dragNode.isStart.length - 1]) {//如果移入到第一个
|
|
|
|
|
// } else if (event.dragNode.isStart[event.dragNode.isStart.length - 1]) {//如果移入到第一个
|
|
|
|
|
// // console.log("第一")
|
|
|
|
|
// array.unshift(event.dragNode.origin)
|
|
|
|
|
// } else {//如果移入中间位置
|
|
|
|
@ -349,23 +399,21 @@ export class OrganizationComponent implements OnInit {
|
|
|
|
|
// this.snackBar.open('排序成功', '确定', config)
|
|
|
|
|
// this.refurbishTreeData()
|
|
|
|
|
// })
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
isDrag //是否可以拖动
|
|
|
|
|
pos//放置位置
|
|
|
|
|
isDrag; //是否可以拖动
|
|
|
|
|
pos; //放置位置
|
|
|
|
|
beforeDrop = (arg: NzFormatBeforeDropEvent) => { |
|
|
|
|
console.log('arg', arg) |
|
|
|
|
if (arg.node.level === 0) {//如果为数据节点则不允许拖到一级节点
|
|
|
|
|
this.message.create('warning', '不允许拖拽到一级节点'); |
|
|
|
|
this.isDrag = false |
|
|
|
|
console.log("arg", arg); |
|
|
|
|
if (arg.node.level === 0) { |
|
|
|
|
//如果为数据节点则不允许拖到一级节点
|
|
|
|
|
this.message.create("warning", "不允许拖拽到一级节点"); |
|
|
|
|
this.isDrag = false; |
|
|
|
|
return of(false); |
|
|
|
|
} else { |
|
|
|
|
this.isDrag = true |
|
|
|
|
this.pos = arg.pos |
|
|
|
|
return of(true) |
|
|
|
|
this.isDrag = true; |
|
|
|
|
this.pos = arg.pos; |
|
|
|
|
return of(true); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
} |
|
|
|
|