Commit 2de608de authored by wangqinghua's avatar wangqinghua

update

parent 84e92438
...@@ -127,7 +127,9 @@ export class DataReportPage { ...@@ -127,7 +127,9 @@ export class DataReportPage {
}, },
axisLabel: { axisLabel: {
interval: 0, interval: 0,
rotate: 45, formatter:function (value) {
return value.split("").join("\n")
}
} }
} }
], ],
...@@ -192,7 +194,9 @@ export class DataReportPage { ...@@ -192,7 +194,9 @@ export class DataReportPage {
}), }),
axisLabel: { axisLabel: {
interval: 0, interval: 0,
rotate: 45, formatter:function (value) {
return value.split("").join("\n")
}
} }
}, },
yAxis: { yAxis: {
......
...@@ -175,7 +175,9 @@ export class HomePage { ...@@ -175,7 +175,9 @@ export class HomePage {
}, },
axisLabel: { axisLabel: {
interval: 0, interval: 0,
rotate: 45, formatter:function (value) {
return value.split("").join("\n")
}
} }
} }
], ],
......
...@@ -224,7 +224,7 @@ ...@@ -224,7 +224,7 @@
<div class="item-box"> <div class="item-box">
<div class="left">联系电话:</div> <div class="left">联系电话:</div>
<div class="right"> <div class="right">
<span>{{infoObj?.lxdh || "-"}}</span> <span>{{infoObj?.lxrdh || "-"}}</span>
</div> </div>
</div> </div>
</ng-container> </ng-container>
......
...@@ -29,8 +29,9 @@ export class InfoDetailPage { ...@@ -29,8 +29,9 @@ export class InfoDetailPage {
} }
ionViewDidLoad() { ionViewDidLoad() {
this.getPersonInfo(); if(this.type == 1){
console.log('ionViewDidLoad InfoDetailPage'); this.getPersonInfo();
}
} }
goToYearReport(item) { goToYearReport(item) {
......
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
</ng-container> </ng-container>
<ng-container *ngIf="type == '2'"> <ng-container *ngIf="type == '2'">
<ng-container *ngFor="let item of dqtxList;"> <ng-container *ngFor="let item of dqtxList;">
<div class="notice-card" (click)="goDetail(item)"> <div class="notice-card">
<div class="type-time" style="margin-bottom: 6px">{{item.createdateStr | date:'yyyy-MM-dd' }}</div> <div class="type-time" style="margin-bottom: 6px">{{item.createdateStr | date:'yyyy-MM-dd' }}</div>
<div class="notice-type2"> <div class="notice-type2">
<!-- <p>--> <!-- <p>-->
...@@ -67,7 +67,7 @@ ...@@ -67,7 +67,7 @@
</ng-container> </ng-container>
<ng-container *ngIf="type == '3'"> <ng-container *ngIf="type == '3'">
<ng-container *ngFor="let item of rgtxList;"> <ng-container *ngFor="let item of rgtxList;">
<div class="notice-card" (click)="goDetail(item)"> <div class="notice-card">
<div class="type-time" style="margin-bottom: 6px">{{item.remindDateStr | date:'yyyy-MM-dd' }}</div> <div class="type-time" style="margin-bottom: 6px">{{item.remindDateStr | date:'yyyy-MM-dd' }}</div>
<div class="notice-type2"> <div class="notice-type2">
<p> <p>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment