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
229cc94c
Commit
229cc94c
authored
Dec 05, 2019
by
wangqinghua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
9cccddc7
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
20 additions
and
12 deletions
+20
-12
echart-data.scss
src/components/echart-data/echart-data.scss
+1
-1
filter.html
src/components/filter/filter.html
+1
-1
filter.ts
src/components/filter/filter.ts
+4
-0
do-verity.html
src/pages/home/do-verity/do-verity.html
+10
-8
do-verity.ts
src/pages/home/do-verity/do-verity.ts
+2
-0
person.html
src/pages/mine/person/person.html
+2
-2
No files found.
src/components/echart-data/echart-data.scss
View file @
229cc94c
echart-data
{
.echart-pie
{
width
:
100%
;
height
:
16
0px
;
height
:
20
0px
;
}
}
src/components/filter/filter.html
View file @
229cc94c
...
...
@@ -7,7 +7,7 @@
<span
(
click
)="
selectApproval
(
approval
)"
*
ngFor=
"let approval of approvaList"
[
ngClass
]="{'
selectItem
'
:approvalObj
?.
type =
=
approval
.
type
}"
>
{{approval.name}}
</span>
</div>
<div
class=
"area"
>
<div
*
ngIf=
"globleArea?.name == '市属'"
class=
"area"
>
<p>
区域
</p>
<span
(
click
)="
selectArea
(
area
)"
*
ngFor=
"let area of areaList"
[
ngClass
]="{'
selectItem
'
:areaObj
?.
code =
=
area
.
code
}"
>
{{area.name}}
</span>
...
...
src/components/filter/filter.ts
View file @
229cc94c
import
{
Component
}
from
'@angular/core'
;
import
{
NavParams
,
ViewController
}
from
"ionic-angular"
;
import
{
LoginService
}
from
"../../pages/login/login.service"
;
import
{
GlobalData
}
from
"../../core/GlobleData"
;
@
Component
({
selector
:
'filter'
,
...
...
@@ -19,11 +20,14 @@ export class FilterComponent {
areaObj
;
areaList
=
[];
globleArea
;
constructor
(
private
viewCtrl
:
ViewController
,
private
params
:
NavParams
,
private
globle
:
GlobalData
,
private
loginSer
:
LoginService
)
{
this
.
areaObj
=
this
.
params
.
get
(
"areaObj"
);
this
.
approvalObj
=
this
.
params
.
get
(
"approvalObj"
);
this
.
globleArea
=
this
.
globle
.
area
;
this
.
getArea
()
}
...
...
src/pages/home/do-verity/do-verity.html
View file @
229cc94c
...
...
@@ -10,8 +10,10 @@
<span>
{{searchObj.approvalObj?.name }}
</span>
</div>
<div
class=
"area"
>
<span>
区域:
</span>
<span>
{{searchObj.areaObj?.name}}
</span>
<ng-container
*
ngIf=
"globleArea?.name == '市属'"
>
<span>
区域:
</span>
<span>
{{searchObj.areaObj?.name}}
</span>
</ng-container>
</div>
<div
class=
"filter"
(
click
)="
openFilter
()"
>
<img
src=
"./assets/imgs/filter.png"
alt=
""
>
...
...
@@ -47,14 +49,14 @@
</div>
<div
class=
"inner-button"
>
<div
class=
"text-right"
>
<span
(
click
)="
goToDetail
(
item
)"
*
ngIf=
"item.status ==
1
"
class=
"btn color1"
>
受理
</span>
<span
(
click
)="
goToDetail
(
item
)"
*
ngIf=
"item.status ==
'1'
"
class=
"btn color1"
>
受理
</span>
<span
(
click
)="
handleClick
(
item
,$
event
)"
*
ngIf=
"item.status ==
1
&& mineInfo.roles == 1 && item.dbtype == '0'"
*
ngIf=
"item.status ==
'1'
&& mineInfo.roles == 1 && item.dbtype == '0'"
class=
"btn color1 db"
>
督办事项
</span>
<span
(
click
)="
goToDetail
(
item
)"
*
ngIf=
"item.status ==
2
"
class=
"btn color2"
>
审核
</span>
<span
(
click
)="
goToDetail
(
item
)"
*
ngIf=
"item.status ==
3
"
class=
"btn color3"
>
审批
</span>
<span
(
click
)="
goToDetail
(
item
)"
*
ngIf=
"item.status ==
4
"
class=
"btn color4"
>
办证
</span>
<span
(
click
)="
goToDetail
(
item
)"
*
ngIf=
"item.status ==
5
"
class=
"btn color5"
>
发证
</span>
<span
(
click
)="
goToDetail
(
item
)"
*
ngIf=
"item.status ==
'2'
"
class=
"btn color2"
>
审核
</span>
<span
(
click
)="
goToDetail
(
item
)"
*
ngIf=
"item.status ==
'3'
"
class=
"btn color3"
>
审批
</span>
<span
(
click
)="
goToDetail
(
item
)"
*
ngIf=
"item.status ==
'4'
"
class=
"btn color4"
>
办证
</span>
<span
(
click
)="
goToDetail
(
item
)"
*
ngIf=
"item.status ==
'5'
"
class=
"btn color5"
>
发证
</span>
</div>
</div>
</div>
...
...
src/pages/home/do-verity/do-verity.ts
View file @
229cc94c
...
...
@@ -38,6 +38,7 @@ export class DoVerityPage {
};
yearmonth
;
mineInfo
;
globleArea
;
constructor
(
public
navCtrl
:
NavController
,
public
navParams
:
NavParams
,
private
globle
:
GlobalData
,
...
...
@@ -49,6 +50,7 @@ export class DoVerityPage {
this
.
mineInfo
=
this
.
globle
.
userObj
;
this
.
searchObj
.
areaCode
=
this
.
globle
.
userObj
.
area
;
this
.
searchObj
.
areaObj
=
this
.
globle
.
area
;
this
.
globleArea
=
this
.
globle
.
area
;
}
...
...
src/pages/mine/person/person.html
View file @
229cc94c
...
...
@@ -6,7 +6,7 @@
<ion-content
class=
"content"
>
<div
class=
"content-title"
>
基础信息
(如需修改请联系人事处)
基础信息
</div>
<ion-list>
<ion-item>
...
...
@@ -46,7 +46,7 @@
</ion-item>
</ion-list>
<div
class=
"content-title"
>
补充信息
(可编辑)
补充信息
</div>
<ion-list>
...
...
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