Commit e8f4e54d authored by wangqinghua's avatar wangqinghua

签到

parent d05028a8
...@@ -9,16 +9,16 @@ ...@@ -9,16 +9,16 @@
</div> </div>
<div class="content-box"> <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-title">未报备</span>
<span class="item-count">{{itemsOfNotReport.length}}人</span> <span class="item-count">{{itemsOfNotReport.length}}人</span>
</div> </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-title">离沪</span>
<span class="item-count">{{itemsOfLeave.length}}人</span> <span class="item-count">{{itemsOfLeave.length}}人</span>
</div> </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-title">不离沪</span>
<span class="item-count">{{itemsOfNotLeave.length}}人</span> <span class="item-count">{{itemsOfNotLeave.length}}人</span>
</div> </div>
...@@ -39,9 +39,15 @@ ...@@ -39,9 +39,15 @@
<p *ngIf="type == 2" class="person-batch">离沪地点:{{item.address}}</p> <p *ngIf="type == 2" class="person-batch">离沪地点:{{item.address}}</p>
</div> </div>
</div> </div>
<div>
<p>
<button ion-button round class="btn color1" *ngIf="type == 1">未报备</button> <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 color2" *ngIf="type == 2">离沪</button>
<button ion-button round class="btn color3" *ngIf="type == 3">不离沪</button> <button ion-button round class="btn color3" *ngIf="type == 3">不离沪</button>
</p>
<p style="color:#24bafc;margin-top: 6px">协助报备</p>
</div>
</div> </div>
</ion-item> </ion-item>
</ion-list> </ion-list>
......
page-reportDetail { page-reportDetail {
.searchToolBar{ .searchToolBar {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
align-items: center; align-items: center;
...@@ -7,7 +7,7 @@ page-reportDetail { ...@@ -7,7 +7,7 @@ page-reportDetail {
box-sizing: border-box; box-sizing: border-box;
} }
.activity-title{ .activity-title {
background-color: #f5f5f5; background-color: #f5f5f5;
font-size: 12px; font-size: 12px;
color: #b2b2b2; color: #b2b2b2;
...@@ -16,7 +16,7 @@ page-reportDetail { ...@@ -16,7 +16,7 @@ page-reportDetail {
padding-bottom: 5px; padding-bottom: 5px;
} }
.content-box{ .content-box {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
align-items: center; align-items: center;
...@@ -25,9 +25,9 @@ page-reportDetail { ...@@ -25,9 +25,9 @@ page-reportDetail {
border-bottom: 1px solid #cccccc; border-bottom: 1px solid #cccccc;
} }
.content-box-item{ .content-box-item {
width: 105px; width: 105px;
height: 45px; padding: 12px;
margin: 8px 7px; margin: 8px 7px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
...@@ -37,27 +37,32 @@ page-reportDetail { ...@@ -37,27 +37,32 @@ page-reportDetail {
font-size: 14px; font-size: 14px;
border-radius: 2px; border-radius: 2px;
color: white; color: white;
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{ }
font-weight: bold; .item-count{
} color: #999999;
}
.i1{ .i1 {
background-color: #70c1df; background-color: #70c1df;
} }
.i2{ .i2 {
background-color: #64d262; background-color: #64d262;
} }
.i3{ .i3 {
background-color: #ef8355; background-color: #ef8355;
} }
.btn{ .btn {
float: right;
background-color: white; background-color: white;
border: 1px solid #90da91; border: 1px solid #90da91;
color: #90da91; color: #90da91;
...@@ -65,22 +70,25 @@ page-reportDetail { ...@@ -65,22 +70,25 @@ page-reportDetail {
font-size: 6px; font-size: 6px;
} }
.color1{ .color1 {
border-color: #93cfe5; border-color: #93cfe5;
color: #93cfe5; color: #93cfe5;
border-radius: 3px;
} }
.color2{ .color2 {
border-color: #90db90; border-color: #90db90;
color: #90db90; color: #90db90;
border-radius: 3px;
} }
.color3{ .color3 {
border-color: #f3a778; border-color: #f3a778;
color: #f3a778; color: #f3a778;
border-radius: 3px;
} }
.group{ .group {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
align-items: center; align-items: center;
...@@ -88,7 +96,7 @@ page-reportDetail { ...@@ -88,7 +96,7 @@ page-reportDetail {
box-sizing: border-box; box-sizing: border-box;
} }
.inner-group{ .inner-group {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
align-items: center; align-items: center;
...@@ -96,44 +104,47 @@ page-reportDetail { ...@@ -96,44 +104,47 @@ page-reportDetail {
box-sizing: border-box; box-sizing: border-box;
} }
.person-photo{ .person-photo {
width: 48px; width: 48px;
height: 48px; height: 48px;
margin-right: 10px; margin-right: 10px;
} }
.item-box{ .item-box {
display: inline-block; display: inline-block;
} }
.person-name{ .person-name {
font-size: 18px; font-size: 18px;
color: black; color: black;
} }
.person-sex-male{ .person-sex-male {
font-size: 14px; font-size: 14px;
color: #6bc7fd; color: #6bc7fd;
font-weight: bolder; font-weight: bolder;
margin-left: 5px; margin-left: 5px;
} }
.person-sex-female{ .person-sex-female {
font-size: 14px; font-size: 14px;
color: #f0a7ea; color: #f0a7ea;
font-weight: bolder; font-weight: bolder;
margin-left: 5px; margin-left: 5px;
} }
.person-batch{ .person-batch {
font-size: 14px; font-size: 14px;
color: #666666; color: #666666;
} }
.back-btn{ .back-btn {
width: 30px; width: 30px;
height: 30px; height: 30px;
} }
.bgc-34b4fc{
background-color: #34b4fc;
}
} }
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
</div> </div>
</div> </div>
<div class="right"> <div class="right">
<button class="participation">人员参与情况</button> <span class="color-24bafc">人员参与情况 ></span>
</div> </div>
</div> </div>
</div> </div>
......
...@@ -14,19 +14,27 @@ page-ReportTrack { ...@@ -14,19 +14,27 @@ page-ReportTrack {
justify-content: left; justify-content: left;
box-sizing: border-box; box-sizing: border-box;
} }
.list-ios .item-block .item-inner{
border-bottom: none;
}
.item-ios{
margin-bottom:10px;
}
.item-header{ .item-header{
display: flex; display: flex;
flex-direction: row; flex-direction: row;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
box-sizing: border-box; box-sizing: border-box;
font-size: 2rem;
padding: 10px 0;
border-bottom: 1px solid #ddd;
} }
.item-content{ .item-content{
display: flex; display: flex;
flex-direction: row; flex-direction: row;
align-items: flex-end; align-items: flex-start;
justify-content: space-between; justify-content: space-between;
box-sizing: border-box; box-sizing: border-box;
} }
...@@ -42,11 +50,16 @@ page-ReportTrack { ...@@ -42,11 +50,16 @@ page-ReportTrack {
} }
.left{ .left{
color: #cccccc; color: #333333;
font-size: 8px;
// height: 70px;
// display: inline-block;
margin-left: 25px; margin-left: 25px;
font-size: 1.5rem;
div{
margin: 5px 0;
}
}
.right{
margin: 5px 0;
font-size: 1.4rem;
} }
.data{ .data{
...@@ -91,6 +104,7 @@ page-ReportTrack { ...@@ -91,6 +104,7 @@ page-ReportTrack {
box-sizing: border-box; box-sizing: border-box;
} }
.back-btn{ .back-btn{
width: 30px; width: 30px;
height: 30px; height: 30px;
......
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