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)