From 0cbc77ec9f004b565928cb627b619d9c7fbe399b Mon Sep 17 00:00:00 2001 From: "zyx.net" Date: Thu, 24 Aug 2023 16:17:58 +0800 Subject: [PATCH 1/4] =?UTF-8?q?=E8=BD=A6=E5=9E=8B=E4=B8=8B=E6=8B=89?= =?UTF-8?q?=E4=BC=A0=E5=8F=82=E7=89=88=E6=9C=AC=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/otamanagement/otaAuthentication/components/detil.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jero-web/src/views/otamanagement/otaAuthentication/components/detil.vue b/jero-web/src/views/otamanagement/otaAuthentication/components/detil.vue index ee8ed0400..fbb483ac4 100644 --- a/jero-web/src/views/otamanagement/otaAuthentication/components/detil.vue +++ b/jero-web/src/views/otamanagement/otaAuthentication/components/detil.vue @@ -905,7 +905,7 @@ export default { if(this.$route.query.vehicleTypeCode){ this.vehicleTypeCode = this.$route.query.vehicleTypeCode } - getAction('/ota/otaManageApplyEO/getCarList', {}).then((res) => { + getAction('/ota/otaManageApplyEO/getCarList', {plannedBpLaunchBatch:this.$route.query.plannedBpLaunchBatch}).then((res) => { if (res.success) { this.typeList = res.result } else { From ef4e9b9f1e6681b6ef720d3b7dc43dd09bd6ff64 Mon Sep 17 00:00:00 2001 From: zhn <947514737@qq.com> Date: Thu, 24 Aug 2023 16:43:24 +0800 Subject: [PATCH 2/4] =?UTF-8?q?=E8=BD=A6=E5=9E=8B=E4=B8=8B=E6=8B=89?= =?UTF-8?q?=E9=80=89=E6=9D=83=E9=99=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/ota/controller/OtaManageApplyEOController.java | 4 ++-- .../com/jero/modules/ota/mapper/OtaManageApplyEOMapper.java | 2 +- .../jero/modules/ota/mapper/xml/OtaManageApplyEOMapper.xml | 3 +++ .../jero/modules/ota/service/IOtaManageApplyEOService.java | 2 +- .../ota/service/impl/OtaManageApplyEOServiceImpl.java | 6 +++--- 5 files changed, 10 insertions(+), 7 deletions(-) diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/ota/controller/OtaManageApplyEOController.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/ota/controller/OtaManageApplyEOController.java index 82a8e27e3..736b86a3d 100644 --- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/ota/controller/OtaManageApplyEOController.java +++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/ota/controller/OtaManageApplyEOController.java @@ -159,8 +159,8 @@ public class OtaManageApplyEOController extends JeroController getCarList(String cut) { - List result = otaManageApplyEOService.getCarList(cut); + public Result getCarList(String cut,String plannedBpLaunchBatch) { + List result = otaManageApplyEOService.getCarList(cut,plannedBpLaunchBatch); return Result.OK(result); } diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/ota/mapper/OtaManageApplyEOMapper.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/ota/mapper/OtaManageApplyEOMapper.java index e4cdc8894..6a2513245 100644 --- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/ota/mapper/OtaManageApplyEOMapper.java +++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/ota/mapper/OtaManageApplyEOMapper.java @@ -31,7 +31,7 @@ public interface OtaManageApplyEOMapper extends BaseMapper { List getByAppliedVehicleProject(@Param("appliedVehicleProject") String appliedVehicleProject); - List getOtaCarList(); + List getOtaCarList(@Param("plannedBpLaunchBatch") String plannedBpLaunchBatch); List getReleaseDate(@Param("plannedBpLaunchBatchList") List plannedBpLaunchBatchList); diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/ota/mapper/xml/OtaManageApplyEOMapper.xml b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/ota/mapper/xml/OtaManageApplyEOMapper.xml index ee351c024..55b5b8a81 100644 --- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/ota/mapper/xml/OtaManageApplyEOMapper.xml +++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/ota/mapper/xml/OtaManageApplyEOMapper.xml @@ -94,6 +94,9 @@