feat:导出问题bug修改

kingbase
wangxy 9 months ago
parent f0faad3fd5
commit dc6ef723af

@ -45,10 +45,10 @@ public class TdPropertyNetinfoController extends BaseController
@RequiresPermissions("system:network:list") @RequiresPermissions("system:network:list")
@PostMapping("/list") @PostMapping("/list")
@ResponseBody @ResponseBody
public TableDataInfo list(@RequestParam String netId) public TableDataInfo list(TdPropertyNetinfo tdPropertyNetinfo)
{ {
startPage(); startPage();
List<TdPropertyNetinfo> list = tdPropertyNetinfoService.selectTdPropertyNetinfoByNetId(netId); List<TdPropertyNetinfo> list = tdPropertyNetinfoService.selectTdPropertyNetinfoList(tdPropertyNetinfo);
return getDataTable(list); return getDataTable(list);
} }

@ -84,6 +84,7 @@
updateUrl: prefix + "/edit/{id}", updateUrl: prefix + "/edit/{id}",
removeUrl: prefix + "/remove", removeUrl: prefix + "/remove",
exportUrl: prefix + "/export", exportUrl: prefix + "/export",
queryParams: queryParams,
modalName: "涉密网络登记", modalName: "涉密网络登记",
columns: [{ columns: [{
checkbox: true checkbox: true
@ -146,6 +147,12 @@
}] }]
}; };
$.table.init(options); $.table.init(options);
function queryParams(params) {
var search = $.table.queryParams(params);
search.netId = [[${netId}]];
return search;
}
}); });
</script> </script>
</body> </body>

@ -27,12 +27,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectTdPropertyNetinfoList" parameterType="TdPropertyNetinfo" resultMap="TdPropertyNetinfoResult"> <select id="selectTdPropertyNetinfoList" parameterType="TdPropertyNetinfo" resultMap="TdPropertyNetinfoResult">
<include refid="selectTdPropertyNetinfoVo"/> <include refid="selectTdPropertyNetinfoVo"/>
<where> <where>
<if test="netId != null "> and net_id = #{netId}</if> <if test="id != null and id != '' "> and id = #{id}</if>
<if test="netBrand != null "> and net_brand = #{netBrand}</if> <if test="netId != null and netId != '' "> and net_id = #{netId}</if>
<if test="netBrand != null and netBrand != '' "> and net_brand = #{netBrand}</if>
<if test="netIp != null "> and net_ip = #{netIp}</if> <if test="netIp != null "> and net_ip = #{netIp}</if>
<if test="netNo != null "> and net_no = #{netNo}</if> <if test="netNo != null and netNo != '' "> and net_no = #{netNo}</if>
<if test="netName != null "> and net_name = #{netName}</if> <if test="netName != null and netName != '' "> and net_name = #{netName}</if>
<if test="netSn != null "> and net_sn = #{netSn}</if> <if test="netSn != null "> and net_sn = #{netSn}</if>
<if test="netname != null "> and netname = #{netname}</if> <if test="netname != null "> and netname = #{netname}</if>
<if test="netManager != null "> and net_manager = #{netManager}</if> <if test="netManager != null "> and net_manager = #{netManager}</if>

Loading…
Cancel
Save