20 changed files with 215 additions and 35 deletions
@ -0,0 +1 @@
|
||||
<p>details-file-category works!</p> |
@ -0,0 +1,15 @@
|
||||
import { Component, OnInit } from '@angular/core'; |
||||
|
||||
@Component({ |
||||
selector: 'app-details-file-category', |
||||
templateUrl: './details-file-category.component.html', |
||||
styleUrls: ['./details-file-category.component.scss'] |
||||
}) |
||||
export class DetailsFileCategoryComponent implements OnInit { |
||||
|
||||
constructor() { } |
||||
|
||||
ngOnInit(): void { |
||||
} |
||||
|
||||
} |
@ -0,0 +1 @@
|
||||
<p>edit-file-category works!</p> |
@ -0,0 +1,15 @@
|
||||
import { Component, OnInit } from '@angular/core'; |
||||
|
||||
@Component({ |
||||
selector: 'app-edit-file-category', |
||||
templateUrl: './edit-file-category.component.html', |
||||
styleUrls: ['./edit-file-category.component.scss'] |
||||
}) |
||||
export class EditFileCategoryComponent implements OnInit { |
||||
|
||||
constructor() { } |
||||
|
||||
ngOnInit(): void { |
||||
} |
||||
|
||||
} |
@ -0,0 +1 @@
|
||||
<p>details-update-category works!</p> |
@ -0,0 +1,15 @@
|
||||
import { Component, OnInit } from '@angular/core'; |
||||
|
||||
@Component({ |
||||
selector: 'app-details-update-category', |
||||
templateUrl: './details-update-category.component.html', |
||||
styleUrls: ['./details-update-category.component.scss'] |
||||
}) |
||||
export class DetailsUpdateCategoryComponent implements OnInit { |
||||
|
||||
constructor() { } |
||||
|
||||
ngOnInit(): void { |
||||
} |
||||
|
||||
} |
@ -0,0 +1 @@
|
||||
<p>edit-update-category works!</p> |
@ -0,0 +1,15 @@
|
||||
import { Component, OnInit } from '@angular/core'; |
||||
|
||||
@Component({ |
||||
selector: 'app-edit-update-category', |
||||
templateUrl: './edit-update-category.component.html', |
||||
styleUrls: ['./edit-update-category.component.scss'] |
||||
}) |
||||
export class EditUpdateCategoryComponent implements OnInit { |
||||
|
||||
constructor() { } |
||||
|
||||
ngOnInit(): void { |
||||
} |
||||
|
||||
} |
@ -1 +1,51 @@
|
||||
<p>update-category works!</p> |
||||
<div class="box" id="updateLicense"> |
||||
<div class="tablebox" id="tablebox"> |
||||
<nz-table *ngIf="tableScrollHeight" [nzLoading]="tableSpin" [nzPageSize]='9999' #headerTable [nzData]="list" |
||||
[nzShowPagination]="false" [nzScroll]="{ y:tableScrollHeight }" [nzNoResult]='null' nzTableLayout="fixed"> |
||||
<thead> |
||||
<tr> |
||||
<th [nzWidth]="'16%'"> |
||||
<span style="margin-left: 25%;">证件名称</span> |
||||
</th> |
||||
<th>证件编号</th> |
||||
<th>证件有效期</th> |
||||
<th>图片</th> |
||||
<th>有效期类型</th> |
||||
<th>办理类型</th> |
||||
<th>是否年检</th> |
||||
<th>提交时间</th> |
||||
<th>审核状态</th> |
||||
<th>预警状态</th> |
||||
<th>操作</th> |
||||
</tr> |
||||
</thead> |
||||
<tbody id="table"> |
||||
<tr *ngFor="let item of headerTable.data;let key = index"> |
||||
<td> |
||||
<span style="margin-left: 25%;">证件名称</span> |
||||
</td> |
||||
<td>证件编号</td> |
||||
<td>证件有效期</td> |
||||
<td> |
||||
<img src="../../../../assets/images/bgImg.png" alt="" |
||||
(click)="viewImg('../../../../assets/images/bgImg.png')"> |
||||
</td> |
||||
<td>有效期类型</td> |
||||
<td>办理类型</td> |
||||
<td>是否年检</td> |
||||
<td>提交时间</td> |
||||
<td>审核状态</td> |
||||
<td>预警状态</td> |
||||
<td class="operation"> |
||||
<span class="blueColor" (click)="edit(item)">编辑</span> |
||||
<span class="blueColor" (click)="details(item)">详情</span> |
||||
<span class="blueColor">提交审核</span> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</nz-table> |
||||
|
||||
</div> |
||||
</div> |
||||
|
||||
|
||||
|
@ -0,0 +1,20 @@
|
||||
.box{ |
||||
width: 100%; |
||||
height: 100%; |
||||
} |
||||
.tablebox{ |
||||
width: 100%; |
||||
height: 100%; |
||||
.operation{ |
||||
span{ |
||||
margin-right: 6px; |
||||
} |
||||
} |
||||
#table{ |
||||
img{ |
||||
width: 30px; |
||||
height: 30px; |
||||
cursor: pointer; |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue