Browse Source

1

非煤矿山灾害智能感知和预警系统
jingbowen 3 years ago
parent
commit
99f8bc3edc
  1. 11138
      package-lock.json
  2. 1
      package.json
  3. 2
      proxy.config.json
  4. 5
      src/app/app.module.ts
  5. 2
      src/app/home/nav/nav.component.html
  6. 15
      src/app/home/nav/nav.component.ts
  7. 2
      src/app/home/system-management/user/adduser/adduser.component.html
  8. 2
      src/app/home/system-management/user/adduser/adduser.component.ts
  9. 2
      src/app/home/system-management/user/edituser/edituser.component.html
  10. 2
      src/app/home/system-management/user/edituser/edituser.component.ts
  11. 4
      src/app/home/task/da-monthly-task-overview/da-monthly-task-overview.component.html
  12. 16
      src/app/home/task/da-monthly-task-overview/da-monthly-task-overview.component.ts
  13. 4
      src/app/home/task/da-oneself-plan/da-oneself-plan.component.html
  14. 19
      src/app/home/task/da-oneself-plan/da-oneself-plan.component.ts
  15. 14
      src/app/home/task/da-oneself-plan/plan-adjustment/plan-adjustment.component.ts
  16. 12
      src/app/home/task/station-task-apply/apply/apply.component.ts
  17. 52
      src/app/home/task/station-task-apply/station-task-apply.component.html
  18. 23
      src/app/home/task/station-task-apply/station-task-apply.component.ts
  19. 27
      src/app/home/task/station-weekly-plan/station-weekly-plan.component.html
  20. 91
      src/app/home/task/station-weekly-plan/station-weekly-plan.component.ts
  21. 23
      src/app/home/task/station-weekly-plan/task-details/task-details.component.html
  22. 53
      src/app/home/task/station-weekly-plan/task-details/task-details.component.scss
  23. 3
      src/app/home/task/station-weekly-plan/task-details/task-details.component.ts
  24. 3
      src/app/home/task/zhi-indicators/edit-or/edit-or.component.html
  25. 12
      src/app/home/task/zhi-indicators/edit-or/edit-or.component.ts
  26. 22
      src/app/home/task/zhi-indicators/zhi-indicators.component.html
  27. 34
      src/app/home/task/zhi-indicators/zhi-indicators.component.ts
  28. 54
      src/signalR.ts

11138
package-lock.json generated

File diff suppressed because it is too large Load Diff

1
package.json

@ -18,6 +18,7 @@
"@angular/platform-browser": "~13.1.0",
"@angular/platform-browser-dynamic": "~13.1.0",
"@angular/router": "~13.1.0",
"@microsoft/signalr": "^6.0.8",
"@types/file-saver": "^2.0.5",
"echarts": "^5.3.3",
"file-saver": "^2.0.5",

2
proxy.config.json

@ -4,7 +4,7 @@
"secure": false,
"changeOrigin": true
},
"/signalr": {
"/hubs": {
"target": "https://121.36.37.70:8204",
"secure": false,
"ws": true,

5
src/app/app.module.ts

@ -33,8 +33,9 @@ registerLocaleData(zh);
NzMessageModule,
NzModalModule
],
providers: [httpInterceptorProviders, CacheTokenService, TreeService, ConfigFormDataService,
{ provide: RouteReuseStrategy, useClass: CustomReuseStrategy }],
// providers: [httpInterceptorProviders, CacheTokenService, TreeService, ConfigFormDataService,
// { provide: RouteReuseStrategy, useClass: CustomReuseStrategy }],
providers: [httpInterceptorProviders, CacheTokenService, TreeService, ConfigFormDataService],
bootstrap: [AppComponent]
})
export class AppModule { }

2
src/app/home/nav/nav.component.html

@ -19,7 +19,7 @@
</li>
</ul>
<div class="headerbtn">
<div>欢迎,{{user}}</div>
<div>欢迎 , {{user}}</div>
<a nz-dropdown [nzDropdownMenu]="menu" [nzTrigger]="'click'" [nzBackdrop]='false'>
<i nz-icon nzType="setting"></i>
</a>

15
src/app/home/nav/nav.component.ts

@ -5,6 +5,8 @@ import { HttpClient } from '@angular/common/http';
import { ChangePasswordComponent } from '../change-password/change-password.component';
import { NzModalService } from 'ng-zorro-antd/modal';
import { NzMessageService } from 'ng-zorro-antd/message';
import signalR from '../../../signalR'
@Component({
selector: 'app-nav',
templateUrl: './nav.component.html',
@ -20,18 +22,29 @@ export class NavComponent implements OnInit {
//调用服务中的function刷新token
this.token.startUp()
this.user = JSON.parse(sessionStorage.getItem('userData')).name
let roles = JSON.parse(sessionStorage.getItem('userData')).roles
let isTrue = roles.find(item => {
return item.name == '超级管理员'
})
isTrue ? this.isSuperAdmin = true : this.isSuperAdmin = false
// signalR.initSR();
// // 接收来自中心的消息
// (signalR.SR as any).on('receiveNotification', (message: string, senderName: string) => {
// // 接收后要做的事
// console.log('收到消息---', message)
// })
}
signOut() {
this.router.navigate(['/login'])
}
ngOnDestroy(): void {
this.token.delete()
// console.log('断开SR')
// signalR.stopSR();
}
changePassword() {

2
src/app/home/system-management/user/adduser/adduser.component.html

@ -17,7 +17,7 @@
</nz-form-control>
</nz-form-item>
<nz-form-item>
<nz-form-label [nzSm]="6" [nzXs]="24" nzFor="电子邮箱">电子邮箱</nz-form-label>
<nz-form-label [nzSm]="6" [nzXs]="24" nzRequired nzFor="电子邮箱">电子邮箱</nz-form-label>
<nz-form-control>
<nz-input-group>
<input nz-input type="text" formControlName="email" placeholder="请输入电子邮箱" />

2
src/app/home/system-management/user/adduser/adduser.component.ts

@ -20,7 +20,7 @@ export class AdduserComponent implements OnInit {
this.validateForm = this.fb.group({
account: [null, [Validators.required]],
name: [null, [Validators.required]],
email: [null],
email: [null, [Validators.required]],
organization: [null, [Validators.required]],
role: [[], [Validators.required]]
});

2
src/app/home/system-management/user/edituser/edituser.component.html

@ -17,7 +17,7 @@
</nz-form-control>
</nz-form-item>
<nz-form-item>
<nz-form-label [nzSm]="6" [nzXs]="24" nzFor="电子邮箱">电子邮箱</nz-form-label>
<nz-form-label [nzSm]="6" [nzXs]="24" nzRequired nzFor="电子邮箱">电子邮箱</nz-form-label>
<nz-form-control>
<nz-input-group>
<input nz-input type="text" formControlName="email" placeholder="请输入电子邮箱" />

2
src/app/home/system-management/user/edituser/edituser.component.ts

@ -24,7 +24,7 @@ export class EdituserComponent implements OnInit {
this.validateForm = this.fb.group({
account: [this.data.username, [Validators.required]],
name: [this.data.name, [Validators.required]],
email: [this.data.email],
email: [this.data.email, [Validators.required]],
organization: [this.data.organizationId, [Validators.required]],
role: [rolesId, [Validators.required]]
});

4
src/app/home/task/da-monthly-task-overview/da-monthly-task-overview.component.html

@ -312,7 +312,7 @@
</span>
<span style="width: 8%;">
<span>
单位总数:{{element.awaitInspect}}/{{element.allUnitsNum}}
单位总数:{{element.allUnitsNum}}/{{TuesdayThursdayNum}}
</span>
</span>
<div style="width: 72%;" class="progress progresssquare">
@ -336,7 +336,7 @@
<div class="num">
<div class="round" style="background: #2C4DC0;"></div>
<span class="word">已分配</span>
<span class="boldspan">{{item.inspected}}</span>
<span class="boldspan">{{item.data.length}}</span>
</div>
<div class="num">
<div class="round" style="background: #87D068;"></div>

16
src/app/home/task/da-monthly-task-overview/da-monthly-task-overview.component.ts

@ -17,6 +17,7 @@ export class DaMonthlyTaskOverviewComponent implements OnInit {
selectedTime
selectMonth(item) {
this.selectedMonth = item.id
this.getTuesdayThursdayNum()
this.getHigherTasks()
this.getTaskList()
this.getAllStation()
@ -24,11 +25,24 @@ export class DaMonthlyTaskOverviewComponent implements OnInit {
}
selectYear(e) {
this.selectedYear = e
this.getTuesdayThursdayNum()
this.getHigherTasks()
this.getTaskList()
this.getAllStation()
this.getCountStat()
}
//当月有几个周二周四
TuesdayThursdayNum = 0
getTuesdayThursdayNum() {
let selectedTime = this.selectedYear + '-' + this.selectedMonth + '-' + '01'
this.http.get(`/api/TaskTargets/GetTargetCount/${selectedTime}`).subscribe((data: any) => {
console.log('最大日期', data)
this.TuesdayThursdayNum = data
})
}
months = [
{ id: 1, name: '1月', isable: true },
{ id: 2, name: '2月', isable: true },
@ -62,7 +76,7 @@ export class DaMonthlyTaskOverviewComponent implements OnInit {
//统计信息
this.getCountStat()
this.getTuesdayThursdayNum()
//本级部署
this.getAllStation()
}

4
src/app/home/task/da-oneself-plan/da-oneself-plan.component.html

@ -95,7 +95,7 @@
</span>
<span style="width: 8%;">
<span>
单位总数:{{element.awaitInspect}}/{{element.allUnitsNum}}
单位总数:{{element.allUnitsNum}}/{{TuesdayThursdayNum}}
</span>
</span>
<div style="width: 66%;" class="progress progresssquare">
@ -119,7 +119,7 @@
<div class="num">
<div class="round" style="background: #2C4DC0;"></div>
<span class="word">已分配</span>
<span class="boldspan">{{item.inspected}}</span>
<span class="boldspan">{{item.data.length}}</span>
</div>
<div class="num">
<div class="round" style="background: #42B983;"></div>

19
src/app/home/task/da-oneself-plan/da-oneself-plan.component.ts

@ -19,21 +19,35 @@ export class DaOneselfPlanComponent implements OnInit {
this.selectedMonth = new Date().getMonth() + 1
this.getTasks()
this.getAllStation()
this.getTuesdayThursdayNum()
}
selectedMonth
selectedYear = 2022
selectedTime
selectMonth(item) {
this.selectedMonth = item.id
this.getTuesdayThursdayNum()
this.getTasks()
this.getAllStation()
}
selectYear(e) {
this.selectedYear = e
console.log('年', e)
this.getTuesdayThursdayNum()
this.getTasks()
this.getAllStation()
}
//当月有几个周二周四
TuesdayThursdayNum = 0
getTuesdayThursdayNum() {
let selectedTime = this.selectedYear + '-' + this.selectedMonth + '-' + '01'
this.http.get(`/api/TaskTargets/GetTargetCount/${selectedTime}`).subscribe((data: any) => {
console.log('最大日期', data)
this.TuesdayThursdayNum = data
})
}
months = [
{ id: 1, name: '1月', isable: true },
{ id: 2, name: '2月', isable: true },
@ -76,13 +90,15 @@ export class DaOneselfPlanComponent implements OnInit {
item.data = []
item.passed = 0
item.inspected = 0
item.percentage = 0
});
let selectedTime = this.selectedYear + '-' + this.selectedMonth + '-' + '01'
let params = {
Month: selectedTime,
OrganizationId: this.OrganizationId,
PageNumber: 1,
PageSize: 9999
PageSize: 9999,
approvalStatuses: ['待处理', '通过', '驳回', '待检查', '已检查']
}
return await new Promise<void>((resolve, reject) => {
this.http.get('/api/PlanTasks', {
@ -219,6 +235,7 @@ export class DaOneselfPlanComponent implements OnInit {
});
const instance = modal.getContentComponent();
modal.afterClose.subscribe(result => {
this.getTasks()
this.getTaskListOfStation(item)
});
}

14
src/app/home/task/da-oneself-plan/plan-adjustment/plan-adjustment.component.ts

@ -17,8 +17,19 @@ export class PlanAdjustmentComponent implements OnInit {
spin1 = false
spin2 = false
userId
organizationName
isSupervisor
OrganizationId
ngOnInit(): void {
this.userId = JSON.parse(sessionStorage.getItem('userData')).id
this.organizationName = JSON.parse(sessionStorage.getItem('userData')).organizationName
this.OrganizationId = JSON.parse(sessionStorage.getItem('userData')).organizationId
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.getTaskListOfStation(this.data, '未接任务')
}
push(i, item, e) {
@ -129,7 +140,8 @@ export class PlanAdjustmentComponent implements OnInit {
} else {
params = {
Month: this.time,
SupervisorId: this.userId,
SupervisorId: this.isSupervisor ? this.userId : null,
AssitantOrganizationId: this.isSupervisor ? null : this.OrganizationId,
PageNumber: this.PageNumber,
approvalStatuses: statuses,
PageSize: this.PageSize

12
src/app/home/task/station-task-apply/apply/apply.component.ts

@ -33,13 +33,10 @@ export class ApplyComponent implements OnInit {
Promise.all([this.getCompanies(), this.getAllOrganization()])
.then((results) => {
let arr = [...JSON.parse(JSON.stringify(this.allOrList)), ...JSON.parse(JSON.stringify(this.unitList))]
console.log(789456, this.allOrList)
console.log(789456, this.unitList)
let nodes = [...this.toTree.toTree(arr)]
console.log('6666',nodes)
this.unitPopover.nodes = JSON.parse(JSON.stringify(nodes))
});
}
@ -66,7 +63,12 @@ export class ApplyComponent implements OnInit {
element.disableCheckbox = true
});
this.allOrList = JSON.parse(JSON.stringify(data.items))
this.allOrList.length == 1 ? this.allOrList[0].parentId = null : null
console.log(111,this.allOrList)
this.allOrList.forEach(element => {
if(element.id == JSON.parse(sessionStorage.getItem('userData')).organizationId){
element.parentId = null
}
});
resolve(data)
})
})

52
src/app/home/task/station-task-apply/station-task-apply.component.html

@ -85,7 +85,7 @@
[ngClass]="{'greenborder': item.approvalStatus == '通过','redborder': item.approvalStatus == '驳回'}">
<div class="flexcol tasknamebox">
<span>
{{item.taskName}}
{{item.taskType}}
</span>
<span>
任务名称
@ -117,25 +117,41 @@
</div>
<div class="flexcol flexcolassistant">
<span class="assistant" nz-tooltip [nzTooltipTitle]="titleTemplate">
<span *ngFor="let i of item.supervisors">
<img *ngIf="i.posts && i.posts[0] == '主查人员'"
src="../../../../assets/images/icon/main.png" alt="">
<img *ngIf="i.posts && i.posts[0] == '协查人员'"
src="../../../../assets/images/icon/assist.png" alt="">
{{i.name}}
</span>
<ng-container *ngIf="isSupervisor; else elseTemplate2">
<span *ngFor="let i of item.assitantOrganizations">
{{i.name}}
</span>
</ng-container>
<ng-template #elseTemplate2>
<span *ngFor="let i of item.supervisors">
<img *ngIf="i.posts && i.posts[0] == '主查人员'"
src="../../../../assets/images/icon/main.png" alt="">
<img *ngIf="i.posts && i.posts[0] == '协查人员'"
src="../../../../assets/images/icon/assist.png" alt="">
{{i.name}}
</span>
</ng-template>
</span>
<ng-template #titleTemplate let-thing>
<span style="margin-right: 6px;" *ngFor="let i of item.supervisors">
<img *ngIf="i.posts && i.posts[0] == '主查人员'"
src="../../../../assets/images/icon/main.png" alt="">
<img *ngIf="i.posts && i.posts[0] == '协查人员'"
src="../../../../assets/images/icon/assist.png" alt="">
{{i.name}}
</span>
<ng-container *ngIf="isSupervisor; else elseTemplate3">
<span style="margin-right: 6px;" *ngFor="let i of item.assitantOrganizations">
{{i.name}}
</span>
</ng-container>
<ng-template #elseTemplate3>
<span style="margin-right: 6px;" *ngFor="let i of item.supervisors">
<img *ngIf="i.posts && i.posts[0] == '主查人员'"
src="../../../../assets/images/icon/main.png" alt="">
<img *ngIf="i.posts && i.posts[0] == '协查人员'"
src="../../../../assets/images/icon/assist.png" alt="">
{{i.name}}
</span>
</ng-template>
</ng-template>
<span>
协助人员
{{isSupervisor ? '协助机构' : '协助人员'}}
</span>
</div>
<div class="flexcol">
@ -149,13 +165,13 @@
<div class="flexcol">
<span>
<ng-container
*ngIf="item.approvalStatus == '通过'|| item.approvalStatus == '驳回' ; else elseTemplate">
*ngIf="item.approvalStatus == '通过'|| item.approvalStatus == '驳回' ; else elseTemplate4">
<img *ngIf="item.approvalStatus == '通过'"
src="../../../../assets/images/icon/agree.png" alt="">
<img *ngIf="item.approvalStatus == '驳回'"
src="../../../../assets/images/icon/reject.png" alt="">
</ng-container>
<ng-template #elseTemplate>
<ng-template #elseTemplate4>
<span>{{item.approvalStatus}}</span>
</ng-template>
</span>

23
src/app/home/task/station-task-apply/station-task-apply.component.ts

@ -55,12 +55,6 @@ export class StationTaskApplyComponent implements OnInit {
this.getTaskList()
}
cancel(item, type) {
}
delete(item) {
}
isloading = false
totalCount
@ -72,12 +66,13 @@ export class StationTaskApplyComponent implements OnInit {
let selectedTime = this.selectedYear + '-' + this.selectedMonth + '-' + '01'
let params = {
Month: selectedTime,
OrganizationId: this.OrganizationId,
TaskName: this.searchForm.taskname,
CompanyName: this.searchForm.unitname,
AssitantOrganizationId: this.searchForm.or,
CreatorId: this.isSupervisor ? this.userId : null,//如果是检查员需要传CreatorId只针对这个账户 如果是救援站就不需要
CreationTypes:['申领任务'],
OrganizationId: this.OrganizationId,
PageNumber: this.PageNumber,
CreatorId: this.userId,
PageSize: this.PageSize
}
this.http.get('/api/PlanTasks', {
@ -130,6 +125,7 @@ export class StationTaskApplyComponent implements OnInit {
element.title = element.name
element.disableCheckbox = true
element.selectable = false
element.level == 'squadron' ? element.disableCheckbox = false : null
});
this.organizationListAll = JSON.parse(JSON.stringify(data.items))
this.organizationList = JSON.parse(JSON.stringify(data.items)).filter(item => {
@ -202,9 +198,8 @@ export class StationTaskApplyComponent implements OnInit {
Promise.all([this.getAllOrganization(), this.getSupervisor(), this.getUsers()])
.then((results) => {
if (this.isSupervisor) {
let arr = [...this.users, ...this.organizationListAll]
console.log(arr);
// let arr = [...this.users, ...this.organizationListAll]
let arr = [...this.organizationListAll]
this.nodes = this.toTree.toTree(JSON.parse(JSON.stringify(arr)))
} else {
let arr = [...this.supervisorList, ...this.organizationList]
@ -244,13 +239,10 @@ export class StationTaskApplyComponent implements OnInit {
}
}
mouseEnter() {
// console.log('进入了')
window.clearInterval(this.timer);
}
mouseleave() {
this.rollStart()
}
ngOnDestroy(): void {
console.log('退出了')
@ -290,7 +282,8 @@ export class StationTaskApplyComponent implements OnInit {
taskType: instance.validateForm.value.taskname,
companyId: instance.selectedUnitData.id,
organizationId: this.OrganizationId,
supervisorIds: instance.validateForm.value.organization,
supervisorIds: this.isSupervisor ? [] : instance.validateForm.value.organization,
assitantOrganizationIds: this.isSupervisor ? instance.validateForm.value.organization : [],
creationType: '申领任务',
approvalStatus: '待处理'
}

27
src/app/home/task/station-weekly-plan/station-weekly-plan.component.html

@ -96,18 +96,20 @@
<p class="itemtwocontentitemp1">
<span class="itemtwocontentitemp1name">{{i.company.companyName}}</span>
<span class="marginr5">
<span class="green" *ngIf="isExpand" (click)="accept(i,item)">接受</span>
<span class="red" *ngIf="isExpand" (click)="reject(i,item)">拒绝</span>
<span class="green" *ngIf="isExpand && i.approvalStatus == '通过'">已通过</span>
<span class="red" *ngIf="isExpand && i.approvalStatus == '驳回'">已驳回</span>
<span class="green" *ngIf="isExpand && i.approvalStatus!='已检查'"
(click)="accept(i,item)">接受</span>
<span class="red" *ngIf="isExpand && i.approvalStatus!='已检查'"
(click)="reject(i,item)">拒绝</span>
<span *ngIf="isExpand">{{i.approvalStatus}}</span>
</span>
</p>
<p>{{i.company.organization.name}}</p>
<p class="marginr5">
<span class=" green" *ngIf="!isExpand" (click)="accept(i,item)">接受</span>
<span class="red" *ngIf="!isExpand" (click)="reject(i,item)">拒绝</span>
<span class="green" *ngIf="!isExpand && i.approvalStatus == '通过'">已通过</span>
<span class="red" *ngIf="!isExpand && i.approvalStatus == '驳回'">已驳回</span>
<span class=" green" *ngIf="!isExpand && i.approvalStatus!='已检查'"
(click)="accept(i,item)">接受</span>
<span class="red" *ngIf="!isExpand && i.approvalStatus!='已检查'"
(click)="reject(i,item)">拒绝</span>
<span *ngIf="!isExpand">{{i.approvalStatus}}</span>
</p>
</div>
</div>
@ -129,13 +131,14 @@
<img src="../../../../assets//images/icon/station.png" alt="">
{{element.name}}
</span>
<span style="width: 8%;">单位总数: {{element.awaitInspect}}/{{element.allUnitsNum}}</span>
<span style="width: 8%;">单位总数: {{element.allUnitsNum}}/{{TuesdayThursdayNum}}</span>
<div style="width: 60%;" class="progress progresssquare">
<span>完成进度</span>
<nz-progress nzStrokeLinecap="square" [nzStrokeWidth]="16" nzStrokeColor="#42B983"
[nzPercent]="element.percentage"></nz-progress>
</div>
<button nz-button nzType="primary" style="margin-right: 12px;" (click)="adjustment(element)">任务调整</button>
<button nz-button nzType="primary" style="margin-right: 12px;"
(click)="adjustment(element)">任务调整</button>
<button nz-button nzType="primary" (click)="createTask(element)">{{isSupervisor ? '协同任务' :
'生成周计划'}}</button>
<span (click)="expandcarditem(element)" class="expand blue">
@ -153,7 +156,7 @@
<div class="num">
<div class="round" style="background: #2C4DC0;"></div>
<span class="word">已分配</span>
<span class="boldspan">{{item.inspected}}</span>
<span class="boldspan">{{item.data.length}}</span>
</div>
<div class="num">
<div class="round" style="background: #42B983;"></div>
@ -207,7 +210,7 @@
</span>
</ng-template>
<span>
协助人员
协助机构/人员
</span>
</div>
<div class="flexcol">

91
src/app/home/task/station-weekly-plan/station-weekly-plan.component.ts

@ -44,16 +44,30 @@ export class StationWeeklyPlanComponent implements OnInit {
selectMonth(item) {
this.selectedMonth = item.id
this.initializeData()
this.getTuesdayThursdayNum()
this.getTaskList()
this.getTaskListPass(this.stationData[0])
}
selectYear(e) {
this.selectedYear = e
this.initializeData()
this.getTuesdayThursdayNum()
this.getTaskList()
this.getTaskListPass(this.stationData[0])
}
//当月有几个周二周四
TuesdayThursdayNum = 0
getTuesdayThursdayNum() {
let selectedTime = this.selectedYear + '-' + this.selectedMonth + '-' + '01'
this.http.get(`/api/TaskTargets/GetTargetCount/${selectedTime}`).subscribe((data: any) => {
console.log('最大日期', data)
this.TuesdayThursdayNum = data
})
}
isExpand = true
expand() {
this.isExpand = !this.isExpand
@ -164,16 +178,21 @@ export class StationWeeklyPlanComponent implements OnInit {
PageNumber = 1
PageSize = 9999
async getTaskList() {
this.cardData.forEach(item => {
item.data = []
this.cardData.forEach(element => {
element.data = []
element.percentage = 0
element.passed = 0
element.inspected = 0
})
this.isLoading = true
let selectedTime = this.selectedYear + '-' + this.selectedMonth + '-' + '01'
let params = {
Month: selectedTime,
SupervisorId: this.userId,
SupervisorId: this.isSupervisor ? this.userId : null,
AssitantOrganizationId: this.isSupervisor ? null : this.OrganizationId,
PageNumber: this.PageNumber,
PageSize: this.PageSize
PageSize: this.PageSize,
approvalStatuses: ['待处理', '通过', '驳回', '待检查', '已检查']
}
return await new Promise<void>((resolve, reject) => {
this.http.get('/api/PlanTasks', {
@ -211,7 +230,8 @@ export class StationWeeklyPlanComponent implements OnInit {
let params = {
Month: selectedTime,
approvalStatuses: ['通过', '待检查', '已检查'],
SupervisorId: this.userId,
SupervisorId: this.isSupervisor ? this.userId : null,
AssitantOrganizationId: this.isSupervisor ? null : this.OrganizationId,
PageNumber: this.PageNumber,
PageSize: this.PageSize
}
@ -287,7 +307,6 @@ export class StationWeeklyPlanComponent implements OnInit {
item.isLoading = false
item.passed += 1
this.getTaskListPass(this.stationData[0])
},
error: (err) => {
this.message.create('warning', '接受失败');
@ -329,23 +348,35 @@ export class StationWeeklyPlanComponent implements OnInit {
}
userName
organizationName
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
this.organizationName = JSON.parse(sessionStorage.getItem('userData')).organizationName
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
if (isSupervisor) {
this.stationData[0].name = this.userName
} else {
this.stationData[0].name = this.organizationName
}
this.selectedMonth = new Date().getMonth() + 1
// this.getAllStation()
this.getTaskList()
this.getTaskListPass(this.stationData[0])
this.getTuesdayThursdayNum()
setTimeout(() => {
this.rollStart()
}, 0);
@ -391,10 +422,6 @@ export class StationWeeklyPlanComponent implements OnInit {
expandcarditem(item) {
item.isExpand = !item.isExpand
// console.log(item)
// if (item.isExpand) {
// this.getTaskListOfStation(item)
// }
}
//获得消防站下的所有任务
@ -414,13 +441,13 @@ export class StationWeeklyPlanComponent implements OnInit {
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: [] }
{ 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) => {
@ -435,7 +462,21 @@ export class StationWeeklyPlanComponent implements OnInit {
}
}
item.data = listData
// console.log('点击的救援站通过数据', item)
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
},
error: (err) => {
this.message.create('warning', '获取数据失败');
@ -443,6 +484,8 @@ export class StationWeeklyPlanComponent implements OnInit {
}
})
}
taskDetails(item) {
// console.log(item)
const modal = this.modal.create({
@ -459,7 +502,11 @@ export class StationWeeklyPlanComponent implements OnInit {
});
const instance = modal.getContentComponent();
modal.afterOpen.subscribe(() => console.log('[afterOpen] emitted!'));
modal.afterClose.subscribe(result => console.log('[afterClose] The result is:', result));
modal.afterClose.subscribe(result => {
// item
// this.getTaskList()
this.getTaskListPass(this.stationData[0])
});
}
@ -534,6 +581,7 @@ export class StationWeeklyPlanComponent implements OnInit {
}
this.http.post('/api/PlanTasks/ApprovalMany', null, { params: params }).subscribe({
next: (data: any) => {
this.getTaskListPass(this.stationData[0])
this.message.create('success', '发布成功');
},
error: (err) => {
@ -559,6 +607,7 @@ export class StationWeeklyPlanComponent implements OnInit {
});
const instance = modal.getContentComponent();
modal.afterClose.subscribe(result => {
this.getTaskList()
this.getTaskListPass(this.stationData[0])
});
}

23
src/app/home/task/station-weekly-plan/task-details/task-details.component.html

@ -2,14 +2,25 @@
<div class="list">
<div class="item" *ngFor="let item of data.data">
<div class="text">
{{item.company.companyName}}
<p>单位名称 : {{item.company.companyName}}</p>
<p>单位级别 : {{item.company.useNature}}</p>
<p>主负责人 : {{item.organization.name}}</p>
<p>协助人员 :
<span class="assistant">
<span *ngFor="let o of item.supervisors">
<img *ngIf="o.posts && o.posts[0] == '主查人员'" src="../../../../assets/images/icon/main.png"
alt="">
<img *ngIf="o.posts && o.posts[0] == '协查人员'" src="../../../../assets/images/icon/assist.png"
alt="">
{{o.name}}
</span>
</span>
</p>
</div>
<div class="state">
<span class="green" (click)="accept(item)">接受</span>
<span class="red" (click)="reject(item)">拒绝</span>
<span *ngIf="item.approvalStatus == '待处理'">待处理</span>
<span class="green" *ngIf="item.approvalStatus == '通过'">已通过</span>
<span class="red" *ngIf="item.approvalStatus == '驳回'">已驳回</span>
<span class="green" (click)="accept(item)" *ngIf="item.approvalStatus!='已检查'">接受</span>
<span class="red" (click)="reject(item)" *ngIf="item.approvalStatus!='已检查'">拒绝</span>
<span>{{item.approvalStatus}}</span>
</div>
</div>
</div>

53
src/app/home/task/station-weekly-plan/task-details/task-details.component.scss

@ -1,20 +1,39 @@
.list{
margin-top: -10px;
max-height: 600px;
padding: 0 5px;
overflow: auto;
.item{
display: flex;
border-bottom: 1px dotted #C7CAD0;
height: 50px;
line-height: 50px;
.text{
flex: 1;
.list {
margin-top: -10px;
max-height: 600px;
padding: 0 5px;
overflow: auto;
.item {
display: flex;
border-bottom: 1px dotted #C7CAD0;
margin-bottom: 10px;
.text {
flex: 1;
.assistant {
span {
color: #303133;
margin-right: 6px;
}
.state{
span{
margin-left: 8px;
}
img {
width: 16px;
height: 16px;
vertical-align: text-bottom;
}
text-align: left;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
}
.state {
span {
margin-left: 8px;
}
}
}
}

3
src/app/home/task/station-weekly-plan/task-details/task-details.component.ts

@ -39,6 +39,7 @@ export class TaskDetailsComponent implements OnInit {
}
}
});
this.data.passed += 1
},
error: (err) => {
this.message.create('warning', '接受失败');
@ -68,8 +69,10 @@ export class TaskDetailsComponent implements OnInit {
if (element.isExpand) {
this.parent.getTaskListOfStation(element)
}
}
});
this.data.passed -= 1
},
error: (err) => {
this.message.create('warning', '拒绝失败');

3
src/app/home/task/zhi-indicators/edit-or/edit-or.component.html

@ -3,13 +3,12 @@
<nz-form-item>
<nz-form-label [nzSm]="6" [nzXs]="24" nzRequired nzFor="协助机构">协助机构</nz-form-label>
<nz-form-control>
<nz-tree-select [nzShowSearch]='true' [nzDropdownClassName]="'maxHeightTreeSelect'"
<nz-tree-select #nzTreeComponent [nzShowSearch]='true' [nzDropdownClassName]="'maxHeightTreeSelect'"
formControlName="organization" [nzNodes]="newTree" nzPlaceHolder="请选择协助机构"
[nzExpandedIcon]="multiExpandedIconTpl" nzCheckable [nzCheckStrictly]="true">
</nz-tree-select>
<ng-template #multiExpandedIconTpl let-node let-origin="origin">
<ng-container *ngIf="node.children.length == 0; else elseTemplate">
</ng-container>
<ng-template #elseTemplate>
<i nz-icon [nzType]="node.isExpanded ? 'caret-down' : 'caret-right'"

12
src/app/home/task/zhi-indicators/edit-or/edit-or.component.ts

@ -1,10 +1,11 @@
import { Component, OnInit, Input } from '@angular/core';
import { Component, OnInit, Input, ViewChild } from '@angular/core';
import { NzModalRef } from 'ng-zorro-antd/modal';
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
import { HttpClient } from '@angular/common/http';
import { TreeService } from 'src/app/service/tree.service';
import { Observable, of } from 'rxjs';
import { catchError, map } from 'rxjs/operators';
import { NzTreeComponent } from 'ng-zorro-antd/tree';
@Component({
selector: 'app-edit-or',
@ -12,10 +13,11 @@ import { catchError, map } from 'rxjs/operators';
styleUrls: ['./edit-or.component.scss']
})
export class EditOrComponent implements OnInit {
@ViewChild('nzTreeComponent', { static: false }) nzTreeComponent!: NzTreeComponent;
@Input() selectedData?: any;
@Input() organizationList?: any;
@Input() users?: any;
@Input() supervisorList?: any;
validateForm!: FormGroup;
constructor(private modal: NzModalRef, private fb: FormBuilder, private http: HttpClient, private toTree: TreeService) { }
@ -26,11 +28,7 @@ export class EditOrComponent implements OnInit {
this.validateForm = this.fb.group({
organization: [this.selectedData]
});
console.log(111, this.users)
console.log(222, this.organizationList)
let arr = [...this.users, ...this.organizationList]
console.log(333, arr)
let arr = [...this.supervisorList, ...this.organizationList]
this.newTree = this.toTree.toTree(arr)
}

22
src/app/home/task/zhi-indicators/zhi-indicators.component.html

@ -120,9 +120,9 @@
<thead>
<tr>
<th nzWidth="25%">单位名称</th>
<th nzWidth="42%">配合机构</th>
<th nzWidth="40%">配合机构/人员</th>
<th nzWidth="25%">说明</th>
<th nzWidth="8%">操作</th>
<th nzWidth="10%">操作</th>
</tr>
</thead>
<tbody>
@ -134,6 +134,9 @@
<span *ngFor="let i of item.supervisors">
/{{i.name}}
</span>
<span *ngFor="let i of item.assitantOrganizations">
/{{i.name}}
</span>
</span>
<span class="blue" (click)="editOr(complaint,item)"
[ngClass]="{'forbid': item.approvalStatus == '通过'}">修改机构</span>
@ -268,9 +271,9 @@
<thead>
<tr>
<th nzWidth="25%">单位名称</th>
<th nzWidth="42%">配合机构</th>
<th nzWidth="40%">配合机构/人员</th>
<th nzWidth="25%">说明</th>
<th nzWidth="8%">操作</th>
<th nzWidth="10%">操作</th>
</tr>
</thead>
<tbody>
@ -282,6 +285,9 @@
<span *ngFor="let i of item.supervisors">
/{{i.name}}
</span>
<span *ngFor="let i of item.assitantOrganizations">
/{{i.name}}
</span>
</span>
<span class="blue" (click)="editOr(permission,item)"
[ngClass]="{'forbid': item.approvalStatus == '通过'}">修改机构</span>
@ -418,10 +424,10 @@
<tr>
<th nzWidth="18%">责任机构</th>
<th nzWidth="6%">任务额</th>
<th nzWidth="25%">单位名称</th>
<th nzWidth="23%">单位名称</th>
<th nzWidth="15%">监督员</th>
<th>说明</th>
<th nzWidth="8%">操作</th>
<th nzWidth="10%">操作</th>
</tr>
</thead>
<tbody>
@ -606,9 +612,9 @@
<tr>
<th nzWidth="25%">责任机构</th>
<th nzWidth="6%">任务额</th>
<th nzWidth="30%">单位名称</th>
<th nzWidth="32%">单位名称</th>
<th>说明</th>
<th nzWidth="8%">操作</th>
<th nzWidth="10%">操作</th>
</tr>
</thead>
<tbody>

34
src/app/home/task/zhi-indicators/zhi-indicators.component.ts

@ -298,6 +298,8 @@ export class ZhiIndicatorsComponent implements OnInit {
element.title = element.name
element.selectable = false
element.disableCheckbox = true
element.datatype = '机构'
element.level == 'squadron' ? element.disableCheckbox = false : null
});
this.allOrList = JSON.parse(JSON.stringify(data.items))
resolve(data)
@ -329,6 +331,8 @@ export class ZhiIndicatorsComponent implements OnInit {
})
})
}
editOr(incomingData, item) {
const modal = this.modal.create({
nzTitle: '修改协助机构',
@ -337,15 +341,23 @@ export class ZhiIndicatorsComponent implements OnInit {
nzWidth: 660,
nzMaskClosable: false,
nzComponentParams: {
selectedData: item.supervisorIds,
selectedData: [...item.supervisorIds, ...item.assitantOrganizationIds],
organizationList: JSON.parse(JSON.stringify(this.allOrList)),
users: JSON.parse(JSON.stringify(this.users)),
// users: JSON.parse(JSON.stringify(this.users)),
supervisorList: [...JSON.parse(JSON.stringify(this.assitantsupervisorList)), ...JSON.parse(JSON.stringify(this.mainsupervisorList))]
},
nzOnOk: async () => {
if (instance.validateForm.valid) {
await new Promise((resolve, reject) => {
console.log(instance.nzTreeComponent.getCheckedNodeList())
let supervisorIds = []
let assitantOrganizationIds = []
instance.nzTreeComponent.getCheckedNodeList().forEach(item => {
item.origin.datatype == '机构' ? assitantOrganizationIds.push(item.key) : supervisorIds.push(item.key)
})
let body = {
supervisorIds: instance.validateForm.value.organization,
supervisorIds: supervisorIds,
assitantOrganizationIds: assitantOrganizationIds
}
this.http.patch(`/api/PlanTasks/${item.id}`, body).subscribe({
next: async (data: any) => {
@ -370,6 +382,8 @@ export class ZhiIndicatorsComponent implements OnInit {
modal.afterOpen.subscribe(() => console.log('[afterOpen] emitted!'));
modal.afterClose.subscribe(result => console.log('[afterClose] The result is:', result));
}
orcheckbox(data, $event, node) {
if ($event) {
data.search2Value.push(node.origin.id)
@ -428,7 +442,9 @@ export class ZhiIndicatorsComponent implements OnInit {
})
});
this.getUsers()
// this.getUsers()
Promise.all([this.getCompanies(), this.getAllOrganization()])
.then((results) => {
let arr = [...JSON.parse(JSON.stringify(this.allOrList)), ...JSON.parse(JSON.stringify(this.unitList))]
@ -596,7 +612,7 @@ export class ZhiIndicatorsComponent implements OnInit {
}
ngOnDestroy(): void {
console.log('毁灭了')
// console.log('毁灭了')
// this.doubleRandom.isPopover = false
}
@ -650,6 +666,14 @@ export class ZhiIndicatorsComponent implements OnInit {
params: params
}).subscribe((data: any) => {
console.log('检查员列表', data)
data.forEach(element => {
element.parentId = element.organizationId
element.key = element.id
element.title = element.name
element.selectable = false
element.disableCheckbox = false
element.datatype = '人员'
});
if (type == 'main') {
this.mainsupervisorList = data
} else {

54
src/signalR.ts

@ -0,0 +1,54 @@
import * as signalR from '@microsoft/signalr'
export default {
SR: {},
// 初始化连接
initSR: function () {
const that = this
// // 连接 SignalR
const options: signalR.IHttpConnectionOptions = {
accessTokenFactory: async () => {
return sessionStorage.getItem('token')
}
}
// 1.获取系统中定义的baseURL
const url = '/hubs/notification'
// 2.初始化连接
that.SR = new signalR.HubConnectionBuilder()
.withUrl(url, options)
.configureLogging(signalR.LogLevel.Information)
.build();
// 3. 在停止signalR时,不让onclose内的 start执行
(that.SR as any).flag = true
// 4.启动连接的方法
async function start() {
try {
await (that.SR as any).start();
} catch (err) {
setTimeout(start, 5000);
}
}
// 5.关闭之后重连
(that.SR as any).onclose(async () => {
if ((that.SR as any).flag) {
await start();
}
});
// 6.启动连接
start();
},
// 停止连接,因为调用that.SR.stop(),同时会触发5操作,所以用了flag
stopSR: function () {
// const that = this
// (this.SR as any).flag = false
// async function stop() {
// try {
// await (this.SR as any).stop();
// } catch (err) {
// console.log(err)
// }
// }
this.signalR.stop();
}
};
Loading…
Cancel
Save