You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
519 lines
18 KiB
519 lines
18 KiB
import { Component, OnInit, TemplateRef, ViewContainerRef } from '@angular/core'; |
|
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; |
|
import { NzFormatEmitEvent, NzTreeComponent, NzTreeNodeOptions } from 'ng-zorro-antd/tree'; |
|
import { NzModalService } from 'ng-zorro-antd/modal'; |
|
import { NzMessageService } from 'ng-zorro-antd/message'; |
|
import { HttpClient } from '@angular/common/http'; |
|
import { TreeService } from 'src/app/service/tree.service'; |
|
import * as moment from 'moment'; |
|
import { TaskDetailsComponent } from './task-details/task-details.component'; |
|
import { CreateTaskComponent } from './create-task/create-task.component'; |
|
import { differenceInCalendarDays, setHours } from 'date-fns' |
|
@Component({ |
|
selector: 'app-station-weekly-plan', |
|
templateUrl: './station-weekly-plan.component.html', |
|
styleUrls: ['./station-weekly-plan.component.scss'] |
|
}) |
|
export class StationWeeklyPlanComponent implements OnInit { |
|
|
|
constructor(private http: HttpClient, private modal: NzModalService, private message: NzMessageService, private viewContainerRef: ViewContainerRef) { } |
|
OrganizationId |
|
userId |
|
isSupervisor |
|
|
|
today = new Date(); |
|
disabledDate = (current: Date): boolean => differenceInCalendarDays(current, this.today) <= 0; |
|
months = [ |
|
{ id: 1, name: '1月', isable: true }, |
|
{ id: 2, name: '2月', isable: true }, |
|
{ id: 3, name: '3月', isable: true }, |
|
{ id: 4, name: '4月', isable: true }, |
|
{ id: 5, name: '5月', isable: true }, |
|
{ id: 6, name: '6月', isable: true }, |
|
{ id: 7, name: '7月', isable: true }, |
|
{ id: 8, name: '8月', isable: true }, |
|
{ id: 9, name: '9月', isable: true }, |
|
{ id: 10, name: '10月', isable: true }, |
|
{ id: 11, name: '11月', isable: true }, |
|
{ id: 12, name: '12月', isable: true } |
|
] |
|
selectedMonth |
|
selectedYear = 2022 |
|
selectedTime |
|
selectMonth(item) { |
|
this.selectedMonth = item.id |
|
this.initializeData() |
|
this.getTaskList() |
|
this.getTaskListPass(this.stationData[0]) |
|
} |
|
selectYear(e) { |
|
this.selectedYear = e |
|
this.initializeData() |
|
this.getTaskList() |
|
this.getTaskListPass(this.stationData[0]) |
|
} |
|
|
|
isExpand = true |
|
expand() { |
|
this.isExpand = !this.isExpand |
|
} |
|
|
|
formatOne = (percent: number): string => `${percent}%\n完成率`; |
|
|
|
|
|
openDetails(data, type) { |
|
data.isDetails = type |
|
} |
|
|
|
radioChange(e, i, element) { |
|
element.isLoading = true |
|
let body = { |
|
isSpread: e |
|
} |
|
this.http.patch(`/api/PlanTasks/${i.id}`, body).subscribe({ |
|
next: (data) => { |
|
this.message.create('success', e ? '宣传通知已发出' : '取消宣传'); |
|
element.isLoading = false |
|
}, |
|
error: (err) => { |
|
this.message.create('warning', '发送失败'); |
|
element.isLoading = false |
|
} |
|
}) |
|
} |
|
checkTime(e, i, element) { |
|
if (e) { |
|
i.checkTime = moment(e).format('yyyy-MM-DD') |
|
} else { |
|
i.checkTime = null |
|
} |
|
element.isLoading = true |
|
let body = { |
|
checkTime: i.checkTime |
|
} |
|
this.http.patch(`/api/PlanTasks/${i.id}`, body).subscribe({ |
|
next: (data) => { |
|
this.message.create('success', '检查日期分配成功'); |
|
element.isLoading = false |
|
}, |
|
error: (err) => { |
|
this.message.create('warning', '检查日期分配失败'); |
|
element.isLoading = false |
|
} |
|
}) |
|
|
|
|
|
} |
|
|
|
|
|
//获得辖区下所有救援站 |
|
totalCount: string |
|
allOrList: any |
|
getAllStation() { |
|
let params = { |
|
ContainsChildren: true, |
|
pageSize: 9999 |
|
} |
|
this.http.get('/api/Organizations', { |
|
params: params |
|
}).subscribe((data: any) => { |
|
this.totalCount = data.totalCount |
|
data.items = data.items.filter(element => { |
|
return element.level == 'squadron' |
|
}); |
|
data.items.forEach(element => { |
|
element.isExpand = false |
|
element.isLoading = false |
|
}); |
|
this.stationData = data.items |
|
}) |
|
} |
|
|
|
cardData = [ |
|
{ name: '双随机', isDetails: false, isLoading: false, background: '#1D9DFF', icon: 'suiji.png', passed: 0, inspected: 0, percentage: 0, data: [] }, |
|
{ name: '行政许可', isDetails: false, isLoading: false, background: '#42B983', icon: 'xuke.png', passed: 0, inspected: 0, percentage: 0, data: [] }, |
|
{ name: '熟悉演练', isDetails: false, isLoading: false, background: '#9D80FF', icon: 'yanlian.png', passed: 0, inspected: 0, percentage: 0, data: [] }, |
|
{ name: '联络指导', isDetails: false, isLoading: false, background: '#5483EA', icon: 'zhidao.png', passed: 0, inspected: 0, percentage: 0, data: [] }, |
|
{ name: '消防宣传', isDetails: false, isLoading: false, background: '#FF5D2A', icon: 'xuanchuan.png', passed: 0, inspected: 0, percentage: 0, data: [] }, |
|
{ name: '投诉举报', isDetails: false, isLoading: false, background: '#5087FF', icon: 'tousu.png', passed: 0, inspected: 0, percentage: 0, data: [] }, |
|
{ name: '火灾调查', isDetails: false, isLoading: false, background: '#FF404D', icon: 'huozai.png', passed: 0, inspected: 0, percentage: 0, data: [] } |
|
] |
|
//初始化数据 |
|
initializeData() { |
|
this.cardData = [ |
|
{ name: '双随机', isDetails: false, isLoading: false, background: '#1D9DFF', icon: 'suiji.png', passed: 0, inspected: 0, percentage: 0, data: [] }, |
|
{ name: '行政许可', isDetails: false, isLoading: false, background: '#42B983', icon: 'xuke.png', passed: 0, inspected: 0, percentage: 0, data: [] }, |
|
{ name: '熟悉演练', isDetails: false, isLoading: false, background: '#9D80FF', icon: 'yanlian.png', passed: 0, inspected: 0, percentage: 0, data: [] }, |
|
{ name: '联络指导', isDetails: false, isLoading: false, background: '#5483EA', icon: 'zhidao.png', passed: 0, inspected: 0, percentage: 0, data: [] }, |
|
{ name: '消防宣传', isDetails: false, isLoading: false, background: '#FF5D2A', icon: 'xuanchuan.png', passed: 0, inspected: 0, percentage: 0, data: [] }, |
|
{ name: '投诉举报', isDetails: false, isLoading: false, background: '#5087FF', icon: 'tousu.png', passed: 0, inspected: 0, percentage: 0, data: [] }, |
|
{ name: '火灾调查', isDetails: false, isLoading: false, background: '#FF404D', icon: 'huozai.png', passed: 0, inspected: 0, percentage: 0, data: [] } |
|
] |
|
|
|
this.stationData.forEach(element => { |
|
element.isExpand = true |
|
element.isLoading = false |
|
element.data = [] |
|
}); |
|
} |
|
|
|
|
|
|
|
isLoading = false |
|
PageNumber = 1 |
|
PageSize = 9999 |
|
async getTaskList() { |
|
this.cardData.forEach(item => { |
|
item.data = [] |
|
}) |
|
this.isLoading = true |
|
let selectedTime = this.selectedYear + '-' + this.selectedMonth + '-' + '01' |
|
let params = { |
|
Month: selectedTime, |
|
SupervisorId: this.userId, |
|
PageNumber: this.PageNumber, |
|
PageSize: this.PageSize |
|
} |
|
return await new Promise<void>((resolve, reject) => { |
|
this.http.get('/api/PlanTasks', { |
|
params: params |
|
}).subscribe((data: any) => { |
|
this.isLoading = false |
|
// console.log('任务申请列表', data.items); |
|
data.items.forEach(element => { |
|
this.cardData.forEach((item, key) => { |
|
element.taskType == item.name ? this.cardData[key].data.push(element) : null |
|
}); |
|
}); |
|
|
|
this.cardData.forEach(element => { |
|
element.data.forEach(item => { |
|
item.approvalStatus == '通过' ? element.passed += 1 : null |
|
item.approvalStatus == '已检查 ' ? element.inspected += 1 : null |
|
}) |
|
}) |
|
this.cardData.forEach(element => { |
|
element.percentage = Math.round(element.inspected / element.data.length) * 100 |
|
}) |
|
|
|
resolve(data) |
|
console.log('并入卡片数据', this.cardData) |
|
}) |
|
}) |
|
} |
|
|
|
stationData = [ |
|
{ name: '', isExpand: true, isLoading: false, data: [], allUnitsNum: 0, awaitInspect: 0, inspected: 0, percentage: 0 } |
|
] |
|
async getTaskListPass(item) { |
|
let selectedTime = this.selectedYear + '-' + this.selectedMonth + '-' + '01' |
|
let params = { |
|
Month: selectedTime, |
|
approvalStatuses: "通过", |
|
SupervisorId: this.userId, |
|
PageNumber: this.PageNumber, |
|
PageSize: this.PageSize |
|
} |
|
item.isLoading = true |
|
return await new Promise<void>((resolve, reject) => { |
|
this.http.get('/api/PlanTasks', { |
|
params: params |
|
}).subscribe((data: any) => { |
|
|
|
item.isLoading = false |
|
let listData = [ |
|
{ name: '双随机', background: '#1D9DFF', icon: 'suiji.png', scale: '0/0', data: [], inspected: 0, finished: 0 }, |
|
{ name: '行政许可', background: '#42B983', icon: 'xuke.png', scale: '0/0', data: [], inspected: 0, finished: 0 }, |
|
{ name: '熟悉演练', background: '#9D80FF', icon: 'yanlian.png', scale: '0/0', data: [], inspected: 0, finished: 0 }, |
|
{ name: '联络指导', background: '#5483EA', icon: 'zhidao.png', scale: '0/0', data: [], inspected: 0, finished: 0 }, |
|
{ name: '消防宣传', background: '#FF5D2A', icon: 'xuanchuan.png', scale: '0/0', data: [], inspected: 0, finished: 0 }, |
|
{ name: '投诉举报', background: '#5087FF', icon: 'tousu.png', scale: '0/0', data: [], inspected: 0, finished: 0 }, |
|
{ name: '火灾调查', background: '#FF404D', icon: 'huozai.png', scale: '0/0', data: [], inspected: 0, finished: 0 } |
|
] |
|
data.items.forEach(element => { |
|
listData.forEach((item, key) => { |
|
element.taskType == item.name ? listData[key].data.push(element) : null |
|
}); |
|
}); |
|
for (let index = 0; index < listData.length; index++) { |
|
const element = listData[index]; |
|
if (element.data.length == 0) { |
|
listData.splice(index, 1) |
|
index-- |
|
} |
|
} |
|
item.data = listData |
|
console.log('当前登录用户所有通过的任务', item); |
|
item.allUnitsNum = 0 |
|
item.awaitInspect = 0 |
|
item.inspected = 0 |
|
item.finished = 0 |
|
item.data.forEach(element => { |
|
item.allUnitsNum += element.data.length |
|
element.data.forEach(i => { |
|
i.approvalStatus == '待检查' ? item.awaitInspect += 1 : null |
|
i.approvalStatus == '已检查' ? item.inspected += 1 : null |
|
i.approvalStatus == '待检查' ? element.inspected += 1 : null |
|
i.approvalStatus == '已检查' ? element.finished += 1 : null |
|
}); |
|
}); |
|
item.percentage = Math.round(item.inspected / item.allUnitsNum) * 100 |
|
resolve(data) |
|
}) |
|
}) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
//接受任务 |
|
accept(i, item) { |
|
this.modal.confirm({ |
|
nzTitle: `确定要接受该任务吗?`, |
|
nzOkText: '确定', |
|
nzOkType: 'default', |
|
nzOnOk: () => { |
|
item.isLoading = true |
|
this.http.post(`/api/PlanTasks/Approval/${i.id}`, null, { |
|
params: { |
|
approvalStatus: '通过' |
|
} |
|
}).subscribe({ |
|
next: (data) => { |
|
this.message.create('success', '已接受'); |
|
i.approvalStatus = '通过' |
|
item.isLoading = false |
|
item.passed += 1 |
|
this.getTaskListPass(this.stationData[0]) |
|
|
|
}, |
|
error: (err) => { |
|
this.message.create('warning', '接受失败'); |
|
item.isLoading = false |
|
} |
|
}) |
|
}, |
|
nzCancelText: '取消' |
|
}); |
|
} |
|
//拒绝任务 |
|
reject(i, item) { |
|
this.modal.confirm({ |
|
nzTitle: `确定要拒绝该任务吗?`, |
|
nzOkText: '确定', |
|
nzOkType: 'default', |
|
nzOnOk: () => { |
|
item.isLoading = true |
|
this.http.post(`/api/PlanTasks/Approval/${i.id}`, null, { |
|
params: { |
|
approvalStatus: '驳回' |
|
} |
|
}).subscribe({ |
|
next: (data) => { |
|
this.message.create('success', '已拒绝'); |
|
i.approvalStatus = '驳回' |
|
item.isLoading = false |
|
item.passed -= 1 |
|
this.getTaskListPass(this.stationData[0]) |
|
}, |
|
error: (err) => { |
|
this.message.create('warning', '拒绝失败'); |
|
item.isLoading = false |
|
} |
|
}) |
|
}, |
|
nzCancelText: '取消' |
|
}); |
|
} |
|
|
|
userName |
|
|
|
ngOnInit(): void { |
|
this.OrganizationId = JSON.parse(sessionStorage.getItem('userData')).organizationId |
|
this.userId = JSON.parse(sessionStorage.getItem('userData')).id |
|
this.userName = JSON.parse(sessionStorage.getItem('userData')).name |
|
this.stationData[0].name = this.userName |
|
let roles = JSON.parse(sessionStorage.getItem('userData')).roles |
|
let isSupervisor = roles.find(item => { |
|
return item.name.indexOf('检查') != -1 |
|
}) |
|
isSupervisor ? this.isSupervisor = true : this.isSupervisor = false |
|
this.selectedMonth = new Date().getMonth() + 1 |
|
|
|
// this.getAllStation() |
|
this.getTaskList() |
|
this.getTaskListPass(this.stationData[0]) |
|
|
|
setTimeout(() => { |
|
this.rollStart() |
|
}, 0); |
|
|
|
} |
|
messageList = [1, 1, 1, 1, 1] |
|
timer |
|
rollStart() { |
|
var ROLL_SPEED = 100 |
|
var noticeList1 = document.getElementById('notice-list'); |
|
var noticeList2 = document.getElementById('notice-list-2'); |
|
var listWrapper = document.getElementById('list-wrapper'); |
|
noticeList2.innerHTML = noticeList1.innerHTML; |
|
this.timer = setInterval(rollStart, ROLL_SPEED); |
|
|
|
function rollStart() { |
|
if (Math.abs(_subStr(listWrapper.style.top)) >= noticeList1.clientHeight) { |
|
listWrapper.style.top = '0px' |
|
} else { |
|
var top = listWrapper.style.top |
|
listWrapper.style.top = _subStr(top) - 1 + 'px' |
|
} |
|
} |
|
// 截取px前数值 |
|
function _subStr(str) { |
|
var index = str.indexOf('px'); |
|
if (index > -1) { |
|
return parseFloat(str.substr(0, index + 1)) |
|
} |
|
} |
|
} |
|
mouseEnter() { |
|
window.clearInterval(this.timer); |
|
} |
|
mouseleave() { |
|
this.rollStart() |
|
} |
|
|
|
ngOnDestroy(): void { |
|
console.log('退出了') |
|
this.mouseEnter() |
|
} |
|
|
|
expandcarditem(item) { |
|
item.isExpand = !item.isExpand |
|
// console.log(item) |
|
// if (item.isExpand) { |
|
// this.getTaskListOfStation(item) |
|
// } |
|
} |
|
|
|
//获得消防站下的所有任务 |
|
getTaskListOfStation(item) { |
|
let selectedTime = this.selectedYear + '-' + this.selectedMonth + '-' + '01' |
|
let params = { |
|
Month: selectedTime, |
|
CompanyOrganizationId: item.id, |
|
PageNumber: this.PageNumber, |
|
approvalStatuses: '通过', |
|
PageSize: this.PageSize |
|
} |
|
item.isLoading = true |
|
this.http.get('/api/PlanTasks', { |
|
params: params |
|
}).subscribe({ |
|
next: (data: any) => { |
|
item.isLoading = false |
|
let listData = [ |
|
{ name: '双随机', background: '#1D9DFF', icon: 'suiji.png', scale: '0/0', data: [] }, |
|
{ name: '行政许可', background: '#42B983', icon: 'xuke.png', scale: '0/0', data: [] }, |
|
{ name: '熟悉演练', background: '#9D80FF', icon: 'yanlian.png', scale: '0/0', data: [] }, |
|
{ name: '联络指导', background: '#5483EA', icon: 'zhidao.png', scale: '0/0', data: [] }, |
|
{ name: '消防宣传', background: '#FF5D2A', icon: 'xuanchuan.png', scale: '0/0', data: [] }, |
|
{ name: '投诉举报', background: '#5087FF', icon: 'tousu.png', scale: '0/0', data: [] }, |
|
{ name: '火灾调查', background: '#FF404D', icon: 'huozai.png', scale: '0/0', data: [] } |
|
] |
|
data.items.forEach(element => { |
|
listData.forEach((item, key) => { |
|
element.taskType == item.name ? listData[key].data.push(element) : null |
|
}); |
|
}); |
|
for (let index = 0; index < listData.length; index++) { |
|
const element = listData[index]; |
|
if (element.data.length == 0) { |
|
listData.splice(index, 1) |
|
index-- |
|
} |
|
} |
|
item.data = listData |
|
// console.log('点击的救援站通过数据', item) |
|
}, |
|
error: (err) => { |
|
this.message.create('warning', '获取数据失败'); |
|
item.isLoading = false |
|
} |
|
}) |
|
} |
|
taskDetails(item) { |
|
// console.log(item) |
|
const modal = this.modal.create({ |
|
nzTitle: item.name, |
|
nzContent: TaskDetailsComponent, |
|
nzViewContainerRef: this.viewContainerRef, |
|
nzWidth: 900, |
|
nzMaskClosable: false, |
|
nzFooter: null, |
|
nzComponentParams: { |
|
data: item, |
|
parent: this |
|
} |
|
}); |
|
const instance = modal.getContentComponent(); |
|
modal.afterOpen.subscribe(() => console.log('[afterOpen] emitted!')); |
|
modal.afterClose.subscribe(result => console.log('[afterClose] The result is:', result)); |
|
} |
|
|
|
|
|
apply(item) { |
|
const modal = this.modal.create({ |
|
nzTitle: '新增' + item.name + '任务', |
|
nzContent: CreateTaskComponent, |
|
nzViewContainerRef: this.viewContainerRef, |
|
nzWidth: 660, |
|
nzMaskClosable: false, |
|
nzComponentParams: { |
|
title: item.name, |
|
}, |
|
nzOnOk: async () => { |
|
console.log(instance.validateForm.value) |
|
if (instance.validateForm.valid) { |
|
await new Promise((resolve, reject) => { |
|
let selectedTime = this.selectedYear + '-' + this.selectedMonth + '-' + '01' |
|
let body = { |
|
month: selectedTime, |
|
taskName: instance.validateForm.value.taskname, |
|
taskType: instance.validateForm.value.taskname, |
|
companyId: instance.validateForm.value.unitname.id, |
|
organizationId: this.OrganizationId, |
|
supervisorIds: [this.userId], |
|
creationType: '自主任务', |
|
approvalStatus: '通过' |
|
} |
|
this.http.post('/api/PlanTasks', body).subscribe({ |
|
next: (data: any) => { |
|
console.log(item) |
|
data.company = instance.validateForm.value.unitname |
|
item.data.push(data) |
|
item.passed += 1 |
|
// this.getTaskList() |
|
this.getTaskListPass(this.stationData[0]) |
|
this.message.create('success', '创建成功'); |
|
resolve(data) |
|
return true |
|
}, |
|
error: (err) => { |
|
this.message.create('warning', '创建失败'); |
|
reject(err) |
|
return false |
|
} |
|
}) |
|
}) |
|
} else { |
|
this.message.create('warning', '请填写完整!'); |
|
return false |
|
} |
|
} |
|
}); |
|
const instance = modal.getContentComponent(); |
|
modal.afterOpen.subscribe(() => console.log('[afterOpen] emitted!')); |
|
modal.afterClose.subscribe(result => console.log('[afterClose] The result is:', result)); |
|
} |
|
}
|
|
|