Browse Source

[完善]预案列表重点单位的查看

guangxi
邵佳豪 2 years ago
parent
commit
dd4dbd7051
  1. 3
      src/app/pages/login/login.component.ts
  2. 2
      src/app/plan-management/entry-plan/entry-plan.component.html
  3. 6
      src/app/plan-management/entry-plan/entry-plan.component.ts
  4. 8
      src/index.html

3
src/app/pages/login/login.component.ts

@ -83,6 +83,9 @@ export class LoginComponent implements OnInit {
//查看更新内容
lookUpdateData() {
let dialogRef = this.dialog.open(lookUpdateDataComponent,
{ width: '668px' });

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

@ -185,7 +185,7 @@
<ng-container matColumnDef="isFollowed">
<th mat-header-cell *matHeaderCellDef style="width: 3%;">重点单位</th>
<td mat-cell *matCellDef="let element">
<span title="重点单位" *ngIf="element.isFollowed">
<span title="重点单位" *ngIf="element.company.isFollowed">
<mat-icon style="margin-top: 6px;color: red;">star</mat-icon>
</span>
</td>

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

@ -350,7 +350,7 @@ export class EntryPlanComponent implements OnInit {
customPlan: boolean = false; //自定义预案
getAllPlanInfo() {
let follow;
if (this.isFollowed == "") {
if (!this.isFollowed) {
follow = "";
}
if (this.isFollowed == "0") {
@ -379,7 +379,7 @@ export class EntryPlanComponent implements OnInit {
AuditStatus: this.toExamine || "",
PlanLevel: this.preparelevel || "",
HasChildrenPlanLevel: this.plcheck || "",
IsFollowed: follow,
IsCompanyFollow: follow,
PageNumber: this.PageNumber || "1",
PageSize: this.pageSizeOptions[0],
Sort: this.integritySort ? "integrityscore" : "",
@ -395,8 +395,8 @@ export class EntryPlanComponent implements OnInit {
.subscribe((data: any) => {
this.length = data.totalCount;
this.allPlanInfo = data;
this.tabledataSource = data.items;
console.log('预案列表',this.tabledataSource)
});
}

8
src/index.html

@ -31,12 +31,12 @@
securityJsCode: '0afa0b144398727fad2ca06f5f7156b3'
}
</script>
<script
src="http://10.81.73.39:8000/webapi/maps?v=2.0&key=17bb9b27e49451cde8f2e6655b11ff1a&plugin=AMap.Driving,AMap.MouseTool,AMap.RangingTool"></script>
<script src="http://10.81.73.39:8000/webapi/ui/1.1/main.js"></script>
<!-- <script
src="http://10.81.73.39:8000/webapi/maps?v=2.0&key=17bb9b27e49451cde8f2e6655b11ff1a&plugin=AMap.Driving,AMap.MouseTool,AMap.RangingTool"></script>
<script src="http://10.81.73.39:8000/webapi/ui/1.1/main.js"></script> -->
<script
src="https://webapi.amap.com/maps?v=2.0&key=17bb9b27e49451cde8f2e6655b11ff1a&plugin=AMap.Driving,AMap.MouseTool,AMap.RangingTool"></script>
<script src="https://webapi.amap.com/ui/1.1/main.js"></script> -->
<script src="https://webapi.amap.com/ui/1.1/main.js"></script>
<script src="/assets/html2canvas.js"></script>
<script type="text/javascript" src="/assets/wordexport/jquery.js"></script>
<script type="text/javascript" src="/assets/wordexport/FileSaver.js"></script>

Loading…
Cancel
Save