Browse Source

[完善]根据文档修改bug

beijing
邵佳豪 3 years ago
parent
commit
b7301c0d37
  1. 2
      src/app/pages/audit/audit-inform-time/audit-details-inform-time/audit-details-inform-time.component.html
  2. 13
      src/app/pages/audit/audit-ing/audit-ing.component.html
  3. 11
      src/app/pages/audit/audit-record/audit-record.component.html
  4. 5
      src/app/pages/audit/audit-record/audit-record.component.ts
  5. 2
      src/app/pages/license/file-category/details-file-category/details-file-category.component.html
  6. 2
      src/app/pages/license/update-category/details-update-category/details-update-category.component.html

2
src/app/pages/audit/audit-inform-time/audit-details-inform-time/audit-details-inform-time.component.html

@ -9,6 +9,8 @@
<div class="content"> <div class="content">
<p>{{organizationName}}</p> <p>{{organizationName}}</p>
<div class="cutoffrule"></div> <div class="cutoffrule"></div>
<p>证照名称: {{data.licenseType ? data.licenseType.licenseName : null}}</p>
<div class="cutoffrule"></div>
<p class="flexp"> <p class="flexp">
<span>办理提醒时间:修改时间 {{data.handleRemindDays}}天</span> <span>办理提醒时间:修改时间 {{data.handleRemindDays}}天</span>
<span>默认时间 {{data.handleRemindDaysDefault}}天</span> <span>默认时间 {{data.handleRemindDaysDefault}}天</span>

13
src/app/pages/audit/audit-ing/audit-ing.component.html

@ -29,8 +29,17 @@
</td> </td>
<td><label *ngIf="item.gasStation">{{item.gasStation.stationName}}</label></td> <td><label *ngIf="item.gasStation">{{item.gasStation.stationName}}</label></td>
<td><label *ngIf="item.gasStation">{{item.gasStation.locationName}}</label></td> <td><label *ngIf="item.gasStation">{{item.gasStation.locationName}}</label></td>
<td><label *ngIf="item.gasStation">{{item.gasStation.companyName}}</label></td> <td>
<td>{{item.committedTime | date:"yyyy/MM/dd"}}</td> <ng-container *ngIf="item.gasStation; else elseTemplate">
<label>{{item.gasStation.companyName}}</label>
</ng-container>
<ng-template #elseTemplate>
<label>{{item.organization ? item.organization.displayName : null}}</label>
</ng-template>
</td>
<td>{{item.committedTime | date:"yyyy/MM/dd HH:mm:ss" }}</td>
<td>{{item.auditStatusDesc}}</td> <td>{{item.auditStatusDesc}}</td>
<td class="operation"> <td class="operation">
<span class="blueColor" (click)="dispose(item)">处置</span> <span class="blueColor" (click)="dispose(item)">处置</span>

11
src/app/pages/audit/audit-record/audit-record.component.html

@ -113,8 +113,15 @@
</td> </td>
<td><label *ngIf="item.gasStation">{{item.gasStation.stationName}}</label></td> <td><label *ngIf="item.gasStation">{{item.gasStation.stationName}}</label></td>
<td><label *ngIf="item.gasStation">{{item.gasStation.locationName}}</label></td> <td><label *ngIf="item.gasStation">{{item.gasStation.locationName}}</label></td>
<td><label *ngIf="item.gasStation">{{item.gasStation.companyName}}</label></td> <td>
<td>{{item.committedTime | date:"yyyy/MM/dd"}}</td> <ng-container *ngIf="item.gasStation; else elseTemplate">
<label>{{item.gasStation.companyName}}</label>
</ng-container>
<ng-template #elseTemplate>
<label>{{item.organization ? item.organization.displayName : null}}</label>
</ng-template>
</td>
<td>{{item.committedTime | date:"yyyy/MM/dd HH:mm:ss"}}</td>
<td>{{item.auditStatusDesc}}</td> <td>{{item.auditStatusDesc}}</td>
<td class="operation"> <td class="operation">
<span class="blueColor" (click)="details(item)">详情</span> <span class="blueColor" (click)="details(item)">详情</span>

5
src/app/pages/audit/audit-record/audit-record.component.ts

@ -161,13 +161,16 @@ export class AuditRecordComponent implements OnInit {
MaxResultCount: string = '100' MaxResultCount: string = '100'
getRecordList() { getRecordList() {
this.tableSpin = true this.tableSpin = true
let endTime = this.validateForm.value.datePicker[1] + ' 23:59:59'
console.log('结束时间',endTime)
let params = { let params = {
IsContainsChildren: 'true', IsContainsChildren: 'true',
OrganizationUnitId: this.validateForm.value.organization, OrganizationUnitId: this.validateForm.value.organization,
AuditTitle: this.validateForm.value.type, AuditTitle: this.validateForm.value.type,
AuditType: this.validateForm.value.info, AuditType: this.validateForm.value.info,
StartTime: this.validateForm.value.datePicker[0], StartTime: this.validateForm.value.datePicker[0],
EndTime: this.validateForm.value.datePicker[1], EndTime: endTime,
AuditStatuses: this.validateForm.value.state, AuditStatuses: this.validateForm.value.state,
AuditLevel: this.validateForm.value.level, AuditLevel: this.validateForm.value.level,
Sorting: null, Sorting: null,

2
src/app/pages/license/file-category/details-file-category/details-file-category.component.html

@ -15,7 +15,7 @@
<div class="cutoffrule"></div> --> <div class="cutoffrule"></div> -->
<p>证件图片: &nbsp;&nbsp;<img *ngIf="data.imageUrl" [src]="data.imageUrl" (click)="viewImg(data.imageUrl)"></p> <p>证件图片: &nbsp;&nbsp;<img *ngIf="data.imageUrl" [src]="data.imageUrl" (click)="viewImg(data.imageUrl)"></p>
<div class="cutoffrule"></div> <div class="cutoffrule"></div>
<p class="recordP"> <p class="recordP" style="margin-bottom: 32px">
<span>审核记录</span> <span>审核记录</span>
<span> <span>
<span style="margin-right: 6px;"> <span style="margin-right: 6px;">

2
src/app/pages/license/update-category/details-update-category/details-update-category.component.html

@ -25,7 +25,7 @@
<img *ngIf="data.imageUrl && getFileType(data.imageUrl) == 'pdf'" src="../../../../assets/images/license/pdf.png" (click)="lookFile(data)"> <img *ngIf="data.imageUrl && getFileType(data.imageUrl) == 'pdf'" src="../../../../assets/images/license/pdf.png" (click)="lookFile(data)">
</p> </p>
<div class="cutoffrule"></div> <div class="cutoffrule"></div>
<p class="recordP"> <p class="recordP" style="margin-bottom: 32px">
<span>审核记录</span> <span>审核记录</span>
<span> <span>
<span style="margin-right: 6px;"> <span style="margin-right: 6px;">

Loading…
Cancel
Save