|
@@ -1,13 +1,61 @@
|
|
|
<ion-header [translucent]="true">
|
|
|
<ion-toolbar>
|
|
|
- <ion-title>boos</ion-title>
|
|
|
+ <ion-grid>
|
|
|
+ <ion-row>
|
|
|
+ <ion-col style="display: flex; justify-content: flex-start;">
|
|
|
+ <ion-icon name="chevron-back-outline" (click)="back()"></ion-icon>
|
|
|
+ </ion-col>
|
|
|
+ <ion-col style="display: flex; justify-content: center;">
|
|
|
+ boos
|
|
|
+ </ion-col>
|
|
|
+ <ion-col style="display: flex; justify-content: flex-end;">
|
|
|
+ <ion-icon name="notifications-circle-outline"></ion-icon>
|
|
|
+ </ion-col>
|
|
|
+ </ion-row>
|
|
|
+ </ion-grid>
|
|
|
</ion-toolbar>
|
|
|
</ion-header>
|
|
|
|
|
|
-<ion-content [fullscreen]="true">
|
|
|
- <ion-header collapse="condense">
|
|
|
- <ion-toolbar>
|
|
|
- <ion-title size="large">boos</ion-title>
|
|
|
- </ion-toolbar>
|
|
|
- </ion-header>
|
|
|
-</ion-content>
|
|
|
+<div class="page-color">
|
|
|
+ <ion-card>
|
|
|
+ <ion-card-header style="font-size: large; font-weight: bold;">项目信息</ion-card-header>
|
|
|
+ <ion-card-content style="margin-bottom: 10px;">
|
|
|
+ <ion-row style="margin-bottom: 10px;">
|
|
|
+ <ion-col style="display: flex; justify-content: flex-start;">项目名称: 新产品开发</ion-col>
|
|
|
+ <ion-col style="display: flex; justify-content: flex-end;">进度 45%</ion-col>
|
|
|
+ </ion-row>
|
|
|
+ <ion-progress-bar [value]="0.45" style="height: 20px; margin-bottom: 10px;"></ion-progress-bar>
|
|
|
+ <ion-button>查看详情</ion-button>
|
|
|
+ </ion-card-content>
|
|
|
+ </ion-card>
|
|
|
+ <ion-card>
|
|
|
+ <ion-card-header style="font-size: large; font-weight: bold;">员工工资信息</ion-card-header>
|
|
|
+ <ion-list style="margin-inline: 15px;">
|
|
|
+ <ion-row style="margin-bottom: 10px;">
|
|
|
+ <ion-col style="display: flex; justify-content: flex-start;">张三</ion-col>
|
|
|
+ <ion-col style="display: flex; justify-content: flex-end;">工资:¥7500</ion-col>
|
|
|
+ </ion-row>
|
|
|
+ <ion-row style="margin-bottom: 10px;">
|
|
|
+ <ion-col style="display: flex; justify-content: flex-start;">李四</ion-col>
|
|
|
+ <ion-col style="display: flex; justify-content: flex-end;">工资:¥7500</ion-col>
|
|
|
+ </ion-row>
|
|
|
+ </ion-list>
|
|
|
+ <ion-button style="margin-left: 15px;">查看详情</ion-button>
|
|
|
+ </ion-card>
|
|
|
+ <ion-card>
|
|
|
+ <ion-card-header style="font-size: large; font-weight: bold;">员工完成度</ion-card-header>
|
|
|
+ <ion-list style="margin-inline: 15px;">
|
|
|
+ <ion-row style="margin-bottom: 10px;">
|
|
|
+ <ion-col style="display: flex; justify-content: flex-start;">张三</ion-col>
|
|
|
+ <ion-col style="display: flex; justify-content: flex-end;">完成度:30%</ion-col>
|
|
|
+ <ion-progress-bar [value]="0.30" style="height: 20px; margin-bottom: 10px;"></ion-progress-bar>
|
|
|
+ </ion-row>
|
|
|
+ <ion-row style="margin-bottom: 10px;">
|
|
|
+ <ion-col style="display: flex; justify-content: flex-start;">李四</ion-col>
|
|
|
+ <ion-col style="display: flex; justify-content: flex-end;">完成度:50%</ion-col>
|
|
|
+ <ion-progress-bar [value]="0.50" style="height: 20px; margin-bottom: 10px;"></ion-progress-bar>
|
|
|
+ </ion-row>
|
|
|
+ </ion-list>
|
|
|
+ <ion-button style="margin-left: 15px;">查看详情</ion-button>
|
|
|
+ </ion-card>
|
|
|
+</div>
|