检查,资产,文件

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.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<TdPropertyInfo> tdPropertyInfos = tdPropertyInfoService.selectTdPropertyInfoByUseId(useId);

@ -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";
}

@ -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",

Loading…
Cancel
Save