fix bug
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
<!--
|
||||
* @Author: your name
|
||||
* @Date: 2021-12-03 15:31:52
|
||||
* @LastEditTime : 2022-03-11 10:57:14
|
||||
* @LastEditTime : 2022-03-11 15:39:26
|
||||
* @LastEditors : Shiming
|
||||
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
||||
* @FilePath : \\tms-obc-web\\src\\app\\routes\\waybill-management\\components\\vehicle-detail\\vehicle-detail.component.html
|
||||
@ -155,7 +155,7 @@
|
||||
总计:<span style="color: #da001b; font-size: 18px">{{ i?.totalAmount | currency }}</span> (运费{{ i?.totalFreight | currency }},
|
||||
附加费{{ i?.totalSurcharge | currency }},附加费率{{ (i?.totalRate * 100).toFixed(2)}}% )
|
||||
</div>
|
||||
<div>收款人:{{ i?.payeeName }}/{{ i?.payeePhone }}</div>
|
||||
<div>收款人:{{ i?.payee?.name }}/{{ i?.payee?.phone }}/{{ i?.payee?.idNo }}</div>
|
||||
</nz-card>
|
||||
|
||||
<nz-card nzTitle="附件信息" #distannce4>
|
||||
@ -168,11 +168,11 @@
|
||||
</sv-container>
|
||||
<sv-container col="2" class="mt-md">
|
||||
<sv label="装货凭证">
|
||||
<app-imagelist [imgList]="i?.loadingCertificate">
|
||||
<app-imagelist *ngIf="i?.loadingCertificate" [imgList]="i?.loadingCertificate">
|
||||
</app-imagelist>
|
||||
</sv>
|
||||
<sv label="卸货凭证">
|
||||
<app-imagelist [imgList]="i?.unLoadingCertificate">
|
||||
<app-imagelist *ngIf="i?.unLoadingCertificate" [imgList]="i?.unLoadingCertificate">
|
||||
</app-imagelist>
|
||||
</sv>
|
||||
</sv-container>
|
||||
@ -198,7 +198,7 @@
|
||||
</sv-container>
|
||||
<sv-container col="1" class="mt-md">
|
||||
<sv label="回单凭证" *ngIf="i?.receiptType == 1">
|
||||
<app-imagelist [imgList]="[i?.receiptFilePath]"></app-imagelist>
|
||||
<app-imagelist *ngIf="i?.receiptFilePath" [imgList]="[i?.receiptFilePath]"></app-imagelist>
|
||||
</sv>
|
||||
<sv label="备注">
|
||||
{{i?.goodsResource?.remarks}}
|
||||
|
||||
@ -77,27 +77,27 @@
|
||||
}
|
||||
|
||||
::ng-deep {
|
||||
.affix {
|
||||
position: fixed;
|
||||
top : 20px !important;
|
||||
right : 25px;
|
||||
left : 25px;
|
||||
z-index : 999 !important;
|
||||
}
|
||||
// .affix {
|
||||
// position: fixed;
|
||||
// top : 20px !important;
|
||||
// right : 25px;
|
||||
// left : 25px;
|
||||
// z-index : 999 !important;
|
||||
// }
|
||||
|
||||
.alain-pro__menu-side .alain-pro__main {
|
||||
.affix {
|
||||
position: fixed;
|
||||
top : 20px !important;
|
||||
right : 25px;
|
||||
left : 250px;
|
||||
z-index : 999 !important;
|
||||
}
|
||||
}
|
||||
// .alain-pro__menu-side .alain-pro__main {
|
||||
// .affix {
|
||||
// position: fixed;
|
||||
// top : 20px !important;
|
||||
// right : 25px;
|
||||
// left : 250px;
|
||||
// z-index : 999 !important;
|
||||
// }
|
||||
// }
|
||||
|
||||
.aside-collapsed.alain-pro__menu-side .alain-pro__main {
|
||||
.affix {
|
||||
left: 106px;
|
||||
}
|
||||
}
|
||||
// .aside-collapsed.alain-pro__menu-side .alain-pro__main {
|
||||
// .affix {
|
||||
// left: 106px;
|
||||
// }
|
||||
// }
|
||||
}
|
||||
Reference in New Issue
Block a user