Browse Source

Merge branch 'master' of http://121.36.37.70:3000/shaojiahao/Jinan_project

非煤矿山灾害智能感知和预警系统
jingbowen 3 years ago
parent
commit
53eb856c45
  1. 4
      src/app/home/home.module.ts
  2. 2
      src/app/home/nav/nav.component.ts
  3. 10
      src/app/home/task/station-task-apply/apply-look/apply-look.component.html
  4. 8
      src/app/home/task/station-task-apply/apply/apply.component.html
  5. 15
      src/app/home/task/station-task-apply/apply/apply.component.ts
  6. 270
      src/app/home/task/station-task-apply/station-task-apply.component.html
  7. 172
      src/app/home/task/station-task-apply/station-task-apply.component.scss
  8. 257
      src/app/home/task/station-task-apply/station-task-apply.component.ts
  9. 288
      src/app/home/task/station-weekly-plan/station-weekly-plan.component.html
  10. 379
      src/app/home/task/station-weekly-plan/station-weekly-plan.component.scss
  11. 66
      src/app/home/task/station-weekly-plan/station-weekly-plan.component.ts
  12. 16
      src/app/home/task/task.component.html
  13. BIN
      src/assets/images/icon/inform.png
  14. 42
      src/styles.scss

4
src/app/home/home.module.ts

@ -59,6 +59,7 @@ import { ChangePasswordComponent } from './change-password/change-password.compo
import { NzUploadModule } from 'ng-zorro-antd/upload'; import { NzUploadModule } from 'ng-zorro-antd/upload';
import { NzCardModule } from 'ng-zorro-antd/card'; import { NzCardModule } from 'ng-zorro-antd/card';
import { PlanAdjustmentComponent } from './task/da-oneself-plan/plan-adjustment/plan-adjustment.component'; import { PlanAdjustmentComponent } from './task/da-oneself-plan/plan-adjustment/plan-adjustment.component';
import { NzToolTipModule } from 'ng-zorro-antd/tooltip';
@NgModule({ @NgModule({
declarations: [ declarations: [
NavComponent, NavComponent,
@ -123,7 +124,8 @@ import { PlanAdjustmentComponent } from './task/da-oneself-plan/plan-adjustment/
NzDatePickerModule, NzDatePickerModule,
NzSpinModule, NzSpinModule,
NzCardModule, NzCardModule,
NzUploadModule NzUploadModule,
NzToolTipModule
], ],
entryComponents: [AddroleComponent, EditroleComponent, AdduserComponent, EdituserComponent, AddorComponent, EditorComponent, ApplyComponent, ApplyLookComponent, LookTaskComponent, AllotPersonComponent] entryComponents: [AddroleComponent, EditroleComponent, AdduserComponent, EdituserComponent, AddorComponent, EditorComponent, ApplyComponent, ApplyLookComponent, LookTaskComponent, AllotPersonComponent]
}) })

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

@ -17,7 +17,7 @@ export class NavComponent implements OnInit {
ngOnInit(): void { ngOnInit(): void {
//调用服务中的function刷新token //调用服务中的function刷新token
this.token.startUp() this.token.startUp()
this.user=JSON.parse(sessionStorage.getItem('userData')).organizationName this.user=JSON.parse(sessionStorage.getItem('userData')).name
} }
signOut() { signOut() {
this.router.navigate(['/login']) this.router.navigate(['/login'])

10
src/app/home/task/station-task-apply/apply-look/apply-look.component.html

@ -2,5 +2,13 @@
<p>任务名称: {{data.taskName}}</p> <p>任务名称: {{data.taskName}}</p>
<p>单位名称: {{data.company.companyName}}</p> <p>单位名称: {{data.company.companyName}}</p>
<p>协助机构: {{data.assitantOrganization.name}}</p> <p>协助人员:
<span *ngFor="let i of data.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>
</p>
</div> </div>

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

@ -3,7 +3,9 @@
<nz-form-item> <nz-form-item>
<nz-form-label [nzSm]="6" [nzXs]="24" nzRequired nzFor="账号">任务名称</nz-form-label> <nz-form-label [nzSm]="6" [nzXs]="24" nzRequired nzFor="账号">任务名称</nz-form-label>
<nz-form-control> <nz-form-control>
<label nz-radio formControlName="taskname">{{title}}</label> <nz-radio-group formControlName="taskname">
<label nz-radio [nzValue]="item" *ngFor="let item of title">{{item}}</label>
</nz-radio-group>
</nz-form-control> </nz-form-control>
</nz-form-item> </nz-form-item>
<nz-form-item> <nz-form-item>
@ -22,8 +24,8 @@
<nz-form-label [nzSm]="6" [nzXs]="24" nzRequired nzFor="协助机构">协助机构</nz-form-label> <nz-form-label [nzSm]="6" [nzXs]="24" nzRequired nzFor="协助机构">协助机构</nz-form-label>
<nz-form-control> <nz-form-control>
<nz-tree-select [nzShowSearch]='true' [nzDropdownClassName]="'maxHeightTreeSelect'" <nz-tree-select [nzShowSearch]='true' [nzDropdownClassName]="'maxHeightTreeSelect'"
formControlName="organization" [nzNodes]="nodes" nzPlaceHolder="请选择协助机构" formControlName="organization" [nzNodes]="newTree" nzPlaceHolder="请选择协助机构"
[nzExpandedIcon]="multiExpandedIconTpl"> [nzExpandedIcon]="multiExpandedIconTpl" nzCheckable [nzCheckStrictly]="true">
</nz-tree-select> </nz-tree-select>
<ng-template #multiExpandedIconTpl let-node let-origin="origin"> <ng-template #multiExpandedIconTpl let-node let-origin="origin">
<ng-container *ngIf="node.children.length == 0; else elseTemplate"> <ng-container *ngIf="node.children.length == 0; else elseTemplate">

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

@ -11,18 +11,26 @@ import { catchError, map } from 'rxjs/operators';
styleUrls: ['./apply.component.scss'] styleUrls: ['./apply.component.scss']
}) })
export class ApplyComponent implements OnInit { export class ApplyComponent implements OnInit {
@Input() title?: string; @Input() title?: any;
@Input() nodes?: any; @Input() nodes?: any;
@Input() supervisorList?: any;
@Input() organizationList?: any;
@Input() users?: any;
validateForm!: FormGroup; validateForm!: FormGroup;
constructor(private modal: NzModalRef, private fb: FormBuilder, private http: HttpClient, private toTree: TreeService) { } constructor(private modal: NzModalRef, private fb: FormBuilder, private http: HttpClient, private toTree: TreeService) { }
newTree
ngOnInit(): void { ngOnInit(): void {
this.validateForm = this.fb.group({ this.validateForm = this.fb.group({
taskname: [true, [Validators.required]], taskname: [null, [Validators.required]],
unitname: [null, [Validators.required]], unitname: [null, [Validators.required]],
organization: [null, [Validators.required]] organization: [null, [Validators.required]]
}); });
// let arr = [...this.supervisorList, ...this.organizationList]
// this.newTree = this.toTree.toTree(arr)
this.newTree = this.nodes
} }
destroyModal(): void { destroyModal(): void {
@ -77,6 +85,5 @@ export class ApplyComponent implements OnInit {
}) })
}) })
} }
} }

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

@ -1,111 +1,181 @@
<!-- <p>任务申请</p> --> <!-- <p>任务申请</p> -->
<div class="box"> <div class="box">
<div class="informbox">
<div class="fffbox"> <div class="inform">
<div class="header"> <div class="informleft">
<span> <img src="../../../../assets/images/icon/inform.png" alt="">
任务申请 通知播报:
</span> </div>
<span style="font-size: 14px; color: #42B983;"> <div class="informright" id="container" (mouseenter)="mouseEnter()" (mouseleave)="mouseleave()">
<i nz-icon nzType="info-circle" nzTheme="outline"></i> <div id="list-wrapper" style="top: 0">
任务申请已开始!剩余时间 3天13小时 / 生成周计划已开始!剩余时间 23:54:03 <ul class="notice-list" id="notice-list">
</span> <li class="info" *ngFor="let item of messageList;let key = index">
</div> <div class="infoitem">
<div class="searchbox"> 您有一条新的信息!
<div class="search"> </div>
<nz-select nzPlaceHolder="任务名称" [(ngModel)]="searchForm.taskname"> </li>
<nz-option nzValue="监督检查" nzLabel="监督检查"></nz-option> </ul>
<nz-option nzValue="熟悉演练" nzLabel="熟悉演练"></nz-option> <ul class="notice-list" id="notice-list-2">
</nz-select> </ul>
<input type="text" nz-input placeholder="单位名称" [(ngModel)]="searchForm.unitname" /> </div>
<!-- <nz-select nzPlaceHolder="单位级别" [(ngModel)]="searchForm.unitlevel">
<nz-option nzValue="一般单位" nzLabel="一般单位"></nz-option>
<nz-option nzValue="重点单位" nzLabel="重点单位"></nz-option>
</nz-select> -->
<nz-tree-select [nzExpandedKeys]="expandKeys" [nzNodes]="nodes" nzShowSearch nzPlaceHolder="协助机构"
[(ngModel)]="searchForm.or" [nzExpandedIcon]="multiExpandedIconTpl"
[nzDropdownClassName]="'maxHeightTreeSelect'" [nzAllowClear]="false"></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'"
class="ant-tree-switcher-line-icon"></i>
</ng-template>
</ng-template>
<button (click)="search()" nz-button nzType="primary"><i nz-icon nzType="search"
nzTheme="outline"></i>查询</button>
<button (click)="reset()" nz-button nzType="default"><i nz-icon nzType="reload"
nzTheme="outline"></i>重置</button>
</div> </div>
</div> </div>
<div class="content"> </div>
<div class="applybtn"> <div class="timebox">
<button (click)="apply()" nz-button nzType="primary"><i nz-icon nzType="form" <nz-select [(ngModel)]="selectedYear" (ngModelChange)="selectYear($event)">
nzTheme="outline"></i>申请</button> <nz-option [nzValue]="2021" nzLabel="2021年"></nz-option>
<nz-option [nzValue]="2022" nzLabel="2022年"></nz-option>
</nz-select>
<div *ngFor="let item of months" class="monthbtn" (click)="selectMonth(item)"
[ngClass]="{'selectedMonth': item.id == selectedMonth}">
{{item.name}}
</div>
</div>
<div class="contentbox">
<div class="fffbox">
<div class="spin" *ngIf="isloading">
<nz-spin nzSimple></nz-spin>
</div>
<div class="header">
<span>
任务申请
</span>
<span style="font-size: 14px; color: #42B983;">
<i nz-icon nzType="info-circle" nzTheme="outline"></i>
任务申请已开始!剩余时间 3天13小时 / 生成周计划已开始!剩余时间 23:54:03
</span>
</div>
<div class="searchbox">
<div class="search">
<nz-select nzPlaceHolder="任务名称" [(ngModel)]="searchForm.taskname" nzAllowClear>
<nz-option nzValue="监督检查" nzLabel="监督检查"></nz-option>
<nz-option nzValue="熟悉演练" nzLabel="熟悉演练"></nz-option>
</nz-select>
<input type="text" nz-input placeholder="单位名称" [(ngModel)]="searchForm.unitname" nzAllowClear />
<!-- <nz-select nzPlaceHolder="单位级别" [(ngModel)]="searchForm.unitlevel">
<nz-option nzValue="一般单位" nzLabel="一般单位"></nz-option>
<nz-option nzValue="重点单位" nzLabel="重点单位"></nz-option>
</nz-select> -->
<nz-tree-select [nzExpandedKeys]="expandKeys" [nzNodes]="nodes" nzShowSearch nzPlaceHolder="协助机构"
[(ngModel)]="searchForm.or" [nzExpandedIcon]="multiExpandedIconTpl"
[nzDropdownClassName]="'maxHeightTreeSelect'" nzAllowClear>
</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'"
class="ant-tree-switcher-line-icon"></i>
</ng-template>
</ng-template>
<button (click)="search()" nz-button nzType="primary"><i nz-icon nzType="search"
nzTheme="outline"></i>查询</button>
<button (click)="reset()" nz-button nzType="default"><i nz-icon nzType="reload"
nzTheme="outline"></i>重置</button>
</div>
</div> </div>
<div class="tablebox"> <div class="content">
<nz-table nzBordered #basicTable [nzLoading]="nzLoading" [nzData]="taskLIst" [nzShowPagination]='false' <div class="applybtn">
[nzPageSize]='10'> <button (click)="apply()" nz-button nzType="primary"><i nz-icon nzType="form"
<thead> nzTheme="outline"></i>申请</button>
<tr> </div>
<th [width]="'15%'">任务名称</th> <div class="tablebox">
<th [width]="'20%'">单位名称</th> <div class="tableboxitem" *ngFor="let item of taskLIst"
<!-- <th>单位级别</th> --> [ngClass]="{'greenborder': item.approvalStatus == '通过','redborder': item.approvalStatus == '驳回'}">
<th>协助机构</th> <div class="flexcol tasknamebox">
<th>时间</th> <span>
<th>申请结果</th>
<th>检查结果</th>
<th [width]="'8%'">操作</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let item of basicTable.data">
<td>
{{item.taskName}} {{item.taskName}}
</td> </span>
<td nzBreakWord> <span>
任务名称
</span>
</div>
<div class="flexcol unitnamebox">
<span>
{{item.company.companyName}} {{item.company.companyName}}
</td> </span>
<!-- <td> <span>
一般单位 单位名称
</td> --> </span>
<td> </div>
{{item.assitantOrganization.name}} <div class="flexcol">
</td> <span>
<td> {{item.company.useNature}}
{{item.creationTime | date:"yyyy-MM-dd hh:mm:ss"}} </span>
</td> <span>
<td> 级别
<ng-container *ngIf="item.approvalStatus; else elseTemplate"> </span>
<ng-container *ngIf="item.approvalStatus == 'reject'; else elseTemplate2"> </div>
<span class="green">审核驳回</span> <div class="flexcol">
</ng-container> <span>
<ng-template #elseTemplate2> {{item.organization.name}}
<span class="red">审核通过</span> </span>
</ng-template> <span>
</ng-container> 主负责人
<ng-template #elseTemplate> </span>
未审核 </div>
</ng-template> <div class="flexcol flexcolassistant">
</td> <span class="assistant" nz-tooltip [nzTooltipTitle]="titleTemplate">
<td> <span *ngFor="let i of item.supervisors">
/ <img *ngIf="i.posts && i.posts[0] == '主查人员'" src="../../../../assets/images/icon/main.png"
</td> alt="">
<td class="operation"> <img *ngIf="i.posts && i.posts[0] == '协查人员'" src="../../../../assets/images/icon/assist.png"
<a class="blue" (click)="look(item)">查看</a> alt="">
</td> {{i.name}}
</tr> </span>
</tbody> </span>
</nz-table> <ng-template #titleTemplate let-thing>
</div> <span style="margin-right: 6px;" *ngFor="let i of item.supervisors">
<div class="pagination"> <img *ngIf="i.posts && i.posts[0] == '主查人员'" src="../../../../assets/images/icon/main.png"
<nz-pagination [nzHideOnSinglePage]="false" [nzPageIndex]="1" [nzTotal]="totalCount" [nzPageSize]="10" alt="">
[nzShowTotal]="totalTemplate" nzShowQuickJumper (nzPageIndexChange)="pageChange($event)"> <img *ngIf="i.posts && i.posts[0] == '协查人员'" src="../../../../assets/images/icon/assist.png"
</nz-pagination> alt="">
<ng-template #totalTemplate let-total> 10条/页,共{{totalCount}}条 </ng-template> {{i.name}}
</span>
</ng-template>
<span>
协助人员
</span>
</div>
<div class="flexcol">
<span>
宣传
</span>
<span>
同步工作
</span>
</div>
<div class="flexcol">
<span>
<img *ngIf="item.approvalStatus == '通过'" src="../../../../assets/images/icon/agree.png"
alt="">
<img *ngIf="item.approvalStatus == '驳回'" src="../../../../assets/images/icon/reject.png"
alt="">
<span *ngIf="item.approvalStatus == '待处理'">待处理</span>
</span>
<span>
结果
</span>
</div>
<div class="flexcol">
<span class="blue" (click)="look(item)">
查看
</span>
<span>
操作
</span>
</div>
</div>
</div>
<div class="pagination">
<nz-pagination [nzHideOnSinglePage]="false" [nzPageIndex]="1" [nzTotal]="totalCount"
[nzPageSize]="10" [nzShowTotal]="totalTemplate" nzShowQuickJumper
(nzPageIndexChange)="pageChange($event)">
</nz-pagination>
<ng-template #totalTemplate let-total> 10条/页,共{{totalCount}}条 </ng-template>
</div>
</div> </div>
</div> </div>
</div> </div>
</div> </div>

172
src/app/home/task/station-task-apply/station-task-apply.component.scss

@ -1,13 +1,87 @@
.box { .box {
width: 100%; width: 100%;
height: 100%; height: 100%;
color: #303133; color: #303133;
box-sizing: border-box; display: flex;
padding: 20px; flex-direction: column;
overflow: hidden;
.informbox {
width: 100%;
height: 60px;
box-sizing: border-box;
padding: 10px 20px;
padding-bottom: 0px;
.inform {
width: 100%;
height: 100%;
background: #FFFFFF;
border-radius: 0px 0px 0px 0px;
opacity: 1;
display: flex;
.informleft {
height: 100%;
display: flex;
align-items: center;
margin-right: 20px;
img {
margin: 0 20px;
}
}
.informright {
flex: 1;
}
}
}
.timebox {
width: 100%;
height: 68px;
box-sizing: border-box;
display: flex;
align-items: center;
border-bottom: 1px dashed #C7CAD0;
padding: 0 20px;
nz-select {
margin-right: 16px;
border-radius: 4px 4px 4px 4px;
}
.monthbtn {
width: 80px;
height: 32px;
line-height: 32px;
background: #FFFFFF;
border-radius: 4px 4px 4px 4px;
opacity: 1;
border: 1px solid #E4E7EC;
color: #303133;
margin-right: 16px;
cursor: pointer;
}
.selectedMonth {
background: #2C4DC0;
color: #FFFFFF;
}
}
.contentbox {
flex: 1;
box-sizing: border-box;
padding: 20px;
position: relative;
overflow: hidden;
}
.fffbox { .fffbox {
position: relative;
width: 100%; width: 100%;
height: 100%; height: 100%;
background: #FFFFFF; background: #FFFFFF;
@ -17,6 +91,7 @@
border: 1px solid #E4E7EC; border: 1px solid #E4E7EC;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
overflow: hidden;
} }
@ -70,12 +145,103 @@
padding-top: 0px; padding-top: 0px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
overflow-y: auto;
.applybtn { .applybtn {
align-self: flex-start; align-self: flex-start;
margin: 18px 0; margin: 18px 0;
} }
.tablebox {
flex: 1;
display: flex;
flex-direction: column;
.tableboxitem {
display: flex;
align-items: center;
box-sizing: border-box;
padding: 22px 20px;
border: 1px solid #C7CAD0;
justify-content: space-around;
padding-left: 80px;
margin-bottom: 10px;
div {
flex: 1;
span {
display: inline-block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
height: 33px;
line-height: 33px;
text-align: left;
img {
width: 32px;
height: 32px;
}
}
}
.flexcol {
display: flex;
flex-direction: column;
align-items: flex-start;
margin-right: 3%;
span:nth-child(1) {
color: #303133;
// margin-bottom: 8px;
}
span:nth-child(2) {
color: #C7CAD0;
}
}
.flexcolassistant {
flex: 2;
overflow: hidden;
.assistant {
display: flex;
width: 100%;
span {
color: #303133;
margin-right: 6px;
}
img {
width: 16px;
height: 16px;
vertical-align: text-bottom;
}
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
.unitnamebox {
flex: 3;
}
}
.greenborder {
border: 1px solid #42B983;
}
.redborder {
border: 1px solid #FF9203;
}
}
.operation { .operation {
a { a {
margin-right: 16px; margin-right: 16px;

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

@ -3,10 +3,12 @@ import { FormBuilder, FormGroup, Validators } from '@angular/forms';
import { NzFormatEmitEvent, NzTreeComponent, NzTreeNodeOptions } from 'ng-zorro-antd/tree'; import { NzFormatEmitEvent, NzTreeComponent, NzTreeNodeOptions } from 'ng-zorro-antd/tree';
import { NzModalService } from 'ng-zorro-antd/modal'; import { NzModalService } from 'ng-zorro-antd/modal';
import { NzMessageService } from 'ng-zorro-antd/message'; import { NzMessageService } from 'ng-zorro-antd/message';
import { HttpClient } from '@angular/common/http'; import { HttpClient, HttpHeaders } from '@angular/common/http';
import { TreeService } from 'src/app/service/tree.service'; import { TreeService } from 'src/app/service/tree.service';
import { ApplyComponent } from './apply/apply.component'; import { ApplyComponent } from './apply/apply.component';
import { ApplyLookComponent } from './apply-look/apply-look.component'; import { ApplyLookComponent } from './apply-look/apply-look.component';
import { ThisReceiver } from '@angular/compiler';
@Component({ @Component({
selector: 'app-station-task-apply', selector: 'app-station-task-apply',
@ -24,12 +26,36 @@ export class StationTaskApplyComponent implements OnInit {
or: '' or: ''
} }
OrganizationId OrganizationId
ngOnInit(): void {
this.OrganizationId = JSON.parse(sessionStorage.getItem('userData')).organizationId isSupervisor: boolean //是否为检查员
this.getAllOrganization()
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.getTaskList()
}
selectYear(e) {
this.selectedYear = e
console.log('年', e)
this.getTaskList() this.getTaskList()
} }
cancel(item, type) { cancel(item, type) {
@ -38,30 +64,34 @@ export class StationTaskApplyComponent implements OnInit {
} }
nzLoading = false isloading = false
totalCount totalCount
PageNumber = 1 PageNumber = 1
PageSize = 10 PageSize = 10
taskLIst = [] taskLIst = []
getTaskList() { getTaskList() {
this.nzLoading = true this.isloading = true
let selectedTime = this.selectedYear + '-' + this.selectedMonth + '-' + '01'
let params = { let params = {
Month: selectedTime,
OrganizationId: this.OrganizationId, OrganizationId: this.OrganizationId,
TaskName: this.searchForm.taskname, TaskName: this.searchForm.taskname,
CompanyName: this.searchForm.unitname, CompanyName: this.searchForm.unitname,
AssitantOrganizationId: this.searchForm.or, AssitantOrganizationId: this.searchForm.or,
PageNumber: this.PageNumber, PageNumber: this.PageNumber,
CreatorId: this.userId,
PageSize: this.PageSize PageSize: this.PageSize
} }
this.http.get('/api/PlanTasks', { this.http.get('/api/PlanTasks', {
params: params params: params
}).subscribe((data: any) => { }).subscribe((data: any) => {
this.nzLoading = false this.isloading = false
console.log('任务申请列表', data); console.log('任务申请列表', data);
this.totalCount = data.totalCount this.totalCount = data.totalCount
this.taskLIst = [...data.items] this.taskLIst = [...data.items]
}) })
} }
pageChange($event) { pageChange($event) {
this.PageNumber = $event this.PageNumber = $event
this.getTaskList() this.getTaskList()
@ -85,26 +115,149 @@ export class StationTaskApplyComponent implements OnInit {
expandKeys expandKeys
defaultOrId: string defaultOrId: string
//获取所有组织机构 //获取所有组织机构
organizationList: any
organizationListAll: any
nodes: any = [] nodes: any = []
getAllOrganization() { async getAllOrganization() {
let params = { let params = {
PageNumber: 1, PageNumber: 1,
PageSize: 9999 PageSize: 9999
} }
this.http.get('/api/Organizations', { var p = new Promise<void>((resolve, reject) => {
params: params this.http.get('/api/Organizations', {
}).subscribe((data: any) => { params: params
data.items.forEach(element => { }).subscribe((data: any) => {
element.key = element.id data.items.forEach(element => {
element.title = element.name element.key = element.id
}); element.title = element.name
this.nodes = [...this.toTree.toTree(data.items)] element.disableCheckbox = true
element.selectable = false
});
this.organizationListAll = JSON.parse(JSON.stringify(data.items))
this.organizationList = JSON.parse(JSON.stringify(data.items)).filter(item => {
return item.level != 'squadron'
})
resolve(data)
})
})
return p
}
//获得所有检查员
supervisorList = []
mainsupervisorList = []
assitantsupervisorList = []
async getSupervisor() {
var p = new Promise<void>((resolve, reject) => {
this.http.get('/api/Users/Inspectors').subscribe((data: any) => {
console.log('检查员列表', data)
data.forEach(element => {
element.key = element.id
element.title = element.name
element.parentId = element.organizationId
});
this.supervisorList = data
resolve(data)
})
})
return p
}
//获得除了检查员的其他用户
users
async getUsers() {
var p = new Promise<void>((resolve, reject) => {
let params = {
OrganizationId: this.OrganizationId,
OrganizationLevel: 'squadron',
ContainsChildren: true,
PageNumber: 1,
PageSize: 9999
}
this.http.get('/api/Users', {
params: params
}).subscribe((data: any) => {
console.log('用户列表', data.items)
data.items.forEach(element => {
element.key = element.id
element.title = element.name
element.parentId = element.organizationId
});
this.users = data.items
resolve(data)
})
}) })
return p
}
userId
ngOnInit(): void {
this.OrganizationId = JSON.parse(sessionStorage.getItem('userData')).organizationId
this.userId = JSON.parse(sessionStorage.getItem('userData')).id
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.getTaskList()
Promise.all([this.getAllOrganization(), this.getSupervisor(), this.getUsers()])
.then((results) => {
if (this.isSupervisor) {
let arr = [...this.users, ...this.organizationListAll]
this.nodes = this.toTree.toTree(JSON.parse(JSON.stringify(arr)))
} else {
let arr = [...this.supervisorList, ...this.organizationList]
this.nodes = this.toTree.toTree(JSON.parse(JSON.stringify(arr)))
}
});
this.rollStart()
}
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() {
// console.log('进入了')
window.clearInterval(this.timer);
}
mouseleave() {
this.rollStart()
} }
apply() { apply() {
if (this.nodes.length == 0) { if (this.nodes.length == 0) {
this.message.create('warning', '组织机构初始化中,请稍后重试'); this.message.create('warning', '组织机构为空,请稍后重试');
return
}
if (this.supervisorList.length == 0) {
this.message.create('warning', '检查员名单为空,请稍后重试');
return return
} }
const modal = this.modal.create({ const modal = this.modal.create({
@ -114,17 +267,23 @@ export class StationTaskApplyComponent implements OnInit {
nzWidth: 660, nzWidth: 660,
nzMaskClosable: false, nzMaskClosable: false,
nzComponentParams: { nzComponentParams: {
title: "熟悉演练", title: this.isSupervisor ? ["联络指导", "双随机"] : ["熟悉演练"],
nodes: this.nodes, supervisorList: JSON.parse(JSON.stringify(this.supervisorList)),
organizationList: JSON.parse(JSON.stringify(this.organizationList)),
users: JSON.parse(JSON.stringify(this.users)),
nodes: JSON.parse(JSON.stringify(this.nodes))
}, },
nzOnOk: async () => { nzOnOk: async () => {
console.log(instance.validateForm.value)
if (instance.validateForm.valid) { if (instance.validateForm.valid) {
await new Promise((resolve, reject) => { await new Promise((resolve, reject) => {
let body = { let body = {
organizationId: this.OrganizationId, taskName: instance.validateForm.value.taskname,
taskName: "联络指导", taskType: instance.validateForm.value.taskname,
companyId: instance.validateForm.value.unitname, companyId: instance.validateForm.value.unitname,
assitantOrganizationId: instance.validateForm.value.organization, organizationId: this.OrganizationId,
supervisorIds: instance.validateForm.value.organization,
approvalStatus: '待处理'
} }
this.http.post('/api/PlanTasks', body).subscribe({ this.http.post('/api/PlanTasks', body).subscribe({
next: (data) => { next: (data) => {
@ -150,6 +309,8 @@ export class StationTaskApplyComponent implements OnInit {
modal.afterOpen.subscribe(() => console.log('[afterOpen] emitted!')); modal.afterOpen.subscribe(() => console.log('[afterOpen] emitted!'));
modal.afterClose.subscribe(result => console.log('[afterClose] The result is:', result)); modal.afterClose.subscribe(result => console.log('[afterClose] The result is:', result));
} }
look(item) { look(item) {
const modal = this.modal.create({ const modal = this.modal.create({
nzTitle: '详情', nzTitle: '详情',
@ -160,39 +321,29 @@ export class StationTaskApplyComponent implements OnInit {
nzComponentParams: { nzComponentParams: {
data: item, data: item,
}, },
nzFooter: null, nzFooter: null
nzOnOk: async () => {
if (instance.validateForm.valid) {
await new Promise(resolve => {
let roleNames = [...instance.validateForm.value.role, ...instance.validateForm.value.role2]
let body = {
userName: instance.validateForm.value.account,
name: instance.validateForm.value.name,
organizationUnitId: Number(instance.validateForm.value.organization),
roleNames: roleNames,
phoneNumber: instance.validateForm.value.phonenum,
isActive: true
}
// this.http.post(this.addUrl, body).subscribe(data => {
// resolve(data)
// this.message.create('success', '创建成功!');
// this.SkipCount = 0
// this.getAllUsers()
// return true
// }, err => {
// resolve(err)
// this.message.create('warning', err.error.error.message);
// return false
// })
})
} else {
this.message.create('warning', '请填写完整!');
return false
}
}
}); });
const instance = modal.getContentComponent(); const instance = modal.getContentComponent();
modal.afterOpen.subscribe(() => console.log('[afterOpen] emitted!')); modal.afterOpen.subscribe(() => console.log('[afterOpen] emitted!'));
modal.afterClose.subscribe(result => console.log('[afterClose] The result is:', result)); modal.afterClose.subscribe(result => console.log('[afterClose] The result is:', result));
} }
}
export enum ApprovalStatus {
= 0,
= 1,
= 2,
= 3,
= 4,
= 5,
} }
export enum TaskType {
,
,
,
,
,
,
}

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

@ -1,60 +1,242 @@
<!-- <p>生成周计划</p> --> <!-- <p>生成周计划</p> -->
<div class="box weeklyplan"> <div class="box">
<div class="fffbox"> <div class="timebox">
<div class="header"> <nz-select ngModel="2022">
<span> <nz-option nzValue="2021" nzLabel="2021年"></nz-option>
申请周计划 <nz-option nzValue="2022" nzLabel="2022年"></nz-option>
</span> </nz-select>
<span style="font-size: 14px; color: #42B983;"> <div *ngFor="let item of months" class="monthbtn" (click)="selectMonth(item)"
<i nz-icon nzType="info-circle" nzTheme="outline"></i> [ngClass]="{'selectedMonth': item.name == selectedMonth}">
任务申请已开始!剩余时间 3天13小时 / 生成周计划已开始!剩余时间 23:54:03 {{item.name}}
</span>
</div> </div>
<div class="content"> </div>
<div class="tablebox">
<nz-table nzBordered #basicTable [nzLoading]="loading" [nzData]="usersLIst" [nzShowPagination]='false' <div style="flex: 1;overflow-y: auto;">
[nzPageSize]='16'> <!-- 上部仪表盘 -->
<thead> <div class="instrumentpanelbox">
<tr> <div class="instrumentpanelheader">
<th [width]="'10%'">任务类型</th> <span>本级部署</span>
<th [width]="'25%'">单位名称</th> <span (click)="expand()" class="expand blue">
<th>单位级别</th> {{isExpand ? '收起' :'展开'}}
<th>检查人</th> <i nz-icon [nzType]="isExpand ? 'down' : 'up'" nzTheme="outline"></i>
<th>消防负责人</th> </span>
<th>联系电话</th> </div>
<th [width]="'15%'">操作</th> <div class="instrumentpanel">
</tr> <div class="instrumentpanelitem" *ngFor="let item of cardData"
</thead> [ngClass]="{'instrumentpanelitemopen': isExpand,'instrumentpanelitemclose': !isExpand}">
<tbody> <div class="itemone" *ngIf="!item.isDetails">
<tr *ngFor="let item of basicTable.data"> <div class="instrumentpanelitemleft">
<td>双随机</td> <div class="panelheadername" [style]="'background:'+ item.background">
<td nzBreakWord>上海雅特酒店管理有限公司济南泺文路分公司</td> <img [src]="'../../../../assets/images/icon/'+ item.icon" alt="">
<td> {{item.name}}
一般单位 </div>
</td> <div class="tasknum">
<td> <p>
张三三 <span style="margin-right: 6px;">任务分配</span>
</td> <i (click)="openDetails(item,true)"
<td> style="vertical-align: text-top;cursor: pointer;" nz-icon nzType="right-circle"
张三三 nzTheme="outline"></i>
</td> </p>
<td> <p style="font-weight: 900;font-size: 36px;text-align: left;">5/9</p>
15022667845 </div>
</td> <button *ngIf="isExpand" nz-button class="btn">一键通过</button>
<td class="operation"> </div>
<!-- <span>检查时间 </span> --> <div class="instrumentpanelitemright" *ngIf="isExpand">
<nz-date-picker nzPlaceHolder="请选择检查日期" nzBorderless></nz-date-picker> <nz-progress [nzPercent]="75" nzType="circle" [nzFormat]="formatOne"
</td> nzStrokeColor="#42B983">
</tr> </nz-progress>
</tbody> </div>
</nz-table> </div>
<div class="itemtwo" *ngIf="item.isDetails">
<p class="itemtwotitle">
<span>{{item.name}}</span>
<span class="back" (click)="openDetails(item,false)"><i nz-icon nzType="rollback"
nzTheme="outline"></i>返回</span>
</p>
<div class="itemtwocontent">
<div class="itemtwocontentitem">
<p class="itemtwocontentitemp1">
<span class="itemtwocontentitemp1name">济南历下森豪室内娱乐场</span>
<span>
<span class="green" style="margin-right: 5px;" *ngIf="isExpand">接受</span>
<span class="blue" *ngIf="isExpand">拒绝</span>
</span>
</p>
<p>A消防救援站</p>
<p>
<span class="green" style="margin-right: 5px;" *ngIf="!isExpand">接受</span>
<span class="blue" *ngIf="!isExpand">拒绝</span>
</p>
</div>
</div>
</div>
</div>
</div> </div>
<div class="pagination"> </div>
<nz-pagination [nzHideOnSinglePage]="false" [nzPageIndex]="1" [nzTotal]="usersNum" [nzPageSize]="16"
[nzShowTotal]="totalTemplate" nzShowQuickJumper (nzPageIndexChange)="pageChange($event)"> <!-- 救援站列表 -->
</nz-pagination> <div class="stationcardlistbox">
<ng-template #totalTemplate let-total> 16条/页,共{{usersNum}}条 </ng-template> <div class="stationcardlistitembox" *ngFor="let item of stationData">
<div class="stationcardlistitem">
<div class="header">
<span style="width: 16%;">
<img src="../../../../assets//images/icon/station.png" alt="">
{{item.name}}
</span>
<span style="width: 8%;">单位总数: 7/8</span>
<div style="width: 66%;" class="progress progresssquare">
<span>完成进度</span>
<nz-progress nzStrokeLinecap="square" nzStrokeWidth="16" nzStrokeColor="#42B983"
[nzPercent]="30"></nz-progress>
</div>
<button nz-button nzType="primary">任务下派</button>
<span (click)="expandcarditem(item)" class="expand blue">
{{item.isExpand ? '收起' :'展开'}}
<i nz-icon [nzType]="item.isExpand ? 'down' : 'up'" nzTheme="outline"></i>
</span>
</div>
<div class="maincontent" *ngIf="item.isExpand">
<div class="maincontentitem">
<div class="maincontentitemleft">
<div class="panelheadername panelheadernameor">
<img src="'../../../../assets/images/icon/huodong.png" alt="">
重大活动
</div>
<div class="num">
<div class="round" style="background: #2C4DC0;"></div>
<span class="word">已分配</span>
<span class="boldspan">1</span>
</div>
<div class="num">
<div class="round" style="background: #42B983;"></div>
<span class="word">已完成</span>
<span class="boldspan">1</span>
</div>
</div>
<div class="maincontentitemright">
<div class="maincontentitemrightitem">
<div class="flexcol namebox">
<span>
尬粒酒店管理有限公司济南泺文路分公司
</span>
<span>
单位名称
</span>
</div>
<div class="flexcol">
<span>
重点单位
</span>
<span>
级别
</span>
</div>
<div class="flexcol">
<span>
历下区A消防救援站
</span>
<span>
责任机构
</span>
</div>
<div class="flexcol">
<span>
历下区B消防救援站
</span>
<span>
协助机构
</span>
</div>
<div class="flexcol">
<span>
<label nz-radio ngModel [ngModel]="xxx"
(click)="radioChange($event)">宣传</label>
</span>
<span>
同步工作
</span>
</div>
<div class="flexcol progressbox progresssquare">
<span>
<nz-progress style="width: 200px;" nzStrokeLinecap="square"
nzStrokeWidth="16" nzStrokeColor="#42B983" [nzPercent]="30">
</nz-progress>
</span>
<span>
进度
</span>
</div>
<div class="btnbox">
<button nz-button nzType="primary">提交审核</button>
<button style="margin-left: 12px;" nz-button nzType="primary">取消</button>
</div>
</div>
<div class="maincontentitemrightitem">
<div class="flexcol namebox">
<span>
尬粒酒店管理有限公司济南泺文路分公司
</span>
<span>
单位名称
</span>
</div>
<div class="flexcol">
<span>
重点单位
</span>
<span>
级别
</span>
</div>
<div class="flexcol">
<span>
历下区A消防救援站
</span>
<span>
责任机构
</span>
</div>
<div class="flexcol">
<span>
历下区B消防救援站
</span>
<span>
协助机构
</span>
</div>
<div class="flexcol">
<span>
<label nz-radio ngModel [ngModel]="xxx"
(click)="radioChange($event)">宣传</label>
</span>
<span>
同步工作
</span>
</div>
<div class="flexcol progressbox progresssquare">
<span>
<nz-progress style="width: 200px;" nzStrokeLinecap="square"
nzStrokeWidth="16" nzStrokeColor="#42B983" [nzPercent]="30">
</nz-progress>
</span>
<span>
进度
</span>
</div>
<div class="btnbox">
<button nz-button nzType="primary">提交审核</button>
<button style="margin-left: 12px;" nz-button nzType="primary">取消</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div> </div>
</div> </div>
<!-- -->
<div class="cutoffrule"></div>
</div> </div>
</div> </div>

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

@ -1,52 +1,383 @@
.box { .box {
width: 100%; width: 100%;
height: 100%; height: 100%;
display: flex;
flex-direction: column;
overflow: hidden;
}
color: #303133; .timebox {
width: 100%;
height: 68px;
box-sizing: border-box; box-sizing: border-box;
padding: 20px; padding: 0 20px;
display: flex;
align-items: center;
border-bottom: 1px dashed #C7CAD0;
.fffbox { nz-select {
width: 100%; margin-right: 16px;
height: 100%; border-radius: 4px 4px 4px 4px;
}
.monthbtn {
width: 80px;
height: 32px;
line-height: 32px;
background: #FFFFFF; background: #FFFFFF;
box-shadow: 0px 3px 8px 1px rgba(0, 0, 0, 0.0800);
border-radius: 4px 4px 4px 4px; border-radius: 4px 4px 4px 4px;
opacity: 1; opacity: 1;
border: 1px solid #E4E7EC; border: 1px solid #E4E7EC;
display: flex; color: #303133;
flex-direction: column; margin-right: 16px;
cursor: pointer;
} }
.selectedMonth {
.header { background: #2C4DC0;
width: 100%; color: #FFFFFF;
height: 56px; }
}
.instrumentpanelbox {
box-sizing: border-box;
padding: 18px;
color: #303133;
.instrumentpanelheader {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
padding: 0 20px; margin-bottom: 15px;
border-bottom: 1px solid #E4E7EC; }
span { .instrumentpanel {
color: #303133; display: flex;
font-weight: 500; flex-wrap: wrap;
font-size: 16px; }
.instrumentpanelitem {
background: #FFFFFF;
box-shadow: 0px 3px 8px 1px rgba(0, 0, 0, 0.0800);
border-radius: 4px 4px 4px 4px;
opacity: 1;
border: 1px solid #E4E7EC;
display: flex;
.itemone {
width: 100%;
height: 100%;
display: flex;
.instrumentpanelitemleft {
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: flex-start;
flex: 1;
box-sizing: border-box;
.panelheadername {
width: 80%;
height: 46px;
line-height: 46px;
text-align: center;
box-sizing: border-box;
border-radius: 6px 0px 6px 6px;
color: #fff;
img {
vertical-align: text-top;
}
}
.tasknum {
margin-left: 8px;
p {
margin: 0;
}
}
.btn {
margin-left: 8px;
width: 60%;
max-width: 96px;
height: 36px;
border-radius: 4px 4px 4px 4px;
background: #42B983;
color: white;
cursor: pointer;
}
}
.instrumentpanelitemright {
flex: 1;
display: flex;
align-items: center;
nz-progress {
margin-top: 65px;
}
}
}
.itemtwo {
width: 100%;
height: 100%;
display: flex;
box-sizing: border-box;
padding: 16px;
flex-direction: column;
overflow: hidden;
.itemtwotitle {
display: flex;
justify-content: space-between;
.back {
cursor: pointer;
i {
margin-right: 3px;
}
}
margin-bottom: 0;
}
.itemtwocontent {
flex: 1;
overflow-y: auto;
display: flex;
flex-direction: column;
.itemtwocontentitem {
border-bottom: 1px dashed #C7CAD0;
height: 70px;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: flex-start;
box-sizing: border-box;
padding: 8px 0;
p {
margin-bottom: 0;
}
.itemtwocontentitemp1 {
width: 100%;
display: flex;
justify-content: space-between;
box-sizing: border-box;
padding-right: 5px;
.itemtwocontentitemp1name {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
}
}
}
}
.instrumentpanelitemopen {
width: 24.3%;
height: 260px;
margin-bottom: 18px;
margin-right: 8px;
.itemone {
.instrumentpanelitemleft {
padding: 26px 0 26px 10%;
}
}
}
.instrumentpanelitemclose {
width: 11.7%;
height: 200px;
margin-bottom: 0px;
margin-right: 1%;
.itemone {
.instrumentpanelitemleft {
padding: 15px 0 15px 10%;
}
} }
} }
}
.content { .stationcardlistbox {
flex: 1; .stationcardlistitembox {
width: 100%;
border-top: 1px dashed #C7CAD0;
box-sizing: border-box; box-sizing: border-box;
padding: 18px; padding: 18px;
padding-top: 0px;
margin-top: 18px;
.operation {
nz-date-picker { .stationcardlistitem {
width: 140px; width: 100%;
background: #FFFFFF;
box-shadow: 0px 3px 8px 1px rgba(0, 0, 0, 0.0800);
border-radius: 4px 4px 4px 4px;
border: 1px solid #E4E7EC;
color: #303133;
box-sizing: border-box;
padding: 0 18px;
.header {
width: 100%;
height: 64px;
display: flex;
align-items: center;
text-align: left;
.progress {
width: 200px;
display: flex;
align-items: center;
span {
margin-right: 12px;
}
nz-progress {
width: 230px;
}
}
.expand {
margin-left: 20px;
}
}
.maincontent {
.maincontentitem {
box-sizing: border-box;
padding: 16px;
margin-bottom: 18px;
border-radius: 4px 4px 4px 4px;
border: 1px solid #42B983;
display: flex;
}
.maincontentitemleft {
width: 170px;
box-sizing: border-box;
padding-right: 40px;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
border-right: 1px dashed #C7CAD0;
.panelheadername {
width: 90%;
height: 38px;
line-height: 38px;
text-align: center;
box-sizing: border-box;
border-radius: 6px 0px 6px 6px;
color: #fff;
margin-bottom: 8px;
img {
vertical-align: text-top;
}
}
.num {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 8px;
.round {
width: 8px;
height: 8px;
}
.word {
margin: 0 6px;
}
.boldspan {
font-weight: 800;
font-size: 25px;
}
}
}
.maincontentitemright {
flex: 1;
box-sizing: border-box;
padding-left: 40px;
display: flex;
flex-direction: column;
justify-content: space-around;
// align-items: center;
.maincontentitemrightitem {
display: flex;
align-items: center;
box-sizing: border-box;
padding: 12px 0px;
border-bottom: 1px dashed #C7CAD0;
.flexcol {
display: flex;
flex-direction: column;
align-items: flex-start;
margin-right: 3%;
span:nth-child(1) {
color: #303133;
margin-bottom: 8px;
}
span:nth-child(2) {
color: #C7CAD0;
}
}
.namebox {
width: 28%;
}
.progressbox {
width: 220px;
span:nth-child(1) {
width: 100%;
}
}
.btnbox {
display: flex;
justify-content: flex-end;
align-self: flex-start;
}
}
div:last-child {
border-bottom: 0px;
}
}
} }
} }
} }
}
.cutoffrule {
width: 100%;
border-top: 1px dashed #C7CAD0;
} }

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

@ -12,28 +12,64 @@ import { TreeService } from 'src/app/service/tree.service';
}) })
export class StationWeeklyPlanComponent implements OnInit { export class StationWeeklyPlanComponent implements OnInit {
validateForm!: FormGroup; constructor() { }
constructor(private fb: FormBuilder, private modal: NzModalService, private viewContainerRef: ViewContainerRef, private message: NzMessageService, private http: HttpClient, private toTree: TreeService) { }
searchForm = {
taskname: '',
tasktime: '',
unitname: '',
unitlevel: '',
or: ''
}
usersNum
loading
usersLIst = [1]
ngOnInit(): void { ngOnInit(): void {
} }
pageChange($event) { months = [
{ name: '1月', isable: true },
{ name: '2月', isable: true },
{ name: '3月', isable: true },
{ name: '4月', isable: true },
{ name: '5月', isable: true },
{ name: '6月', isable: true },
{ name: '7月', isable: true },
{ name: '8月', isable: true },
{ name: '9月', isable: true },
{ name: '10月', isable: true },
{ name: '11月', isable: true },
{ name: '12月', isable: true }
]
selectedMonth
selectMonth(item) {
this.selectedMonth = item.name
}
isExpand = true
expand() {
this.isExpand = !this.isExpand
} }
cancel(item, type) { formatOne = (percent: number): string => `${percent}%\n完成率`;
cardData = [
{ name: '双随机', isDetails: false, background: '#1D9DFF', icon: 'suiji.png' },
{ name: '行政许可', isDetails: false, background: '#42B983', icon: 'xuke.png' },
{ name: '熟悉演练', isDetails: false, background: '#9D80FF', icon: 'yanlian.png' },
{ name: '联络指导', isDetails: false, background: '#5483EA', icon: 'zhidao.png' },
{ name: '消防宣传', isDetails: false, background: '#FF5D2A', icon: 'xuanchuan.png' },
{ name: '投诉举报', isDetails: false, background: '#5087FF', icon: 'tousu.png' },
{ name: '火灾调查', isDetails: false, background: '#FF404D', icon: 'huozai.png' }
]
openDetails(data, type) {
data.isDetails = type
} }
delete(item) { xxx = false
radioChange(e) {
setTimeout(() => {
this.xxx = !this.xxx
}, 0);
} }
stationData = [
{ name: '历下区A消防救援站', isExpand: true },
{ name: '历下区B消防救援站', isExpand: false },
{ name: '历下区C消防救援站', isExpand: false }
]
expandcarditem(item) {
item.isExpand = !item.isExpand
}
} }

16
src/app/home/task/task.component.html

@ -5,17 +5,17 @@
<i nz-icon nzType="book" nzTheme="outline"></i> <i nz-icon nzType="book" nzTheme="outline"></i>
任务指标 任务指标
</li> </li>
<li [routerLink]="['/task/audit']" routerLinkActive="router-link-active"> <!-- <li [routerLink]="['/task/audit']" routerLinkActive="router-link-active">
<i nz-icon nzType="audit" nzTheme="outline"></i> <i nz-icon nzType="audit" nzTheme="outline"></i>
工作审批 工作审批
</li> </li> -->
</ul> </ul>
<ul *ngIf="level == 'battalion' && !user"> <ul *ngIf="level == 'battalion' && !user">
<li [routerLink]="['/task/monthlytaskoverview']" routerLinkActive="router-link-active"> <li [routerLink]="['/task/monthlytaskoverview']" routerLinkActive="router-link-active">
<i nz-icon nzType="appstore" nzTheme="outline"></i> <i nz-icon nzType="appstore" nzTheme="outline"></i>
月度任务总览 月度任务总览
</li> </li>
<li [routerLink]="['/task/oneselfplan']" routerLinkActive="router-link-active"> <li [routerLink]="['/task/oneselfplan']" routerLinkActive="router-link-active">
<i nz-icon nzType="file-text" nzTheme="outline"></i> <i nz-icon nzType="file-text" nzTheme="outline"></i>
本级计划 本级计划
@ -26,10 +26,10 @@
<i nz-icon nzType="file-protect" nzTheme="outline"></i> <i nz-icon nzType="file-protect" nzTheme="outline"></i>
任务执行 任务执行
</li> </li>
<li [routerLink]="['/task/subordinateaudit']" routerLinkActive="router-link-active"> <!-- <li [routerLink]="['/task/subordinateaudit']" routerLinkActive="router-link-active">
<i nz-icon nzType="file-protect" nzTheme="outline"></i> <i nz-icon nzType="file-protect" nzTheme="outline"></i>
任务处理 任务处理
</li> </li> -->
<li [routerLink]="['/task/taskapply']" routerLinkActive="router-link-active"> <li [routerLink]="['/task/taskapply']" routerLinkActive="router-link-active">
<i nz-icon nzType="file-text" nzTheme="outline"></i> <i nz-icon nzType="file-text" nzTheme="outline"></i>
任务申请 任务申请
@ -39,6 +39,12 @@
生成周计划 生成周计划
</li> </li>
</ul> </ul>
<ul *ngIf="level == 'battalion' && user">
<li [routerLink]="['/task/weeklyplan']" routerLinkActive="router-link-active">
<i nz-icon nzType="container" nzTheme="outline"></i>
协同工作任务
</li>
</ul>
</div> </div>
<div class="content"> <div class="content">
<div class="routerbox"> <div class="routerbox">

BIN
src/assets/images/icon/inform.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 489 B

42
src/styles.scss

@ -221,6 +221,7 @@ app-root {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
z-index: 999;
} }
#setPosition { #setPosition {
@ -281,3 +282,44 @@ app-root {
background: #666; background: #666;
} }
} }
#container {
flex: 1;
position: relative;
height: 46px;
overflow: hidden;
text-align: left;
}
#list-wrapper {
position: relative;
}
ul {
list-style: none;
}
.info {
flex: 1;
display: flex;
height: 50px;
line-height: 50px;
color: #000;
display: flex;
align-items: center;
justify-content: space-between;
.infoitem {
flex: 1;
display: flex;
align-items: center;
img {
width: 40px;
}
}
}

Loading…
Cancel
Save