Commit e7697623 authored by wangqinghua's avatar wangqinghua

update

parent d34c8b42
......@@ -15,37 +15,37 @@
<ion-item>
<ion-label class="item-left">住所:</ion-label>
<ion-label class="choose">
{{detailObj.representativePersonVO?.residence || "-"}}
{{detailObj.companyVO?.residence || "-"}}
</ion-label>
</ion-item>
<ion-item>
<ion-label class="item-left">经费来源:</ion-label>
<ion-label class="choose">
{{detailObj.representativePersonVO?.fundingSources || "-"}}
{{detailObj.companyVO?.fundingSources || "-"}}
</ion-label>
</ion-item>
<ion-item>
<ion-label class="item-left">开办资金:</ion-label>
<ion-label class="choose">
{{detailObj.representativePersonVO?.startFunds || "-"}}
{{detailObj.companyVO?.startFunds || "-"}}
</ion-label>
</ion-item>
<ion-item>
<ion-label class="item-left">举办单位:</ion-label>
<ion-label class="choose">
{{detailObj.representativePersonVO?.hostUnit || "-"}}
{{detailObj.companyVO?.hostUnit || "-"}}
</ion-label>
</ion-item>
<ion-item>
<ion-label class="item-left">有效期:</ion-label>
<ion-label class="choose">
{{detailObj.representativePersonVO?.effectiveTime || "-"}}
{{detailObj.companyVO?.effectiveTime || "-"}}
</ion-label>
</ion-item>
<ion-item>
<ion-label class="item-left">宗旨和业务范围:</ion-label>
<ion-label class="choose">
{{detailObj.representativePersonVO?.businessRange || "-"}}
{{detailObj.companyVO?.businessRange || "-"}}
</ion-label>
</ion-item>
</div>
......
......@@ -24,7 +24,7 @@
<div class="info-item">
<span class="info-span">姓名</span>
<div class="info-item-content">
<span class="info">{{personInfo.fullName}}</span>
<span class="info">{{personInfo.name}}</span>
</div>
</div>
</ion-item>
......@@ -58,5 +58,5 @@
<button class="call-btn" (click)="call(personInfo?.telephone)">拨打座机</button>
<button class="call-btn" (click)="call(personInfo?.mobile)">拨打手机</button>
<button class="call-btn" (click)="call(personInfo?.mobilePhone)">拨打手机</button>
</ion-content>
......@@ -9,7 +9,7 @@
<ion-content direction="y" scrollbar-y="true">
<ion-list>
<ng-container *ngFor="let person of page.list">
<ion-item>
<ion-item (click)="goToInfo(person)">
<div class="contact-box">
<img src="./assets/imgs/man.png" class="contact-img">
<div class="contact-box-right">
......
......@@ -29,6 +29,9 @@ export class NewsPage {
};
this.newSer.noticeSearch(data).subscribe(
(res) => {
res.page.list.notice.forEach(e => {
e.title = e.type == "1" ? "督办提醒" : "待办提醒";
});
this.newList = res.page.list.notice;
}
)
......@@ -37,7 +40,7 @@ export class NewsPage {
goDetail(item) {
const data = {
id: item.scheduleid,
type: item.unitType == 1 ? "1" : "2",
type: item.unittype == 1 ? "1" : "2",
};
this.navCtrl.push(DealDetailPage, {"item": data});
}
......
......@@ -64,7 +64,7 @@ export class TabsPage {
private globle: GlobalData,
private dealSer: DealService,
private appSer: AppService,
private newSer:NewsService,
private newSer: NewsService,
private events: Events, private nav: NavController, private tabSer: TabService) {
this.searchDeal("1");
......@@ -121,7 +121,7 @@ export class TabsPage {
this.newSer.noticeSearch(data).subscribe(
(res) => {
if (res.page.list.notice && res.page.list.notice.length > 0) {
this.tabRoots[2].badge = res.page.totalCount;
this.tabRoots[2].badge = res.page.list.notice.length;
}
}
)
......
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