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

38 lines
1.3 KiB
Plaintext

@{
ViewBag.Title = "getYJ";
}
@section scripts{
<script type="text/javascript">
$(function () {
//debugger;
var row = window.parent.selectrow();
$("#form1").ligerForm({
inputWidth: 152, labelWidth: 100, space: 10, labelAlign: "right", validate: true,
fields: [
{ id: 'person_name', display: "体检编号", name: "physical_num", newline: false, type: "text", readonly: "true" },
{ id: 'person_name', display: "姓名", name: "person_name", newline: false, type: "text", readonly: "true" }
]
});
liger.get("form1").setData(row);
$("#grid1").ligerGrid({
height: '90%',
columns: [
{ display: '小组名称', name: 'team_name', align: 'left', width: 120 },
{ display: '综合意见', name: 'yj', align: 'left', width: 100 }
],
url: '@Url.Action("getYJData")?personid=@Request.QueryString["personid"]',
rownumbers: true,
usePager: false
});
});
</script>
}
<div class="l-clear"></div>
<div id="form1"></div>
<div id="grid1"></div>
<div style="display:none;"></div>