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