Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
regManage
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wangqinghua
regManage
Commits
e7697623
Commit
e7697623
authored
Dec 04, 2019
by
wangqinghua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
d34c8b42
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
12 deletions
+15
-12
deal-detail.html
src/pages/deal/deal-detail/deal-detail.html
+6
-6
contact-detail.html
src/pages/home/contact-detail/contact-detail.html
+2
-2
contact-list.html
src/pages/home/contact-list/contact-list.html
+1
-1
news.ts
src/pages/news/news.ts
+4
-1
tabs.ts
src/pages/tabs/tabs.ts
+2
-2
No files found.
src/pages/deal/deal-detail/deal-detail.html
View file @
e7697623
...
...
@@ -15,37 +15,37 @@
<ion-item>
<ion-label
class=
"item-left"
>
住所:
</ion-label>
<ion-label
class=
"choose"
>
{{detailObj.
representativePerson
VO?.residence || "-"}}
{{detailObj.
company
VO?.residence || "-"}}
</ion-label>
</ion-item>
<ion-item>
<ion-label
class=
"item-left"
>
经费来源:
</ion-label>
<ion-label
class=
"choose"
>
{{detailObj.
representativePerson
VO?.fundingSources || "-"}}
{{detailObj.
company
VO?.fundingSources || "-"}}
</ion-label>
</ion-item>
<ion-item>
<ion-label
class=
"item-left"
>
开办资金:
</ion-label>
<ion-label
class=
"choose"
>
{{detailObj.
representativePerson
VO?.startFunds || "-"}}
{{detailObj.
company
VO?.startFunds || "-"}}
</ion-label>
</ion-item>
<ion-item>
<ion-label
class=
"item-left"
>
举办单位:
</ion-label>
<ion-label
class=
"choose"
>
{{detailObj.
representativePerson
VO?.hostUnit || "-"}}
{{detailObj.
company
VO?.hostUnit || "-"}}
</ion-label>
</ion-item>
<ion-item>
<ion-label
class=
"item-left"
>
有效期:
</ion-label>
<ion-label
class=
"choose"
>
{{detailObj.
representativePerson
VO?.effectiveTime || "-"}}
{{detailObj.
company
VO?.effectiveTime || "-"}}
</ion-label>
</ion-item>
<ion-item>
<ion-label
class=
"item-left"
>
宗旨和业务范围:
</ion-label>
<ion-label
class=
"choose"
>
{{detailObj.
representativePerson
VO?.businessRange || "-"}}
{{detailObj.
company
VO?.businessRange || "-"}}
</ion-label>
</ion-item>
</div>
...
...
src/pages/home/contact-detail/contact-detail.html
View file @
e7697623
...
...
@@ -24,7 +24,7 @@
<div
class=
"info-item"
>
<span
class=
"info-span"
>
姓名
</span>
<div
class=
"info-item-content"
>
<span
class=
"info"
>
{{personInfo.
fullN
ame}}
</span>
<span
class=
"info"
>
{{personInfo.
n
ame}}
</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
?.
mobile
Phone
)"
>
拨打手机
</button>
</ion-content>
src/pages/home/contact-list/contact-list.html
View file @
e7697623
...
...
@@ -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"
>
...
...
src/pages/news/news.ts
View file @
e7697623
...
...
@@ -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
.
unit
T
ype
==
1
?
"1"
:
"2"
,
type
:
item
.
unit
t
ype
==
1
?
"1"
:
"2"
,
};
this
.
navCtrl
.
push
(
DealDetailPage
,
{
"item"
:
data
});
}
...
...
src/pages/tabs/tabs.ts
View file @
e7697623
...
...
@@ -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
;
}
}
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment