14 changed files with 90 additions and 14 deletions
@ -0,0 +1,13 @@
|
||||
<div class="box"> |
||||
<nz-page-header class="site-page-header" (nzBack)="goback()" nzBackIcon nzSubtitle="返回上一页"></nz-page-header> |
||||
<div class="btnbox"> |
||||
<button nz-button nzType="primary">获取标注底图/更新摄像头图片</button> |
||||
<button nz-button nzType="primary">标注监控区域</button> |
||||
<button nz-button nzType="primary" nzDanger>标注禁止区域</button> |
||||
<button nz-button nzType="primary">保存</button> |
||||
<button nz-button nzType="primary">完成</button> |
||||
</div> |
||||
<div class="imgbox"> |
||||
<img src="../../../assets/images/test/dog.jpg" alt=""> |
||||
</div> |
||||
</div> |
@ -0,0 +1,18 @@
|
||||
.box { |
||||
width: 100%; |
||||
height: 100%; |
||||
background: #fff; |
||||
font-size: 15px; |
||||
color: black; |
||||
box-sizing: border-box; |
||||
display: flex; |
||||
flex-direction: column; |
||||
overflow-y: auto; |
||||
} |
||||
.btnbox{ |
||||
display: flex; |
||||
margin-bottom: 8px; |
||||
button{ |
||||
margin-right: 6px; |
||||
} |
||||
} |
@ -0,0 +1,17 @@
|
||||
import { Component, OnInit } from '@angular/core'; |
||||
|
||||
@Component({ |
||||
selector: 'app-image-label2', |
||||
templateUrl: './image-label2.component.html', |
||||
styleUrls: ['./image-label2.component.scss'] |
||||
}) |
||||
export class ImageLabel2Component implements OnInit { |
||||
|
||||
constructor() { } |
||||
|
||||
ngOnInit(): void { |
||||
} |
||||
goback() { |
||||
history.go(-1) |
||||
} |
||||
} |
Loading…
Reference in new issue