Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wisdom-ces
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
wisdom-ces
Commits
e8f4e54d
Commit
e8f4e54d
authored
Oct 08, 2018
by
wangqinghua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
签到
parent
d05028a8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
177 additions
and
146 deletions
+177
-146
reportDetail.html
src/pages/report/reportDetail/reportDetail.html
+12
-6
reportDetail.scss
src/pages/report/reportDetail/reportDetail.scss
+143
-132
reportTrack.html
src/pages/report/reportTrack/reportTrack.html
+1
-1
reportTrack.scss
src/pages/report/reportTrack/reportTrack.scss
+21
-7
No files found.
src/pages/report/reportDetail/reportDetail.html
View file @
e8f4e54d
...
...
@@ -9,16 +9,16 @@
</div>
<div
class=
"content-box"
>
<div
class=
"content-box-item
i3
"
(
click
)="
change
(
1
)"
>
<div
class=
"content-box-item
{{type == 1?'bgc-34b4fc':''}}
"
(
click
)="
change
(
1
)"
>
<span
class=
"item-title"
>
未报备
</span>
<span
class=
"item-count"
>
{{itemsOfNotReport.length}}人
</span>
</div>
<div
class=
"content-box-item
i2
"
(
click
)="
change
(
2
)"
>
<div
class=
"content-box-item
{{type == 2?'bgc-34b4fc':''}}
"
(
click
)="
change
(
2
)"
>
<span
class=
"item-title"
>
离沪
</span>
<span
class=
"item-count"
>
{{itemsOfLeave.length}}人
</span>
</div>
<div
class=
"content-box-item
i1
"
(
click
)="
change
(
3
)"
>
<div
class=
"content-box-item
{{type == 3?'bgc-34b4fc':''}}
"
(
click
)="
change
(
3
)"
>
<span
class=
"item-title"
>
不离沪
</span>
<span
class=
"item-count"
>
{{itemsOfNotLeave.length}}人
</span>
</div>
...
...
@@ -39,9 +39,15 @@
<p
*
ngIf=
"type == 2"
class=
"person-batch"
>
离沪地点:{{item.address}}
</p>
</div>
</div>
<button
ion-button
round
class=
"btn color1"
*
ngIf=
"type == 1"
>
未报备
</button>
<button
ion-button
round
class=
"btn color2"
*
ngIf=
"type == 2"
>
离沪
</button>
<button
ion-button
round
class=
"btn color3"
*
ngIf=
"type == 3"
>
不离沪
</button>
<div>
<p>
<button
ion-button
round
class=
"btn color1"
*
ngIf=
"type == 1"
>
未报备
</button>
<button
ion-button
round
class=
"btn color2"
*
ngIf=
"type == 2"
>
离沪
</button>
<button
ion-button
round
class=
"btn color3"
*
ngIf=
"type == 3"
>
不离沪
</button>
</p>
<p
style=
"color:#24bafc;margin-top: 6px"
>
协助报备
</p>
</div>
</div>
</ion-item>
</ion-list>
...
...
src/pages/report/reportDetail/reportDetail.scss
View file @
e8f4e54d
page-reportDetail
{
.searchToolBar
{
display
:
flex
;
flex-direction
:
row
;
align-items
:
center
;
justify-content
:
left
;
box-sizing
:
border-box
;
}
.activity-title
{
background-color
:
#f5f5f5
;
font-size
:
12px
;
color
:
#b2b2b2
;
padding-left
:
10px
;
padding-top
:
5px
;
padding-bottom
:
5px
;
}
.content-box
{
display
:
flex
;
flex-direction
:
row
;
align-items
:
center
;
justify-content
:
center
;
box-sizing
:
border-box
;
border-bottom
:
1px
solid
#cccccc
;
}
.content-box-item
{
.searchToolBar
{
display
:
flex
;
flex-direction
:
row
;
align-items
:
center
;
justify-content
:
left
;
box-sizing
:
border-box
;
}
.activity-title
{
background-color
:
#f5f5f5
;
font-size
:
12px
;
color
:
#b2b2b2
;
padding-left
:
10px
;
padding-top
:
5px
;
padding-bottom
:
5px
;
}
.content-box
{
display
:
flex
;
flex-direction
:
row
;
align-items
:
center
;
justify-content
:
center
;
box-sizing
:
border-box
;
border-bottom
:
1px
solid
#cccccc
;
}
.content-box-item
{
width
:
105px
;
height
:
45
px
;
padding
:
12
px
;
margin
:
8px
7px
;
display
:
flex
;
flex-direction
:
column
;
align-items
:
center
;
justify-content
:
center
;
box-sizing
:
border-box
;
font-size
:
14px
;
display
:
flex
;
flex-direction
:
column
;
align-items
:
center
;
justify-content
:
center
;
box-sizing
:
border-box
;
font-size
:
14px
;
border-radius
:
2px
;
color
:
white
;
}
.item-count
{
font-weight
:
bold
;
}
.i1
{
background-color
:
#70c1df
;
}
.i2
{
background-color
:
#64d262
;
}
.i3
{
background-color
:
#ef8355
;
}
.btn
{
float
:
right
;
background-color
:
white
;
border
:
1px
solid
#90da91
;
color
:
#90da91
;
margin
:
0
0
;
font-size
:
6px
;
}
.color1
{
border-color
:
#93cfe5
;
color
:
#93cfe5
;
}
.color2
{
border-color
:
#90db90
;
color
:
#90db90
;
}
.color3
{
border-color
:
#f3a778
;
color
:
#f3a778
;
}
.group
{
display
:
flex
;
flex-direction
:
row
;
align-items
:
center
;
justify-content
:
space-between
;
box-sizing
:
border-box
;
}
.inner-group
{
display
:
flex
;
flex-direction
:
row
;
align-items
:
center
;
justify-content
:
left
;
box-sizing
:
border-box
;
}
.person-photo
{
width
:
48px
;
height
:
48px
;
margin-right
:
10px
;
}
.item-box
{
display
:
inline-block
;
}
.person-name
{
font-size
:
18px
;
color
:
black
;
}
.person-sex-male
{
font-size
:
14px
;
color
:
#6bc7fd
;
font-weight
:
bolder
;
margin-left
:
5px
;
}
.person-sex-female
{
font-size
:
14px
;
color
:
#f0a7ea
;
font-weight
:
bolder
;
margin-left
:
5px
;
}
.person-batch
{
font-size
:
14px
;
color
:
#666666
;
}
.back-btn
{
width
:
30px
;
height
:
30px
;
}
border
:
1px
solid
#34b4fc
;
}
.content-box-item.bgc-34b4fc
.item-title
,
.content-box-item.bgc-34b4fc
.item-count
{
color
:
white
;
}
.item-title
{
color
:
#34b4fc
;
}
.item-count
{
color
:
#999999
;
}
.i1
{
background-color
:
#70c1df
;
}
.i2
{
background-color
:
#64d262
;
}
.i3
{
background-color
:
#ef8355
;
}
.btn
{
background-color
:
white
;
border
:
1px
solid
#90da91
;
color
:
#90da91
;
margin
:
0
0
;
font-size
:
6px
;
}
.color1
{
border-color
:
#93cfe5
;
color
:
#93cfe5
;
border-radius
:
3px
;
}
.color2
{
border-color
:
#90db90
;
color
:
#90db90
;
border-radius
:
3px
;
}
.color3
{
border-color
:
#f3a778
;
color
:
#f3a778
;
border-radius
:
3px
;
}
.group
{
display
:
flex
;
flex-direction
:
row
;
align-items
:
center
;
justify-content
:
space-between
;
box-sizing
:
border-box
;
}
.inner-group
{
display
:
flex
;
flex-direction
:
row
;
align-items
:
center
;
justify-content
:
left
;
box-sizing
:
border-box
;
}
.person-photo
{
width
:
48px
;
height
:
48px
;
margin-right
:
10px
;
}
.item-box
{
display
:
inline-block
;
}
.person-name
{
font-size
:
18px
;
color
:
black
;
}
.person-sex-male
{
font-size
:
14px
;
color
:
#6bc7fd
;
font-weight
:
bolder
;
margin-left
:
5px
;
}
.person-sex-female
{
font-size
:
14px
;
color
:
#f0a7ea
;
font-weight
:
bolder
;
margin-left
:
5px
;
}
.person-batch
{
font-size
:
14px
;
color
:
#666666
;
}
.back-btn
{
width
:
30px
;
height
:
30px
;
}
.bgc-34b4fc
{
background-color
:
#34b4fc
;
}
}
src/pages/report/reportTrack/reportTrack.html
View file @
e8f4e54d
...
...
@@ -29,7 +29,7 @@
</div>
</div>
<div
class=
"right"
>
<
button
class=
"participation"
>
人员参与情况
</butto
n>
<
span
class=
"color-24bafc"
>
人员参与情况 >
</spa
n>
</div>
</div>
</div>
...
...
src/pages/report/reportTrack/reportTrack.scss
View file @
e8f4e54d
...
...
@@ -14,19 +14,27 @@ page-ReportTrack {
justify-content
:
left
;
box-sizing
:
border-box
;
}
.list-ios
.item-block
.item-inner
{
border-bottom
:
none
;
}
.item-ios
{
margin-bottom
:
10px
;
}
.item-header
{
display
:
flex
;
flex-direction
:
row
;
align-items
:
center
;
justify-content
:
space-between
;
box-sizing
:
border-box
;
font-size
:
2rem
;
padding
:
10px
0
;
border-bottom
:
1px
solid
#ddd
;
}
.item-content
{
display
:
flex
;
flex-direction
:
row
;
align-items
:
flex-
end
;
align-items
:
flex-
start
;
justify-content
:
space-between
;
box-sizing
:
border-box
;
}
...
...
@@ -42,11 +50,16 @@ page-ReportTrack {
}
.left
{
color
:
#cccccc
;
font-size
:
8px
;
// height: 70px;
// display: inline-block;
color
:
#333333
;
margin-left
:
25px
;
font-size
:
1
.5rem
;
div
{
margin
:
5px
0
;
}
}
.right
{
margin
:
5px
0
;
font-size
:
1
.4rem
;
}
.data
{
...
...
@@ -61,7 +74,7 @@ page-ReportTrack {
color
:
white
}
.color1
{
border-color
:
#f3d88a
;
color
:
#f3d88a
;
...
...
@@ -91,6 +104,7 @@ page-ReportTrack {
box-sizing
:
border-box
;
}
.back-btn
{
width
:
30px
;
height
:
30px
;
...
...
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