22 changed files with 665 additions and 96 deletions
@ -1 +1,48 @@ |
|||||||
<p>addequipment works!</p> |
<div class="box" id="addequipment"> |
||||||
|
<div class="title"> |
||||||
|
<div class="titlecontent"> |
||||||
|
新增消防器材 |
||||||
|
</div> |
||||||
|
<i nz-icon nzType="close" nzTheme="outline" (click)="destroyModal()"></i> |
||||||
|
</div> |
||||||
|
<form nz-form [formGroup]="validateForm" class="form"> |
||||||
|
<p>消防器材名称</p> |
||||||
|
<nz-form-item> |
||||||
|
<nz-form-control> |
||||||
|
<nz-input-group> |
||||||
|
<input nz-input type="text" formControlName="name" placeholder="请输入名称" /> |
||||||
|
</nz-input-group> |
||||||
|
</nz-form-control> |
||||||
|
</nz-form-item> |
||||||
|
<p>规格</p> |
||||||
|
<nz-form-item> |
||||||
|
<nz-form-control> |
||||||
|
<nz-input-group> |
||||||
|
<input nz-input type="text" formControlName="specification" placeholder="请输入规格" /> |
||||||
|
</nz-input-group> |
||||||
|
</nz-form-control> |
||||||
|
</nz-form-item> |
||||||
|
<p>购入日期</p> |
||||||
|
<nz-form-item> |
||||||
|
<nz-form-control> |
||||||
|
<nz-date-picker formControlName="buytime" nzPlaceHolder="请输入购入日期"></nz-date-picker> |
||||||
|
</nz-form-control> |
||||||
|
</nz-form-item> |
||||||
|
<p>生产日期</p> |
||||||
|
<nz-form-item> |
||||||
|
<nz-form-control> |
||||||
|
<nz-date-picker formControlName="prodtime" nzPlaceHolder="请输入生产日期"></nz-date-picker> |
||||||
|
</nz-form-control> |
||||||
|
</nz-form-item> |
||||||
|
<p>有效期至</p> |
||||||
|
<nz-form-item> |
||||||
|
<nz-form-control> |
||||||
|
<nz-date-picker formControlName="validitytime" nzPlaceHolder="有效期至"></nz-date-picker> |
||||||
|
</nz-form-control> |
||||||
|
</nz-form-item> |
||||||
|
<div class="btnbox"> |
||||||
|
<button nz-button type="submit" class="ok" (click)="ok()">确定</button> |
||||||
|
<button nz-button type="button" class="cancel" (click)="destroyModal()">取消</button> |
||||||
|
</div> |
||||||
|
</form> |
||||||
|
</div> |
||||||
|
@ -0,0 +1,82 @@ |
|||||||
|
.box { |
||||||
|
.title { |
||||||
|
font-family: sybold; |
||||||
|
width: 100%; |
||||||
|
height: 48px; |
||||||
|
background: linear-gradient(270deg, rgba(35, 153, 255, 0) 0%, rgba(35, 153, 255, 0.57) 50%, rgba(35, 153, 255, 0) 100%); |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
position: relative; |
||||||
|
|
||||||
|
.titlecontent { |
||||||
|
width: 100%; |
||||||
|
height: 32px; |
||||||
|
line-height: 32px; |
||||||
|
background: linear-gradient(270deg, rgba(35, 153, 255, 0) 0%, rgba(35, 153, 255, 0.57) 50%, rgba(35, 153, 255, 0) 100%); |
||||||
|
text-align: center; |
||||||
|
color: #91CCFF; |
||||||
|
font-size: 16px; |
||||||
|
} |
||||||
|
|
||||||
|
i { |
||||||
|
position: absolute; |
||||||
|
right: 12px; |
||||||
|
color: #fff; |
||||||
|
font-size: 18px; |
||||||
|
cursor: pointer; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
.form { |
||||||
|
box-sizing: border-box; |
||||||
|
padding: 0 17px; |
||||||
|
|
||||||
|
p { |
||||||
|
margin-bottom: 0; |
||||||
|
color: #C4E2FC; |
||||||
|
margin: 16px 0; |
||||||
|
} |
||||||
|
|
||||||
|
nz-form-item { |
||||||
|
margin-bottom: 0; |
||||||
|
|
||||||
|
input { |
||||||
|
color: rgba(145, 204, 255, 0.95) !important; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
nz-date-picker { |
||||||
|
background-color: #143c61; |
||||||
|
width: 100%; |
||||||
|
} |
||||||
|
|
||||||
|
.btnbox { |
||||||
|
width: 100%; |
||||||
|
margin-top: 24px; |
||||||
|
margin-bottom: 17px; |
||||||
|
display: flex; |
||||||
|
justify-content: flex-end; |
||||||
|
|
||||||
|
button { |
||||||
|
border-radius: 0px; |
||||||
|
color: #91CCFF; |
||||||
|
} |
||||||
|
|
||||||
|
button:nth-child(2) { |
||||||
|
margin-left: 16px; |
||||||
|
} |
||||||
|
|
||||||
|
.ok { |
||||||
|
background: rgba(0, 129, 255, 0.4); |
||||||
|
} |
||||||
|
|
||||||
|
.cancel { |
||||||
|
border: 1px solid #C4E2FC; |
||||||
|
background: #0c1e38; |
||||||
|
color: rgba(99, 102, 105, 0.6); |
||||||
|
box-shadow: 0 0 3px 0 #fff inset; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -1 +1,48 @@ |
|||||||
<p>editequipment works!</p> |
<div class="box" id="addequipment"> |
||||||
|
<div class="title"> |
||||||
|
<div class="titlecontent"> |
||||||
|
编辑消防器材 |
||||||
|
</div> |
||||||
|
<i nz-icon nzType="close" nzTheme="outline" (click)="destroyModal()"></i> |
||||||
|
</div> |
||||||
|
<form nz-form [formGroup]="validateForm" class="form"> |
||||||
|
<p>消防器材名称</p> |
||||||
|
<nz-form-item> |
||||||
|
<nz-form-control> |
||||||
|
<nz-input-group> |
||||||
|
<input nz-input type="text" formControlName="name" placeholder="请输入名称" /> |
||||||
|
</nz-input-group> |
||||||
|
</nz-form-control> |
||||||
|
</nz-form-item> |
||||||
|
<p>规格</p> |
||||||
|
<nz-form-item> |
||||||
|
<nz-form-control> |
||||||
|
<nz-input-group> |
||||||
|
<input nz-input type="text" formControlName="specification" placeholder="请输入规格" /> |
||||||
|
</nz-input-group> |
||||||
|
</nz-form-control> |
||||||
|
</nz-form-item> |
||||||
|
<p>购入日期</p> |
||||||
|
<nz-form-item> |
||||||
|
<nz-form-control> |
||||||
|
<nz-date-picker formControlName="buytime" nzPlaceHolder="请输入购入日期"></nz-date-picker> |
||||||
|
</nz-form-control> |
||||||
|
</nz-form-item> |
||||||
|
<p>生产日期</p> |
||||||
|
<nz-form-item> |
||||||
|
<nz-form-control> |
||||||
|
<nz-date-picker formControlName="prodtime" nzPlaceHolder="请输入生产日期"></nz-date-picker> |
||||||
|
</nz-form-control> |
||||||
|
</nz-form-item> |
||||||
|
<p>有效期至</p> |
||||||
|
<nz-form-item> |
||||||
|
<nz-form-control> |
||||||
|
<nz-date-picker formControlName="validitytime" nzPlaceHolder="有效期至"></nz-date-picker> |
||||||
|
</nz-form-control> |
||||||
|
</nz-form-item> |
||||||
|
<div class="btnbox"> |
||||||
|
<button nz-button type="submit" class="ok" (click)="ok()">确定</button> |
||||||
|
<button nz-button type="button" class="cancel" (click)="destroyModal()">取消</button> |
||||||
|
</div> |
||||||
|
</form> |
||||||
|
</div> |
||||||
|
@ -0,0 +1,82 @@ |
|||||||
|
.box { |
||||||
|
.title { |
||||||
|
font-family: sybold; |
||||||
|
width: 100%; |
||||||
|
height: 48px; |
||||||
|
background: linear-gradient(270deg, rgba(35, 153, 255, 0) 0%, rgba(35, 153, 255, 0.57) 50%, rgba(35, 153, 255, 0) 100%); |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
position: relative; |
||||||
|
|
||||||
|
.titlecontent { |
||||||
|
width: 100%; |
||||||
|
height: 32px; |
||||||
|
line-height: 32px; |
||||||
|
background: linear-gradient(270deg, rgba(35, 153, 255, 0) 0%, rgba(35, 153, 255, 0.57) 50%, rgba(35, 153, 255, 0) 100%); |
||||||
|
text-align: center; |
||||||
|
color: #91CCFF; |
||||||
|
font-size: 16px; |
||||||
|
} |
||||||
|
|
||||||
|
i { |
||||||
|
position: absolute; |
||||||
|
right: 12px; |
||||||
|
color: #fff; |
||||||
|
font-size: 18px; |
||||||
|
cursor: pointer; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
.form { |
||||||
|
box-sizing: border-box; |
||||||
|
padding: 0 17px; |
||||||
|
|
||||||
|
p { |
||||||
|
margin-bottom: 0; |
||||||
|
color: #C4E2FC; |
||||||
|
margin: 16px 0; |
||||||
|
} |
||||||
|
|
||||||
|
nz-form-item { |
||||||
|
margin-bottom: 0; |
||||||
|
|
||||||
|
input { |
||||||
|
color: rgba(145, 204, 255, 0.95) !important; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
nz-date-picker { |
||||||
|
background-color: #143c61; |
||||||
|
width: 100%; |
||||||
|
} |
||||||
|
|
||||||
|
.btnbox { |
||||||
|
width: 100%; |
||||||
|
margin-top: 24px; |
||||||
|
margin-bottom: 17px; |
||||||
|
display: flex; |
||||||
|
justify-content: flex-end; |
||||||
|
|
||||||
|
button { |
||||||
|
border-radius: 0px; |
||||||
|
color: #91CCFF; |
||||||
|
} |
||||||
|
|
||||||
|
button:nth-child(2) { |
||||||
|
margin-left: 16px; |
||||||
|
} |
||||||
|
|
||||||
|
.ok { |
||||||
|
background: rgba(0, 129, 255, 0.4); |
||||||
|
} |
||||||
|
|
||||||
|
.cancel { |
||||||
|
border: 1px solid #C4E2FC; |
||||||
|
background: #0c1e38; |
||||||
|
color: rgba(99, 102, 105, 0.6); |
||||||
|
box-shadow: 0 0 3px 0 #fff inset; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -1 +1,88 @@ |
|||||||
<p>oil-station-info works!</p> |
<div class="box" id="oilStationInfo"> |
||||||
|
<div class="content"> |
||||||
|
<div class="title"> |
||||||
|
<app-title [name]="'编辑基本信息'"></app-title> |
||||||
|
</div> |
||||||
|
<div class="tablebox"> |
||||||
|
<div class="table"> |
||||||
|
<table> |
||||||
|
<tr> |
||||||
|
<td class="head">所属组织机构</td> |
||||||
|
<td class="text"></td> |
||||||
|
<td class="head">开业时间</td> |
||||||
|
<td class="text"></td> |
||||||
|
</tr> |
||||||
|
<tr> |
||||||
|
<td class="head">油站类型</td> |
||||||
|
<td class="text"></td> |
||||||
|
<td class="head">车道数量</td> |
||||||
|
<td class="text"></td> |
||||||
|
</tr> |
||||||
|
<tr> |
||||||
|
<td class="head">地址</td> |
||||||
|
<td colspan="3"></td> |
||||||
|
</tr> |
||||||
|
</table> |
||||||
|
<table> |
||||||
|
<tr> |
||||||
|
<td class="head">辖区派出所</td> |
||||||
|
<td class="text"></td> |
||||||
|
<td class="head">地址</td> |
||||||
|
<td class="text"></td> |
||||||
|
</tr> |
||||||
|
<tr> |
||||||
|
<td class="head">距离</td> |
||||||
|
<td class="text"></td> |
||||||
|
<td class="head">联系方式</td> |
||||||
|
<td class="text"></td> |
||||||
|
</tr> |
||||||
|
</table> |
||||||
|
<table> |
||||||
|
<tr> |
||||||
|
<td class="head">辖区医院</td> |
||||||
|
<td class="text"></td> |
||||||
|
<td class="head">地址</td> |
||||||
|
<td class="text"></td> |
||||||
|
</tr> |
||||||
|
<tr> |
||||||
|
<td class="head">距离</td> |
||||||
|
<td class="text"></td> |
||||||
|
<td class="head">联系方式</td> |
||||||
|
<td class="text"></td> |
||||||
|
</tr> |
||||||
|
</table> |
||||||
|
<table> |
||||||
|
<tr> |
||||||
|
<td class="head">辖区消防队</td> |
||||||
|
<td class="text"></td> |
||||||
|
<td class="head">地址</td> |
||||||
|
<td class="text"></td> |
||||||
|
</tr> |
||||||
|
<tr> |
||||||
|
<td class="head">距离</td> |
||||||
|
<td class="text"></td> |
||||||
|
<td class="head">联系方式</td> |
||||||
|
<td class="text"></td> |
||||||
|
</tr> |
||||||
|
</table> |
||||||
|
<table class="imgtable"> |
||||||
|
<tr> |
||||||
|
<td class="head">营业执照</td> |
||||||
|
<td colspan="3"></td> |
||||||
|
</tr> |
||||||
|
<tr> |
||||||
|
<td class="head">危险化学品<br>经营许可证</td> |
||||||
|
<td colspan="3"></td> |
||||||
|
</tr> |
||||||
|
<tr> |
||||||
|
<td class="head">成品油零售<br>经营许可证</td> |
||||||
|
<td colspan="3"></td> |
||||||
|
</tr> |
||||||
|
</table> |
||||||
|
</div> |
||||||
|
<div class="btnbox"> |
||||||
|
|
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
@ -0,0 +1,79 @@ |
|||||||
|
.box { |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
display: flex; |
||||||
|
justify-content: center; |
||||||
|
} |
||||||
|
|
||||||
|
::-webkit-scrollbar { |
||||||
|
display: none |
||||||
|
} |
||||||
|
|
||||||
|
.content { |
||||||
|
width: 1000px; |
||||||
|
height: 100%; |
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.title { |
||||||
|
height: 48px; |
||||||
|
width: 100%; |
||||||
|
margin: 16px 0; |
||||||
|
} |
||||||
|
|
||||||
|
.tablebox { |
||||||
|
flex: 1; |
||||||
|
overflow-y: auto; |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.table { |
||||||
|
|
||||||
|
table, |
||||||
|
table tr th, |
||||||
|
table tr td { |
||||||
|
border: 1px solid #91CCFF; |
||||||
|
} |
||||||
|
|
||||||
|
table { |
||||||
|
width: 100%; |
||||||
|
text-align: center; |
||||||
|
border-collapse: collapse; |
||||||
|
margin-bottom: 24px; |
||||||
|
|
||||||
|
tr { |
||||||
|
td { |
||||||
|
height: 40px; |
||||||
|
white-space: nowrap; |
||||||
|
overflow: hidden; |
||||||
|
text-overflow: ellipsis; |
||||||
|
color: #C4E2FC; |
||||||
|
box-sizing: border-box; |
||||||
|
padding: 0 16px; |
||||||
|
} |
||||||
|
|
||||||
|
.head { |
||||||
|
width: 17%; |
||||||
|
background: #0b3863; |
||||||
|
color: #23D9FF; |
||||||
|
text-align: right; |
||||||
|
} |
||||||
|
|
||||||
|
.text { |
||||||
|
width: 33%; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
.imgtable { |
||||||
|
|
||||||
|
tr, |
||||||
|
td { |
||||||
|
height: 98px; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -1,21 +1,18 @@ |
|||||||
<div class="box"> |
<div class="box"> |
||||||
<form nz-form [formGroup]="validateForm"> |
<form nz-form [formGroup]="validateForm"> |
||||||
<nz-form-item> |
<nz-form-item> |
||||||
<nz-form-control nzErrorTip="请输入名称"> |
<nz-form-control> |
||||||
<nz-input-group> |
<nz-input-group> |
||||||
<input nz-input type="text" formControlName="name" placeholder="请输入名称" /> |
<input nz-input type="text" formControlName="name" placeholder="请输入名称" /> |
||||||
</nz-input-group> |
</nz-input-group> |
||||||
</nz-form-control> |
</nz-form-control> |
||||||
</nz-form-item> |
</nz-form-item> |
||||||
<!-- <nz-form-item> |
<nz-form-item> |
||||||
<nz-form-control> |
<nz-form-control> |
||||||
<nz-select formControlName="power" nzPlaceHolder="请选择权限" (nzScrollToBottom)="loadMore()" nzMode="multiple"> |
<nz-input-group> |
||||||
<nz-option *ngFor="let o of optionList" [nzValue]="o" [nzLabel]="o.displayName"></nz-option> |
<input nz-input type="text" formControlName="code" placeholder="请输入编码" /> |
||||||
</nz-select> |
</nz-input-group> |
||||||
<ng-template #renderTemplate> |
|
||||||
<nz-spin *ngIf="isLoading"></nz-spin> |
|
||||||
</ng-template> |
|
||||||
</nz-form-control> |
</nz-form-control> |
||||||
</nz-form-item> --> |
</nz-form-item> |
||||||
</form> |
</form> |
||||||
</div> |
</div> |
||||||
|
Loading…
Reference in new issue