Files
bbq/src/app/routes/order-management/modal/vehicle/update-freight/update-freight.component.html
wangshiming c79ea5261f 车辆对接
2021-12-21 15:03:59 +08:00

19 lines
679 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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.totalFreight }}</span></span
>
(运输费:¥{{ data.freight }},附加费:¥{{ data.surcharge }}
</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>