Browse Source

[完善]修改上传附件bug

beijing
邵佳豪 2 years ago
parent
commit
4709982e0e
  1. 2
      src/app/pages/license/update-category/update-category.component.ts
  2. 2
      src/app/pages/plan-admin/update-license-list/update-license-list.component.html

2
src/app/pages/license/update-category/update-category.component.ts

@ -158,7 +158,7 @@ export class UpdateCategoryComponent implements OnInit {
let newUrl = window.location.protocol + '//' + window.location.host + body.imageUrl let newUrl = window.location.protocol + '//' + window.location.host + body.imageUrl
body.imageUrl = newUrl body.imageUrl = newUrl
} }
if (body.hasAttachmentDefault && body.attachment) { if (body.hasAttachmentDefault && body.attachment && body.attachment.indexOf('http') == -1) {
let newUrl = window.location.protocol + '//' + window.location.host + body.attachment let newUrl = window.location.protocol + '//' + window.location.host + body.attachment
body.attachment = newUrl body.attachment = newUrl
} }

2
src/app/pages/plan-admin/update-license-list/update-license-list.component.html

@ -81,7 +81,7 @@
<ng-container *ngIf="i.value.endDate; else elseTemplate"> <ng-container *ngIf="i.value.endDate; else elseTemplate">
<span (click)="lookDetails(i.value)" style="cursor: pointer;" <span (click)="lookDetails(i.value)" style="cursor: pointer;"
[ngClass]="{'green': i.value.licenseViolationType == 1,'yellow': i.value.licenseViolationType == 2,'red': i.value.licenseViolationType == 3}"> [ngClass]="{'green': i.value.licenseViolationType == 1,'yellow': i.value.licenseViolationType == 2,'red': i.value.licenseViolationType == 3}">
{{i.value.endDate | date:"yyyy-MM-dd"}} {{i.value.endDate == '9999-12-31T23:59:59.9999999' ? '长期' : i.value.endDate | date:"yyyy-MM-dd"}}
</span> </span>
</ng-container> </ng-container>
<ng-template #elseTemplate> <ng-template #elseTemplate>

Loading…
Cancel
Save