From 9d5d02a3b0d5a8faca29c94a13fc37579128a88a Mon Sep 17 00:00:00 2001 From: 20918 <2091823062@qq.com> Date: Wed, 8 May 2024 16:57:24 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A3=80=E6=9F=A5=EF=BC=8C=E8=B5=84=E4=BA=A7?= =?UTF-8?q?=EF=BC=8C=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/system/TdPropertyInfoController.java | 12 ++++-------- .../system/TdPropertyManagerController.java | 1 - .../templates/system/property/data/propertyinfo.html | 2 +- 3 files changed, 5 insertions(+), 10 deletions(-) diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdPropertyInfoController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdPropertyInfoController.java index de4e645..e5daddf 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdPropertyInfoController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdPropertyInfoController.java @@ -7,11 +7,7 @@ import org.apache.shiro.authz.annotation.RequiresPermissions; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.ModelMap; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.PostMapping; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.ResponseBody; +import org.springframework.web.bind.annotation.*; import com.ruoyi.common.annotation.Log; import com.ruoyi.common.enums.BusinessType; import com.ruoyi.system.domain.TdPropertyInfo; @@ -47,9 +43,9 @@ public class TdPropertyInfoController extends BaseController * 查询资产管理列表 */ @RequiresPermissions("system:property:list") - @GetMapping("/list/{useId}") - //@ResponseBody - public TableDataInfo list(@PathVariable("useId") String useId, TdPropertyInfo tdPropertyInfo) + @PostMapping("/list") + @ResponseBody + public TableDataInfo list(@RequestParam String useId) { startPage(); List tdPropertyInfos = tdPropertyInfoService.selectTdPropertyInfoByUseId(useId); diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdPropertyManagerController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdPropertyManagerController.java index f300869..9a9b11a 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdPropertyManagerController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdPropertyManagerController.java @@ -141,7 +141,6 @@ public class TdPropertyManagerController extends BaseController public String detail(@PathVariable("useId") String useId, ModelMap mmap) { mmap.put("useId",useId); - // mmap.put("property", tdPropertyInfoService.selectTdPropertyInfoByUseId(useId)); return "system/property/data/propertyinfo"; } diff --git a/ruoyi-admin/src/main/resources/templates/system/property/data/propertyinfo.html b/ruoyi-admin/src/main/resources/templates/system/property/data/propertyinfo.html index 32190ac..6134f72 100644 --- a/ruoyi-admin/src/main/resources/templates/system/property/data/propertyinfo.html +++ b/ruoyi-admin/src/main/resources/templates/system/property/data/propertyinfo.html @@ -74,7 +74,7 @@ $(function() { var options = { - url: prefix + "/list/{useId}", + url: prefix + "/list", createUrl: prefix + "/add/{useId}", updateUrl: prefix + "/edit/{id}", removeUrl: prefix + "/remove",