检查,资产,文件

master
20918 11 months ago
parent 088b964aaa
commit 9d5d02a3b0

@ -7,11 +7,7 @@ import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller; import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap; import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.*;
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 com.ruoyi.common.annotation.Log; import com.ruoyi.common.annotation.Log;
import com.ruoyi.common.enums.BusinessType; import com.ruoyi.common.enums.BusinessType;
import com.ruoyi.system.domain.TdPropertyInfo; import com.ruoyi.system.domain.TdPropertyInfo;
@ -47,9 +43,9 @@ public class TdPropertyInfoController extends BaseController
* *
*/ */
@RequiresPermissions("system:property:list") @RequiresPermissions("system:property:list")
@GetMapping("/list/{useId}") @PostMapping("/list")
//@ResponseBody @ResponseBody
public TableDataInfo list(@PathVariable("useId") String useId, TdPropertyInfo tdPropertyInfo) public TableDataInfo list(@RequestParam String useId)
{ {
startPage(); startPage();
List<TdPropertyInfo> tdPropertyInfos = tdPropertyInfoService.selectTdPropertyInfoByUseId(useId); List<TdPropertyInfo> tdPropertyInfos = tdPropertyInfoService.selectTdPropertyInfoByUseId(useId);

@ -141,7 +141,6 @@ public class TdPropertyManagerController extends BaseController
public String detail(@PathVariable("useId") String useId, ModelMap mmap) public String detail(@PathVariable("useId") String useId, ModelMap mmap)
{ {
mmap.put("useId",useId); mmap.put("useId",useId);
// mmap.put("property", tdPropertyInfoService.selectTdPropertyInfoByUseId(useId));
return "system/property/data/propertyinfo"; return "system/property/data/propertyinfo";
} }

@ -74,7 +74,7 @@
$(function() { $(function() {
var options = { var options = {
url: prefix + "/list/{useId}", url: prefix + "/list",
createUrl: prefix + "/add/{useId}", createUrl: prefix + "/add/{useId}",
updateUrl: prefix + "/edit/{id}", updateUrl: prefix + "/edit/{id}",
removeUrl: prefix + "/remove", removeUrl: prefix + "/remove",

Loading…
Cancel
Save