This commit is contained in:
wangshiming
2022-02-21 14:28:15 +08:00
parent ba7df731ff
commit 5808200d77
2 changed files with 8 additions and 10 deletions

View File

@ -4,7 +4,7 @@
* @Author : Shiming * @Author : Shiming
* @Date : 2021-12-15 13:17:42 * @Date : 2021-12-15 13:17:42
* @LastEditors : Shiming * @LastEditors : Shiming
* @LastEditTime : 2022-02-11 11:08:42 * @LastEditTime : 2022-02-21 14:27:51
* @FilePath : \\tms-obc-web\\src\\app\\routes\\order-management\\modal\\vehicle\\update-freight\\update-freight.component.html * @FilePath : \\tms-obc-web\\src\\app\\routes\\order-management\\modal\\vehicle\\update-freight\\update-freight.component.html
* Copyright (C) 2022 huzhenhong. All rights reserved. * Copyright (C) 2022 huzhenhong. All rights reserved.
--> -->
@ -25,5 +25,5 @@
<div class="modal-footer"> <div class="modal-footer">
<button nz-button type="button" (click)="close()">关闭</button> <button nz-button type="button" (click)="close()">关闭</button>
<button nz-button type="submit" nzType="primary" (click)="save(sf.value)" [disabled]="!aggreechecked && payIng">确定</button> <button nz-button type="submit" nzType="primary" (click)="save(sf.value)" [disabled]="!aggreechecked">确定</button>
</div> </div>

View File

@ -4,7 +4,7 @@
* @Author : Shiming * @Author : Shiming
* @Date : 2021-12-15 13:17:42 * @Date : 2021-12-15 13:17:42
* @LastEditors : Shiming * @LastEditors : Shiming
* @LastEditTime : 2022-02-21 14:16:50 * @LastEditTime : 2022-02-21 14:27:50
* @FilePath : \\tms-obc-web\\src\\app\\routes\\order-management\\modal\\vehicle\\update-freight\\update-freight.component.ts * @FilePath : \\tms-obc-web\\src\\app\\routes\\order-management\\modal\\vehicle\\update-freight\\update-freight.component.ts
* Copyright (C) 2022 huzhenhong. All rights reserved. * Copyright (C) 2022 huzhenhong. All rights reserved.
*/ */
@ -26,7 +26,6 @@ export class VehicleUpdateFreightComponent implements OnInit {
ui: SFUISchema = {}; ui: SFUISchema = {};
aggreechecked = false; aggreechecked = false;
payIng = true;
@Input() @Input()
data: any; data: any;
@ -38,11 +37,6 @@ export class VehicleUpdateFreightComponent implements OnInit {
ngOnInit(): void { ngOnInit(): void {
console.log(this.data) console.log(this.data)
this.initSF(this.data); this.initSF(this.data);
if(this.data.isFreightChangeApplication) {
this.payIng = false;
} else {
this.payIng = true;
}
} }
initSF(data: any) { initSF(data: any) {
const info = { const info = {
@ -128,7 +122,11 @@ export class VehicleUpdateFreightComponent implements OnInit {
} }
save(value: any): void { save(value: any): void {
if (!this.sf.valid) { if (this.data.isFreightChangeApplication) {
this.service.msgSrv.error('变更申请未处理,请勿重复申请!');
return;
}
if (!this.save) {
this.service.msgSrv.error('请填写必填项!'); this.service.msgSrv.error('请填写必填项!');
return; return;
} }