From 2f67f0ae0bf4c9845542f979c29a5183980756f3 Mon Sep 17 00:00:00 2001 From: wangshiming Date: Fri, 11 Mar 2022 11:10:16 +0800 Subject: [PATCH] fix bug --- .../modal/vehicle/sure-arrive/sure-arrive.component.ts | 4 ++-- .../modal/vehicle/sure-depart/sure-depart.component.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/routes/order-management/modal/vehicle/sure-arrive/sure-arrive.component.ts b/src/app/routes/order-management/modal/vehicle/sure-arrive/sure-arrive.component.ts index b99aa290..e0007949 100644 --- a/src/app/routes/order-management/modal/vehicle/sure-arrive/sure-arrive.component.ts +++ b/src/app/routes/order-management/modal/vehicle/sure-arrive/sure-arrive.component.ts @@ -424,7 +424,7 @@ export class VehicleSureArriveComponent implements OnInit { save(value: any): void { if(this.Status === 1) { if(!value.time) { - this.service.msgSrv.warning('必填项为空!') + this.service.msgSrv.warning('卸货时间为空!') return; } const params = { @@ -442,7 +442,7 @@ export class VehicleSureArriveComponent implements OnInit { }) } else { if(!value.time ) { - this.service.msgSrv.warning('必填项为空!') + this.service.msgSrv.warning('卸货时间为空!') return; } const params = { diff --git a/src/app/routes/order-management/modal/vehicle/sure-depart/sure-depart.component.ts b/src/app/routes/order-management/modal/vehicle/sure-depart/sure-depart.component.ts index 975f559d..490d20a7 100644 --- a/src/app/routes/order-management/modal/vehicle/sure-depart/sure-depart.component.ts +++ b/src/app/routes/order-management/modal/vehicle/sure-depart/sure-depart.component.ts @@ -265,7 +265,7 @@ export class VehicleSureDepartComponent implements OnInit { save(value: any): void { if(this.Status === 1) { if(!value?.time) { - this.service.msgSrv.warning('必填项为空!') + this.service.msgSrv.warning('装货时间为空!') return; } const params = { @@ -283,7 +283,7 @@ export class VehicleSureDepartComponent implements OnInit { }) } else { if(!value?.time) { - this.service.msgSrv.warning('必填项为空!') + this.service.msgSrv.warning('装货时间为空!') return; } console.log(value)