Browse Source

[完善]完善预案和单位列表

guangxi
邵佳豪 2 years ago
parent
commit
0e06d9fd89
  1. 14
      src/app/key-unit/key-unit-management/key-unit-management.component.html
  2. 2
      src/app/key-unit/key-unit-management/key-unit-management.component.ts
  3. 3
      src/app/plan-management/entry-plan-look/entry-plan-look.component.html
  4. 2
      src/app/plan-management/entry-plan-look/entry-plan-look.component.ts
  5. 38
      src/app/plan-management/entry-plan/entry-plan.component.html
  6. 472
      src/app/plan-management/entry-plan/entry-plan.component.ts
  7. 4
      src/app/tabbar/tabbar.component.html

14
src/app/key-unit/key-unit-management/key-unit-management.component.html

@ -25,11 +25,11 @@
<button mat-raised-button style="margin-left: 25px;" type="button" (click)="reset()">重置</button> <button mat-raised-button style="margin-left: 25px;" type="button" (click)="reset()">重置</button>
</div> </div>
<div class="queryField" *ngIf="!padMore"> <div class="queryField" *ngIf="!padMore">
<label style="margin-right: 10px;">关注单位:</label> <label style="margin-right: 10px;">重点单位:</label>
<mat-form-field> <mat-form-field>
<mat-select placeholder='请选择单位是否关注' [(ngModel)]="follow" name="follow"> <mat-select placeholder='请选择单位是否为重点' [(ngModel)]="follow" name="follow">
<mat-option value="0">未关注</mat-option> <mat-option value="0">一般单位</mat-option>
<mat-option value="1">已关注</mat-option> <mat-option value="1">重点单位</mat-option>
</mat-select> </mat-select>
</mat-form-field> </mat-form-field>
@ -146,7 +146,7 @@
</th> </th>
<td mat-cell *matCellDef="let element"> <td mat-cell *matCellDef="let element">
<span title="已关注" *ngIf="element.isFollowed"> <span title="重点单位" *ngIf="element.isFollowed">
<mat-icon style="margin-top: 6px;color: red;">star</mat-icon> <mat-icon style="margin-top: 6px;color: red;">star</mat-icon>
</span> </span>
@ -357,8 +357,8 @@
*ngIf="element.contentVerify!=null&&(element.contentVerify.verifyState==0||element.contentVerify.verifyState==3) " *ngIf="element.contentVerify!=null&&(element.contentVerify.verifyState==0||element.contentVerify.verifyState==3) "
(click)="cancelAudit(element)">撤销审核</span> (click)="cancelAudit(element)">撤销审核</span>
<span style="color: blue;margin-left: 4px;" (click)="auditResult(element)">审批结果</span> <span style="color: blue;margin-left: 4px;" (click)="auditResult(element)">审批结果</span>
<span (click)="Follow(element)" *ngIf="!element.isFollowed">关注单位</span> <span (click)="Follow(element)" *ngIf="!element.isFollowed">重点单位</span>
<span (click)="unFollow(element)" *ngIf="element.isFollowed">取消关注</span> <span (click)="unFollow(element)" *ngIf="element.isFollowed">取消重点</span>
</td> </td>
</ng-container> </ng-container>
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr> <tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>

2
src/app/key-unit/key-unit-management/key-unit-management.component.ts

@ -540,7 +540,7 @@ export class KeyUnitManagementComponent implements OnInit {
const config = new MatSnackBarConfig(); const config = new MatSnackBarConfig();
config.verticalPosition = 'top'; config.verticalPosition = 'top';
config.duration = 3000 config.duration = 3000
this.snackBar.open('关注成功','确定',config); this.snackBar.open('设为重点单位成功','确定',config);
this.getAllKeyUnit(); this.getAllKeyUnit();
}) })

3
src/app/plan-management/entry-plan-look/entry-plan-look.component.html

@ -107,7 +107,8 @@
<ng-container *ngIf="isoperation == 'true'" matColumnDef="operation"> <ng-container *ngIf="isoperation == 'true'" matColumnDef="operation">
<th mat-header-cell *matHeaderCellDef>操作</th> <th mat-header-cell *matHeaderCellDef>操作</th>
<td mat-cell *matCellDef="let element"> <td mat-cell *matCellDef="let element">
<span (click)="changeName(element)" *ngIf="element.auditStatus==8">改名</span> <span (click)="changeName(element)"
*ngIf="element.auditStatus==8 || element.maintenanceVerifyState=='未提交审核'">改名</span>
<span (click)="upzhuanMb(element)" <span (click)="upzhuanMb(element)"
*ngIf="element.planMode==1&&element.planType==16&&element.planCategory==5">转在线导入</span> *ngIf="element.planMode==1&&element.planType==16&&element.planCategory==5">转在线导入</span>
<span (click)="editPlan(element)" <span (click)="editPlan(element)"

2
src/app/plan-management/entry-plan-look/entry-plan-look.component.ts

@ -803,7 +803,7 @@ export class EntryPlanLookComponent implements OnInit {
pData = pRequest pData = pRequest
/* 调用新建预案接口,新建一条新的预案,并跳转新建在线编制页面 */ /* 调用新建预案接口,新建一条新的预案,并跳转新建在线编制页面 */
let body = { let body = {
name: (element.planCategory == 3 ? 'Ⅲ级' : element.planCategory == 4 ? 'Ⅳ级' : element.planCategory == 5 ? 'Ⅴ级' : '') + element.name + '转在线编制', name: (element.planCategory == 3 ? 'Ⅲ级' : element.planCategory == 4 ? 'Ⅳ级' : element.planCategory == 5 ? 'Ⅴ级' : '') + element.name,
planType: element.planType, planType: element.planType,
planMode: 2, planMode: 2,
planLevel: element.planLevel, planLevel: element.planLevel,

38
src/app/plan-management/entry-plan/entry-plan.component.html

@ -91,20 +91,26 @@
</mat-select> </mat-select>
</mat-form-field> </mat-form-field>
</div> </div>
<div class="queryField" *ngIf="!padMore&&!pcMore"> <div class="queryField" *ngIf="!padMore&&!pcMore">
<label style="margin-right: 10px;">重点单位:</label>
<mat-form-field>
<mat-select placeholder='是否为重点单位' [(ngModel)]="isFollowed" name="isFollowed">
<mat-option value=0>一般单位</mat-option>
<mat-option value=1>重点单位</mat-option>
</mat-select>
</mat-form-field>
</div>
<!-- <div class="queryField" *ngIf="!padMore&&!pcMore">
<label style="margin-right: 10px;">编制级别:</label> <label style="margin-right: 10px;">编制级别:</label>
<mat-form-field> <mat-form-field>
<mat-select name="preparelevel" [(ngModel)]="preparelevel" placeholder='请选择编制级别'> <mat-select name="preparelevel" [(ngModel)]="preparelevel" placeholder='请选择编制级别'>
<!-- <mat-option value="1">总队</mat-option>
<mat-option value="2">支队</mat-option>
<mat-option value="4">大队</mat-option>
<mat-option value="8">中队</mat-option> -->
<mat-option *ngFor="let item of preparelevels" [value]="item.value">{{item.name}} <mat-option *ngFor="let item of preparelevels" [value]="item.value">{{item.name}}
</mat-option> </mat-option>
</mat-select> </mat-select>
</mat-form-field> </mat-form-field>
<mat-checkbox style="margin-left: 6px;" [(ngModel)]="plcheck" name="plcheck">包含下级</mat-checkbox> <mat-checkbox style="margin-left: 6px;" [(ngModel)]="plcheck" name="plcheck">包含下级</mat-checkbox>
</div> </div> -->
<div class="queryField" *ngIf="!padMore&&!pcMore"> <div class="queryField" *ngIf="!padMore&&!pcMore">
<label style="margin-right: 10px;">审核状态:</label> <label style="margin-right: 10px;">审核状态:</label>
<mat-form-field> <mat-form-field>
@ -153,10 +159,12 @@
</mat-form-field> </mat-form-field>
</div> </div>
<div class="queryField" *ngIf="!padMore&&!pcMore"> <div class="queryField" *ngIf="!padMore&&!pcMore">
<mat-checkbox (ngModelChange)="templatePlanChange($event,1)" [(ngModel)]="templatePlan" name="templatePlan">模板录入预案</mat-checkbox> <mat-checkbox (ngModelChange)="templatePlanChange($event,1)" [(ngModel)]="templatePlan"
name="templatePlan">模板录入预案</mat-checkbox>
</div> </div>
<div class="queryField" *ngIf="!padMore&&!pcMore"> <div class="queryField" *ngIf="!padMore&&!pcMore">
<mat-checkbox (ngModelChange)="templatePlanChange($event,2)" [(ngModel)]="customPlan" name="customPlan">自定义预案</mat-checkbox> <mat-checkbox (ngModelChange)="templatePlanChange($event,2)" [(ngModel)]="customPlan"
name="customPlan">自定义预案</mat-checkbox>
</div> </div>
</div> </div>
</form> </form>
@ -173,6 +181,16 @@
<span class="weihu" *ngIf="!element.company.isNewData">维护更新</span> <span class="weihu" *ngIf="!element.company.isNewData">维护更新</span>
</td> </td>
</ng-container> </ng-container>
<ng-container matColumnDef="isFollowed">
<th mat-header-cell *matHeaderCellDef style="width: 3%;">重点单位</th>
<td mat-cell *matCellDef="let element">
<span title="重点单位" *ngIf="element.isFollowed">
<mat-icon style="margin-top: 6px;color: red;">star</mat-icon>
</span>
</td>
</ng-container>
<ng-container matColumnDef="unitname"> <ng-container matColumnDef="unitname">
<th mat-header-cell *matHeaderCellDef>单位名称</th> <th mat-header-cell *matHeaderCellDef>单位名称</th>
<td mat-cell *matCellDef="let element">{{element.company.name}}</td> <td mat-cell *matCellDef="let element">{{element.company.name}}</td>
@ -343,10 +361,10 @@
<th mat-header-cell *matHeaderCellDef>审核状态</th> <th mat-header-cell *matHeaderCellDef>审核状态</th>
<td mat-cell *matCellDef="let element">{{element.auditStatus}}</td> <td mat-cell *matCellDef="let element">{{element.auditStatus}}</td>
</ng-container> </ng-container>
<ng-container matColumnDef="projectlevel"> <!-- <ng-container matColumnDef="projectlevel">
<th mat-header-cell *matHeaderCellDef>编制级别</th> <th mat-header-cell *matHeaderCellDef>编制级别</th>
<td mat-cell *matCellDef="let element">{{element.planLevel}}</td> <td mat-cell *matCellDef="let element">{{element.planLevel}}</td>
</ng-container> </ng-container> -->
<ng-container matColumnDef="operation"> <ng-container matColumnDef="operation">
<th mat-header-cell *matHeaderCellDef>操作</th> <th mat-header-cell *matHeaderCellDef>操作</th>
<td mat-cell *matCellDef="let element"> <td mat-cell *matCellDef="let element">
@ -363,4 +381,4 @@
</div> </div>
</div> </div>
</div> </div>

472
src/app/plan-management/entry-plan/entry-plan.component.ts

@ -1,36 +1,58 @@
import { Component, OnInit, ViewChild, Inject } from '@angular/core'; import { Component, OnInit, ViewChild, Inject } from "@angular/core";
import { HttpClient } from '@angular/common/http' import { HttpClient } from "@angular/common/http";
import { MatTreeFlatDataSource, MatTreeFlattener } from '@angular/material/tree'; import {
import { MatPaginator } from '@angular/material/paginator'; MatTreeFlatDataSource,
import { FlatTreeControl } from '@angular/cdk/tree'; MatTreeFlattener,
import { FormControl } from '@angular/forms'; } from "@angular/material/tree";
import { Router, ActivatedRoute } from '@angular/router' import { MatPaginator } from "@angular/material/paginator";
import { PageEvent } from '@angular/material/paginator'; import { FlatTreeControl } from "@angular/cdk/tree";
import { MatDialogRef, MatDialog, MAT_DIALOG_DATA } from '@angular/material/dialog'; import { FormControl } from "@angular/forms";
import { MatSnackBar, MatSnackBarConfig } from '@angular/material/snack-bar'; import { Router, ActivatedRoute } from "@angular/router";
import { TreeService } from '../../http-interceptors/tree.service' import { PageEvent } from "@angular/material/paginator";
import { ConstantPool } from '@angular/compiler'; import {
MatDialogRef,
MatDialog,
MAT_DIALOG_DATA,
} from "@angular/material/dialog";
import { MatSnackBar, MatSnackBarConfig } from "@angular/material/snack-bar";
import { TreeService } from "../../http-interceptors/tree.service";
import { ConstantPool } from "@angular/compiler";
@Component({ @Component({
selector: 'app-entry-plan', selector: "app-entry-plan",
templateUrl: './entry-plan.component.html', templateUrl: "./entry-plan.component.html",
styleUrls: ['./entry-plan.component.scss'] styleUrls: ["./entry-plan.component.scss"],
}) })
export class EntryPlanComponent implements OnInit { export class EntryPlanComponent implements OnInit {
constructor(
private http: HttpClient,
private router: Router,
private route: ActivatedRoute,
private tree: TreeService,
public dialog: MatDialog,
public snackBar: MatSnackBar
) {}
constructor(private http: HttpClient, private router: Router, private route: ActivatedRoute, private tree: TreeService, public dialog: MatDialog, public snackBar: MatSnackBar) { } private _transformer = (node, level: number) => {
//初始化tree
private _transformer = (node, level: number) => { //初始化tree
return { return {
expandable: !!node.children && node.children.length > 0, expandable: !!node.children && node.children.length > 0,
name: node.name, name: node.name,
level: level, level: level,
id: node.id, id: node.id,
parentId: node.parentId, parentId: node.parentId,
children: node.children children: node.children,
}; };
} };
treeControl = new FlatTreeControl<any>(node => node.level, node => node.expandable); treeControl = new FlatTreeControl<any>(
treeFlattener = new MatTreeFlattener(this._transformer, node => node.level, node => node.expandable, node => node.children); (node) => node.level,
(node) => node.expandable
);
treeFlattener = new MatTreeFlattener(
this._transformer,
(node) => node.level,
(node) => node.expandable,
(node) => node.children
);
dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener); dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener);
myControl = new FormControl(); myControl = new FormControl();
hasChild = (_: number, node: any) => node.expandable; hasChild = (_: number, node: any) => node.expandable;
@ -40,21 +62,31 @@ export class EntryPlanComponent implements OnInit {
paginator: MatPaginator; paginator: MatPaginator;
length: any; //共多少条数据 length: any; //共多少条数据
pageSize: any; //每页条数 pageSize: any; //每页条数
pageSizeOptions: number[] = [10] //设置每页条数 pageSizeOptions: number[] = [10]; //设置每页条数
PageNumber: any; //第几页 PageNumber: any; //第几页
IsNewData = '' //预案维护更新或者新增 IsNewData = ""; //预案维护更新或者新增
IsNewCompanyData = ''//单位维护更新或者新增 IsNewCompanyData = ""; //单位维护更新或者新增
displayedColumns: string[] = ['state', 'unitname', 'integrity', 'level', 'jurisdictionsquadron', 'unittype', 'plantype', 'passstate', 'projectlevel', 'operation']; displayedColumns: string[] = [
allorganizations: any //所有组织机构 "state",
allunittype: any //所有单位类型 "isFollowed",
tabledataSource: any //表格数据 "unitname",
"integrity",
"level",
"jurisdictionsquadron",
"unittype",
"plantype",
"passstate",
"operation",
];
allorganizations: any; //所有组织机构
allunittype: any; //所有单位类型
tabledataSource: any; //表格数据
organizationName: any //当前单位组织机构名称 organizationName: any; //当前单位组织机构名称
preparelevels: any preparelevels: any;
integritySort: any //完整度排序 integritySort: any; //完整度排序
haveyuan//有无预案 haveyuan; //有无预案
colorRgb(sColor) { colorRgb(sColor) {
var reg = /^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/; var reg = /^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/;
var sColor = sColor.toLowerCase(); var sColor = sColor.toLowerCase();
@ -84,7 +116,7 @@ export class EntryPlanComponent implements OnInit {
var strHex = "#"; var strHex = "#";
for (var i = 0; i < aColor.length; i++) { for (var i = 0; i < aColor.length; i++) {
var hex: any = Number(aColor[i]).toString(16); var hex: any = Number(aColor[i]).toString(16);
hex = hex < 10 ? 0 + '' + hex : hex;// 保证每个rgb的值为2位 hex = hex < 10 ? 0 + "" + hex : hex; // 保证每个rgb的值为2位
if (hex === "0") { if (hex === "0") {
hex += hex; hex += hex;
} }
@ -101,7 +133,7 @@ export class EntryPlanComponent implements OnInit {
} else if (aNum.length === 3) { } else if (aNum.length === 3) {
var numHex = "#"; var numHex = "#";
for (var i = 0; i < aNum.length; i += 1) { for (var i = 0; i < aNum.length; i += 1) {
numHex += (aNum[i] + aNum[i]); numHex += aNum[i] + aNum[i];
} }
return numHex; return numHex;
} }
@ -110,8 +142,8 @@ export class EntryPlanComponent implements OnInit {
} }
} }
gradientColor(startColor, endColor, step) { gradientColor(startColor, endColor, step) {
let _this = this let _this = this;
let startRGB = _this.colorRgb(startColor);//转换为rgb数组模式 let startRGB = _this.colorRgb(startColor); //转换为rgb数组模式
let startR = startRGB[0]; let startR = startRGB[0];
let startG = startRGB[1]; let startG = startRGB[1];
let startB = startRGB[2]; let startB = startRGB[2];
@ -121,296 +153,330 @@ export class EntryPlanComponent implements OnInit {
let endG = endRGB[1]; let endG = endRGB[1];
let endB = endRGB[2]; let endB = endRGB[2];
let sR = (endR - startR) / step;//总差值 let sR = (endR - startR) / step; //总差值
let sG = (endG - startG) / step; let sG = (endG - startG) / step;
let sB = (endB - startB) / step; let sB = (endB - startB) / step;
var colorArr = []; var colorArr = [];
for (var i = 0; i < step; i++) { for (var i = 0; i < step; i++) {
//计算每一步的hex值 //计算每一步的hex值
var hex = _this.colorHex('rgb(' + parseInt((sR * i + startR)) + ',' + parseInt((sG * i + startG)) + ',' + parseInt((sB * i + startB)) + ')'); var hex = _this.colorHex(
"rgb(" +
parseInt(sR * i + startR) +
"," +
parseInt(sG * i + startG) +
"," +
parseInt(sB * i + startB) +
")"
);
colorArr.push(hex); colorArr.push(hex);
} }
return colorArr; return colorArr;
} }
integrity(width) { integrity(width) {
let _this = this let _this = this;
let style: any = {} let style: any = {};
style.width = width + '%'; style.width = width + "%";
if (width < 30) { if (width < 30) {
let colorArr = this.gradientColor('#D50000', '#E53935', 30); let colorArr = this.gradientColor("#D50000", "#E53935", 30);
for (let i = 0; i < 30; i++) { for (let i = 0; i < 30; i++) {
if (i == width) { if (i == width) {
style.background = colorArr[i] style.background = colorArr[i];
} }
} }
} }
if (width >= 30 && width < 60) { if (width >= 30 && width < 60) {
let colorArr = this.gradientColor('#FF9800', '#E65100', 30); let colorArr = this.gradientColor("#FF9800", "#E65100", 30);
for (let i = 30; i < 60; i++) { for (let i = 30; i < 60; i++) {
if (i == width) { if (i == width) {
style.background = colorArr[i - 30] style.background = colorArr[i - 30];
} }
} }
} }
if (width >= 60) { if (width >= 60) {
let colorArr = this.gradientColor('#81C784', '#2E7D32', 41); let colorArr = this.gradientColor("#81C784", "#2E7D32", 41);
for (let i = 60; i <= 100; i++) { for (let i = 60; i <= 100; i++) {
if (i == width) { if (i == width) {
style.background = colorArr[i - 60] style.background = colorArr[i - 60];
} }
} }
} }
return style return style;
} }
integrityDetails(width, zong) { integrityDetails(width, zong) {
let style: any = {} let style: any = {};
style.width = (width / zong) * 100 + '%'; style.width = (width / zong) * 100 + "%";
return style return style;
} }
level level;
ngOnInit(): void { ngOnInit(): void {
if (window.matchMedia("(max-width: 1400px)").matches) { if (window.matchMedia("(max-width: 1400px)").matches) {
this.pcMore = false this.pcMore = false;
this.padMore = true this.padMore = true;
this.pcfind = false this.pcfind = false;
this.padjt = true this.padjt = true;
} else { } else {
this.pcfind = true this.pcfind = true;
this.pcMore = true this.pcMore = true;
this.padMore = false this.padMore = false;
this.padjt = false this.padjt = false;
} }
this.getunitdata(); this.getunitdata();
this.getOrganizations(); this.getOrganizations();
this.getUnittype(); this.getUnittype();
this.getAllPlanInfo(); this.getAllPlanInfo();
this.level = sessionStorage.getItem("level"); this.level = sessionStorage.getItem("level");
if (this.level == "0") {//如果是总队 if (this.level == "0") {
//如果是总队
this.preparelevels = [ this.preparelevels = [
{ name: "总队", value: "1" }, { name: "总队", value: "1" },
{ name: "支队", value: "2" }, { name: "支队", value: "2" },
{ name: "大队", value: "4" }, { name: "大队", value: "4" },
{ name: "中队", value: "8" } { name: "中队", value: "8" },
] ];
} }
if (this.level == "1") {//如果是支队 if (this.level == "1") {
//如果是支队
this.preparelevels = [ this.preparelevels = [
{ name: "支队", value: "2" }, { name: "支队", value: "2" },
{ name: "大队", value: "4" }, { name: "大队", value: "4" },
{ name: "中队", value: "8" } { name: "中队", value: "8" },
] ];
} }
if (this.level == "2") {//如果是大队 if (this.level == "2") {
//如果是大队
this.preparelevels = [ this.preparelevels = [
{ name: "大队", value: "4" }, { name: "大队", value: "4" },
{ name: "中队", value: "8" } { name: "中队", value: "8" },
] ];
} }
if (this.level == "3") {//如果是中队 if (this.level == "3") {
this.preparelevels = [ //如果是中队
{ name: "中队", value: "8" } this.preparelevels = [{ name: "中队", value: "8" }];
]
} }
} }
pcMore//pc更多 pcMore; //pc更多
pcput = false//pc收起 pcput = false; //pc收起
pcfind//pc查询 pcfind; //pc查询
padjt = false padjt = false;
padMore = true//pad收缩控制 padMore = true; //pad收缩控制
padput = false//pad收起按钮 padput = false; //pad收起按钮
imgsrcopen = "../../../assets/images/routdown2.png" imgsrcopen = "../../../assets/images/routdown2.png";
imgsrcdown = "../../../assets/images/routup2.png" imgsrcdown = "../../../assets/images/routup2.png";
pcInfo() { pcInfo() {
this.pcMore = !this.pcMore this.pcMore = !this.pcMore;
this.pcput = !this.pcput this.pcput = !this.pcput;
} }
padInfo() { padInfo() {
this.padMore = !this.padMore this.padMore = !this.padMore;
this.padput = !this.padput this.padput = !this.padput;
} }
//得到当前单位信息 //得到当前单位信息
getunitdata() { getunitdata() {
this.http.get("/api/Account/Profiles").subscribe( this.http.get("/api/Account/Profiles").subscribe((data: any) => {
(data: any) => { this.organizationName = data.organizationName;
this.organizationName = data.organizationName });
}
)
} }
treedata: any //组织机构树型数据 treedata: any; //组织机构树型数据
newArr: any = [] newArr: any = [];
newallorganizations: any //用于存储在原始数据基础上的每个机构增加children字段 newallorganizations: any; //用于存储在原始数据基础上的每个机构增加children字段
//得到当前单位所在组织机构的tree型数据 //得到当前单位所在组织机构的tree型数据
getpresentOrganization() { getpresentOrganization() {
this.newallorganizations = this.allorganizations this.newallorganizations = this.allorganizations;
this.newallorganizations.forEach(item => { this.newallorganizations.forEach((item) => {
item.children = [] item.children = [];
this.newallorganizations.forEach(element => { this.newallorganizations.forEach((element) => {
if (element.parentId == item.id) { if (element.parentId == item.id) {
item.children.push(element) item.children.push(element);
} }
}); });
}); });
this.http.get("/api/Account/Profiles").subscribe( this.http.get("/api/Account/Profiles").subscribe((data: any) => {
(data: any) => { this.organizationName = data.organizationName;
this.organizationName = data.organizationName if (this.organizationName) {
if (this.organizationName) { this.newallorganizations.forEach((item) => {
this.newallorganizations.forEach(item => { if (item.name == this.organizationName) {
if (item.name == this.organizationName) { this.dataSource.data = [item];
this.dataSource.data = [item] }
} });
}); } else {
} else { this.dataSource.data = this.tree.toTree(this.treedata);
this.dataSource.data = this.tree.toTree(this.treedata);
}
} }
) });
} }
//获得所有组织机构 //获得所有组织机构
getOrganizations() { getOrganizations() {
this.http.get('/api/Organizations').subscribe( this.http.get("/api/Organizations").subscribe((data: any) => {
(data: any) => { this.allorganizations = data;
this.allorganizations = data this.treedata = this.tree.toTree(data);
this.treedata = this.tree.toTree(data); this.getpresentOrganization();
this.getpresentOrganization(); });
}
)
} }
//获得所有单位类型 //获得所有单位类型
getUnittype() { getUnittype() {
this.http.get('/api/BuildingTypes/Simple').subscribe( this.http.get("/api/BuildingTypes/Simple").subscribe((data) => {
data => { this.allunittype = data;
this.allunittype = data });
}
)
} }
//分页事件 //分页事件
chagePage(e) { chagePage(e) {
this.PageNumber = e.pageIndex + 1 this.PageNumber = e.pageIndex + 1;
this.getAllPlanInfo(); this.getAllPlanInfo();
} }
//辖区中队div是否显示 //辖区中队div是否显示
isorganizationbox: boolean = false isorganizationbox: boolean = false;
//点击辖区中队树,将选择的辖区中队添加到变量 //点击辖区中队树,将选择的辖区中队添加到变量
add(node) { add(node) {
this.isorganizationbox = false this.isorganizationbox = false;
this.js = node.name this.js = node.name;
this.jsId = node.id this.jsId = node.id;
} }
//打开辖区中队隐藏框 //打开辖区中队隐藏框
openorganizationbox() { openorganizationbox() {
this.isorganizationbox = true this.isorganizationbox = true;
} }
//关闭出现的组织机构div //关闭出现的组织机构div
closediv() { closediv() {
this.isorganizationbox = false this.isorganizationbox = false;
} }
allPlanInfo: any //存储所有预案信息 allPlanInfo: any; //存储所有预案信息
//获得所有预案信息 //获得所有预案信息
templatePlan: boolean = false//模板录入预案checkbox templatePlan: boolean = false; //模板录入预案checkbox
customPlan: boolean = false//自定义预案 customPlan: boolean = false; //自定义预案
getAllPlanInfo() { getAllPlanInfo() {
let planmode = [] let follow;
this.templatePlan ? planmode.push(2) : null if (this.isFollowed == "") {
this.customPlan ? planmode.push(4) : null follow = "";
let reservePlanType }
this.reservePlanType ? reservePlanType = JSON.parse(JSON.stringify(this.reservePlanType)) : reservePlanType = '' if (this.isFollowed == "0") {
follow = false;
}
if (this.isFollowed == "1") {
follow = true;
}
let planmode = [];
this.templatePlan ? planmode.push(2) : null;
this.customPlan ? planmode.push(4) : null;
let reservePlanType;
this.reservePlanType
? (reservePlanType = JSON.parse(JSON.stringify(this.reservePlanType)))
: (reservePlanType = "");
if (this.reservePlanType && this.reservePlanType.length != 0) { if (this.reservePlanType && this.reservePlanType.length != 0) {
reservePlanType = eval(this.reservePlanType.join("|")) reservePlanType = eval(this.reservePlanType.join("|"));
} }
let paramsdata: any = { let paramsdata: any = {
CompanyName: this.companyName || '', CompanyName: this.companyName || "",
OrganizationId: this.jsId || '', OrganizationId: this.jsId || "",
HasChildrenOrganization: this.jscheck || '', HasChildrenOrganization: this.jscheck || "",
BuildingTypeId: this.unittype || '', BuildingTypeId: this.unittype || "",
PlanType: reservePlanType || '', PlanType: reservePlanType || "",
AuditStatus: this.toExamine || '', AuditStatus: this.toExamine || "",
PlanLevel: this.preparelevel || '', PlanLevel: this.preparelevel || "",
HasChildrenPlanLevel: this.plcheck || '', HasChildrenPlanLevel: this.plcheck || "",
PageNumber: this.PageNumber || '1', IsFollowed: follow,
PageNumber: this.PageNumber || "1",
PageSize: this.pageSizeOptions[0], PageSize: this.pageSizeOptions[0],
Sort: this.integritySort ? 'integrityscore' : '', Sort: this.integritySort ? "integrityscore" : "",
SortType: this.integritySort || '', SortType: this.integritySort || "",
HasPlanComponents: this.haveyuan || '', HasPlanComponents: this.haveyuan || "",
PlanCategories: this.planCategory, PlanCategories: this.planCategory,
IsNewData: this.IsNewData, IsNewData: this.IsNewData,
IsNewCompanyData: this.IsNewCompanyData, IsNewCompanyData: this.IsNewCompanyData,
PlanModes: planmode PlanModes: planmode,
} };
this.http.get("/api/Plans", { params: paramsdata }).subscribe((data: any) => { this.http
.get("/api/Plans", { params: paramsdata })
this.length = data.totalCount .subscribe((data: any) => {
this.allPlanInfo = data this.length = data.totalCount;
this.allPlanInfo = data;
this.tabledataSource = data.items this.tabledataSource = data.items;
}) });
} }
operation = true operation = true;
//查看预案按钮跳转 //查看预案按钮跳转
routerTo(element) { routerTo(element) {
this.level == '0' ? this.operation = false : true this.level == "0" ? (this.operation = false) : true;
sessionStorage.setItem("companyName", element.company.name) sessionStorage.setItem("companyName", element.company.name);
window.open(`/planManagement/entryPlandetail?unitId=${element.company.id}&unitTypeId=${element.company.buildingTypes.length == 0 ? null : element.company.buildingTypes[0].id}&operation=${this.operation}&pagetype=entryplan&unitName=${element.company.name}&orName=${element.company.organizationName}&orId=${element.company.organizationId}&unitType=${element.company.buildingTypes.length == 0 ? null : element.company.buildingTypes[0].name}&unitAdd=${element.company.address}&usci=${element.company.usci}`); window.open(
`/planManagement/entryPlandetail?unitId=${
element.company.id
}&unitTypeId=${
element.company.buildingTypes.length == 0
? null
: element.company.buildingTypes[0].id
}&operation=${this.operation}&pagetype=entryplan&unitName=${
element.company.name
}&orName=${element.company.organizationName}&orId=${
element.company.organizationId
}&unitType=${
element.company.buildingTypes.length == 0
? null
: element.company.buildingTypes[0].name
}&unitAdd=${element.company.address}&usci=${element.company.usci}`
);
} }
//查询 //查询
onSubmit(value) { onSubmit(value) {
this.PageNumber = 1 this.PageNumber = 1;
this.pageEvent.pageIndex = 0 this.pageEvent.pageIndex = 0;
this.getAllPlanInfo() this.getAllPlanInfo();
} }
templatePlanChange($event, type) { templatePlanChange($event, type) {
if (type == 1) { if (type == 1) {
this.templatePlan = $event this.templatePlan = $event;
} else if (type == 2) { } else if (type == 2) {
this.customPlan = $event this.customPlan = $event;
} }
if (this.templatePlan || this.customPlan) { if (this.templatePlan || this.customPlan) {
this.reservePlanType = ['16'] this.reservePlanType = ["16"];
} else { } else {
this.reservePlanType = [] this.reservePlanType = [];
} }
} }
companyName: any //单位名称 companyName: any; //单位名称
js: any //所选组织机构 js: any; //所选组织机构
jsId: any //所选组织机构的id jsId: any; //所选组织机构的id
jscheck: boolean //所选组织机构勾选框 jscheck: boolean; //所选组织机构勾选框
unittype: any //单位类型 unittype: any; //单位类型
reservePlanType: any //预案类型 reservePlanType: any; //预案类型
toExamine: any //审核状态 toExamine: any; //审核状态
preparelevel: any //编制级别 preparelevel: any; //编制级别
plcheck: boolean //编制级别勾选框 plcheck: boolean; //编制级别勾选框
planCategory = [] //预案级别 planCategory = []; //预案级别
isFollowed; //重点单位
//重置 //重置
reset() { reset() {
this.IsNewCompanyData = '' this.IsNewCompanyData = "";
this.IsNewData = '' this.IsNewData = "";
this.companyName = '' this.companyName = "";
this.js = '' this.js = "";
this.jsId = '' this.jsId = "";
this.jscheck = false this.jscheck = false;
this.unittype = '' this.unittype = "";
this.reservePlanType = '' this.reservePlanType = "";
this.toExamine = '' this.toExamine = "";
this.preparelevel = '' this.preparelevel = "";
this.integritySort = '' this.integritySort = "";
this.plcheck = false this.plcheck = false;
this.haveyuan = '' this.haveyuan = "";
this.planCategory = [] this.isFollowed = "";
this.planCategory = [];
//重新获取初始化列表 //重新获取初始化列表
// console.log(this.pageEvent) // console.log(this.pageEvent)
this.pageEvent.pageIndex = 0 this.pageEvent.pageIndex = 0;
this.PageNumber = 1 this.PageNumber = 1;
this.templatePlan = false this.templatePlan = false;
this.customPlan = false this.customPlan = false;
this.getAllPlanInfo(); this.getAllPlanInfo();
} }
} }

4
src/app/tabbar/tabbar.component.html

@ -254,6 +254,10 @@
<mat-icon>save_alt</mat-icon> <mat-icon>save_alt</mat-icon>
<span>V级预案转在线导入</span> <span>V级预案转在线导入</span>
</button> </button>
<button mat-menu-item (click)="aFile('/assets/helpword/planonlineimport.zip','如何设置重点单位.zip')">
<mat-icon>save_alt</mat-icon>
<span>如何设置重点单位</span>
</button>
</mat-menu> </mat-menu>
<!-- 全屏 --> <!-- 全屏 -->
<button mat-button (click)="!isfullscreen?fullscreenToggle():closefullscreen()" class="fullscreen"> <button mat-button (click)="!isfullscreen?fullscreenToggle():closefullscreen()" class="fullscreen">

Loading…
Cancel
Save