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

42 lines
1.4 KiB
Plaintext
Raw 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.

@section scripts{
<script type="text/javascript">
$(function () {
var info = "&nbsp&nbsp体检编号@ViewBag.physical_num&nbsp&nbsp姓名@ViewBag.name";
$("#ProcessList").ligerGrid({
url: "@Url.Action("getProcessList")",
title: "体检小组进度列表" +info,
parms: {
physical_num: "@ViewBag.physical_num",
},
columns: [
{ name: "group_name", display: "体检小组", width: 180, align: "left" },
{ name: "is_complete", display: "状态", width: 100, align: "left" },
{ name: "complete_date", display: "完成时间", width: 180, align: "left" },
{ name: "commit_doctor", display: "体检医生", width: 90, align: "left" },
],
width: "98%",
height: "100%",
rownumbers: true,
fixedCellHeight: false,
usePager: false,
//heightDiff: -20
});
});
</script>
}
<body>
@* <a href="#" onclick="self.location=document.referrer;">
<img src="../../images/Button/BtnExit.jpg">
</a>*@
<div id="ProcessList">
</div>
</body>