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

89 lines
3.7 KiB
Plaintext

@model dccdc.Models.InfectionOpenUserInfoModel
<!DOCTYPE html>
<html>
<head>
@section scripts{
<script type="text/javascript">
$(function () {
var type = $("#type").text();
$("#crowd_id").val($("#crowd_id_select").val());
var imgURL = $("#imgsUrl").val();
$("#img-change").attr("src", imgURL);
})
$("#submitid").click(function () {
this.close();
});
</script>
}
<meta name="viewport" content="width=device-width" />
<title></title>
</head>
<body>
<div id="edit">
@Html.HiddenFor(m => m.crowd_id, new { id = "crowd_id_select" })
@Html.HiddenFor(m => m.license, new { id = "imgsUrl" })
<table class="t1" style="width: 100%">
<tr>
<td class="ltd" width="100px">姓名:</td>
<td class="rtd">@Html.TextBoxFor(m => m.name, new { @readonly = "readonly", Styles = "width:140px", Class = "l-text" })</td>
</tr>
<tr>
<td class="ltd" width="100px">所属单位:</td>
<td class="rtd">@Html.TextBoxFor(m => m.unit, new { @readonly = "readonly", Styles = "width:140px", Class = "l-text" })</td>
</tr>
<tr>
<td class="ltd" width="100px">手机号码:</td>
<td class="rtd">@Html.TextBoxFor(m => m.phone, new { @readonly = "readonly", Styles = "width:140px", Class = "l-text" })</td>
</tr>
<tr>
<td class="ltd" width="100px">身份证:</td>
<td class="rtd">@Html.TextBoxFor(m => m.ident, new { @readonly = "readonly", Styles = "width:140px", Class = "l-text" })</td>
</tr>
<tr>
<td class="ltd" width="100px">生日:</td>
<td class="rtd">@Html.TextBoxFor(m => m.birth, new { @readonly = "readonly", Styles = "width:140px", Class = "l-text" })</td>
</tr>
<tr>
<td class="ltd" width="100px">所属人群:</td>
<td class="rtd">@Html.DropDownListFor(m => m.crowd_id, ViewBag.crowdList as SelectList, "==请选择人群==", new { @readonly = "readonly", id = "crowd_id" })</td>
</tr>
<tr>
<td class="ltd" width="100px">当前状态:</td>
<td class="rtd" id="type">
@if (Model.type == 1)
{
<input value="通过" readonly="readonly" style="width:140px" class="l-text" />
}
else if (Model.type == 0)
{
<input value="未审核" readonly="readonly" style="width:140px" class="l-text" />
}
else
{
<input value="未通过" readonly="readonly" style="width:140px" class="l-text" />
}
</td>
</tr>
<tr>
<td class="ltd" style="width:100px">驾驶证:</td>
<td class="rtd" style="width:600px"><img src="" width="600px" height="400px" id="img-change"></td>
</tr>
<tr>
<td class="ltd" width="100px">审核人:</td>
<td class="rtd">@Html.TextBoxFor(m => m.pass_name, new { @readonly = "readonly", Styles = "width:140px", Class = "l-text" })</td>
</tr>
<tr>
<td class="ltd" width="100px">审核时间:</td>
<td class="rtd">@Html.TextBoxFor(m => m.pass_time, new { @readonly = "readonly", Styles = "width:140px", Class = "l-text" })</td>
</tr>
</table>
</div>
</body>
</html>