From 3501c258f7366900c555f48eb7028a8c150412a3 Mon Sep 17 00:00:00 2001 From: BianLzhaoMin <11485688+bianliangzhaomin123@user.noreply.gitee.com> Date: Mon, 6 May 2024 09:51:10 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E4=BB=A3=E7=A0=81=E5=90=88=E5=B9=B6=20?= =?UTF-8?q?=E5=AE=81=E5=A4=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../receive/receiveApplyAdd.vue | 1151 +++++++---------- 1 file changed, 438 insertions(+), 713 deletions(-) diff --git a/sgzb-ui/src/views/claimAndRefund/receive/receiveApplyAdd.vue b/sgzb-ui/src/views/claimAndRefund/receive/receiveApplyAdd.vue index 1f6cad31..c4932d84 100644 --- a/sgzb-ui/src/views/claimAndRefund/receive/receiveApplyAdd.vue +++ b/sgzb-ui/src/views/claimAndRefund/receive/receiveApplyAdd.vue @@ -1,128 +1,88 @@ From 4c8a65cd547ef2ed76852a9253edcdfc02bfe550 Mon Sep 17 00:00:00 2001 From: mashuai Date: Mon, 6 May 2024 10:04:58 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E5=A4=A7=E5=B1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/LargeScreenController.java | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/sgzb-modules/sgzb-base/src/main/java/com/bonus/sgzb/largeScreen/controller/LargeScreenController.java b/sgzb-modules/sgzb-base/src/main/java/com/bonus/sgzb/largeScreen/controller/LargeScreenController.java index e1c865c4..86394444 100644 --- a/sgzb-modules/sgzb-base/src/main/java/com/bonus/sgzb/largeScreen/controller/LargeScreenController.java +++ b/sgzb-modules/sgzb-base/src/main/java/com/bonus/sgzb/largeScreen/controller/LargeScreenController.java @@ -32,6 +32,11 @@ public class LargeScreenController extends BaseController { return service.getMaterialReqData(); } + /** + * 宁夏大屏二级页面 + * @param dto + * @return + */ @Log(title = "领料数据详情", businessType = BusinessType.QUERY) @PostMapping("getMaterialReqData/details") public AjaxResult getMaterialReqDetailData(@RequestBody ParamsDto dto) { @@ -49,6 +54,11 @@ public class LargeScreenController extends BaseController { return service.getMaterialReturnData(); } + /** + * 宁夏大屏二级页面 + * @param dto + * @return + */ @Log(title = "退料数据详情", businessType = BusinessType.QUERY) @PostMapping("getMaterialReturnData/details") public AjaxResult getMaterialReturnDetailData(@RequestBody ParamsDto dto) { @@ -72,6 +82,11 @@ public class LargeScreenController extends BaseController { return service.getTotalOwnership(); } + /** + * 宁夏大屏二级页面 + * @param dto + * @return + */ @Log(title = "施工机具/安全工器具总保有量详情",businessType = BusinessType.QUERY) @PostMapping("getTotalOwnership/details") public AjaxResult getTotalOwnerDetailsShip(@RequestBody ParamsDto dto) { @@ -95,6 +110,11 @@ public class LargeScreenController extends BaseController { return service.getScrapAnalysisByMonth(dto); } + /** + * 宁夏大屏二级页面 + * @param dto + * @return + */ @Log(title = "当月报废分析详情", businessType = BusinessType.QUERY) @PostMapping("getScrapAnalysisByMonth/details") public AjaxResult getScrapAnalysisDetailByMonth(@RequestBody ParamsDto dto) { @@ -112,6 +132,11 @@ public class LargeScreenController extends BaseController { return service.getAcceptanceStorage(dto); } + /** + * 宁夏大屏二级页面 + * @param dto + * @return + */ @Log(title = "新购验收入库分析详情",businessType = BusinessType.QUERY) @PostMapping("getAcceptanceStorage/details") public AjaxResult getAcceptanceDetailStorage(@RequestBody ParamsDto dto) { @@ -129,6 +154,11 @@ public class LargeScreenController extends BaseController { return service.getPickingAnalysisByMonth(dto); } + /** + * 宁夏大屏二级页面 + * @param dto + * @return + */ @Log(title = "当月领料分析详情", businessType = BusinessType.QUERY) @PostMapping("getPickingAnalysisByMonth/details") public AjaxResult getPickingAnalysisDetailByMonth(@RequestBody ParamsDto dto) { @@ -146,6 +176,11 @@ public class LargeScreenController extends BaseController { return service.getMaterialReturnByMonth(dto); } + /** + * 宁夏大屏二级页面 + * @param dto + * @return + */ @Log(title = "当月退料分析详情", businessType = BusinessType.QUERY) @PostMapping("getMaterialReturnByMonth/details") public AjaxResult getMaterialReturnDetailByMonth(@RequestBody ParamsDto dto) { @@ -169,6 +204,11 @@ public class LargeScreenController extends BaseController { return service.getMaintenanceChartByMonth(dto); } + /** + * 宁夏大屏二级页面 + * @param dto + * @return + */ @Log(title = "当月维修分析详情", businessType = BusinessType.QUERY) @PostMapping("getMaintenanceByMonth/details") public AjaxResult getMaintenanceDetailByMonth(@RequestBody ParamsDto dto) {