tijian_tieying/web/dccdc/Views/Result/TiXing.cshtml

38 lines
1.1 KiB
Plaintext
Raw Normal View History

2025-02-20 12:14:39 +08:00
@model dccdc.Models.ResultViewModels.lishi
@{
ViewBag.Title = "结果录入-提醒";
}
@section scripts{
<script type="text/javascript">
$(function () {
//debugger
$("#tixingList").ligerGrid({
isScroll: true,
url: "@Url.Action("getTiXing")",
parms: { zgzt: "@ViewBag.zgzt", yhyslbIDs: "@ViewBag.yhyslbIDs" },
columns: [
{ name: "exam_group", display: "体检小组 ", align: "left", width: 150},
{ name: "bussiness_notice", display: "提醒内容 ", align: "left", width: 350 }
],
height: 500,
rownumbers: false,
fixedCellHeight: false,
usePager: false
});
});
</script>
}
<table style="width:100%">
<tr>
<td class="ltd">当前体检编号:</td>
<td class="rtd">@Html.TextBoxFor(k => k.tjbh)</td>
<td class="ltd"> 姓名:</td>
<td class="rtd">@Html.TextBoxFor(k => k.xm)</td>
</tr>
<tr>
<td colspan="4"><div id="tixingList"></div></td>
</tr>
</table>