diff --git a/src/app/pages/pages.module.ts b/src/app/pages/pages.module.ts index 17142f1..b4ecec9 100644 --- a/src/app/pages/pages.module.ts +++ b/src/app/pages/pages.module.ts @@ -31,6 +31,7 @@ import { NzMessageModule } from 'ng-zorro-antd/message'; import { NzSpinModule } from 'ng-zorro-antd/spin'; import { NzTreeModule } from 'ng-zorro-antd/tree'; import { NzCollapseModule } from 'ng-zorro-antd/collapse'; +import { NzStepsModule } from 'ng-zorro-antd/steps'; import { TodayWarningAdminComponent } from './today-warning-admin/today-warning-admin.component'; import { CriminalRecordsAdminComponent } from './criminal-records-admin/criminal-records-admin.component'; import { EquipmentInfoComponent } from './equipment-info/equipment-info.component'; @@ -78,8 +79,8 @@ import { GetOutOfLineDetailsComponent } from './today-warning/get-out-of-line-de NzSpinModule, NzTreeModule, NzTreeSelectModule, - NzCollapseModule - + NzCollapseModule, + NzStepsModule ], entryComponents: [AddequipmentComponent, EditequipmentComponent,GetOutOfLineDetailsComponent], schemas: [CUSTOM_ELEMENTS_SCHEMA] diff --git a/src/app/pages/plan/plan.component.html b/src/app/pages/plan/plan.component.html index fb92d56..be2c7c5 100644 --- a/src/app/pages/plan/plan.component.html +++ b/src/app/pages/plan/plan.component.html @@ -101,7 +101,23 @@
-
+
+ + + +
diff --git a/src/app/pages/plan/plan.component.scss b/src/app/pages/plan/plan.component.scss index ea39903..6b10bb4 100644 --- a/src/app/pages/plan/plan.component.scss +++ b/src/app/pages/plan/plan.component.scss @@ -292,5 +292,33 @@ } .bottomPlanCenter{ height: 35px; + line-height: 38px; + display: flex; + overflow: hidden; + label{ + display: block; + } + label:first-child{ + width: 15%; + height: 100%; + text-align: center; + button { + width: 60%; + height: 30px; + line-height: 30px; + color: #23D9FF; + //padding: 0; + background: rgba(35, 153, 255, 0.41); + border: 1px solid rgba(35, 217, 255, 0.4); + } + } + label:nth-child(2){ flex: 1; overflow: hidden; img{ height: 35px; width: auto; vertical-align: top; } } + label:last-child{ + width: 15%; + height: 100%; + text-align: center; + color: #fff; + .anticon{ font-size: 20px; margin: 0 10px; } + } } } \ No newline at end of file diff --git a/src/assets/images/stepIcon.png b/src/assets/images/stepIcon.png new file mode 100644 index 0000000..ec576ff Binary files /dev/null and b/src/assets/images/stepIcon.png differ