42 lines
1.4 KiB
Plaintext
42 lines
1.4 KiB
Plaintext
|
||
|
||
@section scripts{
|
||
<script type="text/javascript">
|
||
|
||
$(function () {
|
||
var info = "  体检编号:@ViewBag.physical_num  姓名:@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>
|
||
|