46 lines
1.6 KiB
Plaintext
46 lines
1.6 KiB
Plaintext
|
||
@{
|
||
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>
|