30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
HTML
<!--
|
||
* @Description :
|
||
* @Version : 1.0
|
||
* @Author : Shiming
|
||
* @Date : 2021-12-15 13:17:42
|
||
* @LastEditors : Shiming
|
||
* @LastEditTime : 2022-02-21 14:27:51
|
||
* @FilePath : \\tms-obc-web\\src\\app\\routes\\order-management\\modal\\vehicle\\update-freight\\update-freight.component.html
|
||
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||
-->
|
||
|
||
<sf #sf mode="edit" [schema]="schema" [ui]="ui" button="none"></sf>
|
||
<nz-divider></nz-divider>
|
||
<div>
|
||
<p>
|
||
<span style="font-weight: bolder"
|
||
>总运费:<span style="color: #dc112a">{{ data?.totalAmount | currency }}</span></span
|
||
>
|
||
(运输费:{{ data?.totalFreight | currency }},附加费:{{ data?.totalSurcharge | currency }},附加费率:{{ data?.totalRate * 100 + '%' }})
|
||
</p>
|
||
<p>
|
||
<label nz-checkbox [(ngModel)]="aggreechecked">确认已阅读并知晓<a>《变更协议》</a></label>
|
||
</p>
|
||
</div>
|
||
|
||
<div class="modal-footer">
|
||
<button nz-button type="button" (click)="close()">关闭</button>
|
||
<button nz-button type="submit" nzType="primary" (click)="save(sf.value)" [disabled]="!aggreechecked">确定</button>
|
||
</div>
|