tijian_tieying/web/dccdc/Views/Result/ZiLiao.cshtml
2025-02-20 12:14:39 +08:00

46 lines
1.6 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@{
ViewBag.Title = "结果录入-相关资料";
}
@section scripts{
<script type="text/javascript">
$(function () {
$("#zyjjzList").ligerGrid({
title:"职业禁忌证",
isScroll: true,
url: "@Url.Action("getZyjjz")",
parms: { zgzt: "@ViewBag.zgzt", yhyslbIDs: "@ViewBag.yhyslbIDs" },//此处命名是有害因素类型ids实际返回的是有害因素ids。莫名其妙………………
columns: [
{ name: "yhys_Name", display: "危害因素 ", align: "left", width: 100},
{ name: "zyjjz_Name", display: "职业禁忌证 ", align: "left", width: 150 }
],
height: 500,
rownumbers: false,
fixedCellHeight: false,
usePager: false
});
$("#yszybList").ligerGrid({
title: "疑似职业病",
isScroll: true,
url: "@Url.Action("getYszyb")",
parms: { zgzt: "@ViewBag.zgzt", yhyslbIDs: "@ViewBag.yhyslbIDs" },
columns: [
{ name: "yhys_Name", display: "危害因素 ", align: "left", width: 100},
{ name: "zyjjz_Name", display: "职业禁忌证 ", align: "left", width: 150 }
],
height: 500,
rownumbers: false,
fixedCellHeight: false,
usePager: false
});
});
</script>
}
<table style="width:100%">
<tr>
<td><div id="zyjjzList"></div></td>
<td><div id="yszybList"></div></td>
</tr>
</table>