@{ ViewBag.Title = "Add"; } @model dccdc.Models.occupation_reportModel @section scripts{ }
@using (Ajax.BeginForm("Add", new AjaxOptions { HttpMethod = "Post", OnSuccess = "success" })) { @Html.HiddenFor(m => m.id, new { @id = "id" }) @Html.HiddenFor(m => m.status, new { @id = "status" }) @Html.HiddenFor(m => m.person_ids, new { @id = "person_ids" }) @Html.HiddenFor(m => m.report_status, new { @id = "report_status" }) @*2023-10-31 xulu 内容较乱暂时隐藏*@ @* *@ @* *@
总结编号: @Html.TextBoxFor(m => m.report_num, new { @id = "report_num", @class = "l-text", @readonly = "readonly", style = "width:250px" }) 日期范围: @Html.TextBoxFor(m => m.check_start_time, new { @id = "check_start_time", @class = "l-text", @readonly = "readonly", style = "" })-@Html.TextBoxFor(m => m.check_end_time, new { @id = "check_end_time", @class = "l-text", @readonly = "readonly", style = "width:120px" })
受检单位: @Html.TextBoxFor(m => m.subject_company, new { @id = "subject_company", @class = "l-text", style = "width:100%" }) @Html.ValidationMessageFor(m => m.subject_company)
委托单位: @Html.TextBoxFor(m => m.entrust_company, new { @id = "entrust_company", @class = "l-text", @readonly = "readonly", style = "width:100%" })
统计单位: @Html.TextBoxFor(m => m.count_unit, new { @id = "count_unit", @class = "l-text", style = "width:100%" })
报告日期: @Html.TextBoxFor(m => m.report_date, new { @id = "report_date", @class = "l-text", style = "width:40%" })
检查及评价依据(双击选择): 职业病诊断标准:
@Html.TextAreaFor(m => m.evaluation_basic, new { @id = "evaluation_basic", style = "width:100%;height:100px" }) @Html.TextAreaFor(m => m.diagnostic_standard, new { @id = "diagnostic_standard", style = "width:100%;height:100px" })
@Html.TextArea("tbHazard", "", new { style = "width:100%;height:100px" })
@Html.TextAreaFor(m => m.descript, new { @id = "descript", style = "width:100%;height:100px" })
职业病危害因素:
@Html.TextAreaFor(m => m.hazards_text, new { @id = "hazards_text", style = "width:100%;height:100px" })
查体项目:
@Html.TextAreaFor(m => m.check_items, new { @id = "check_items", style = "width:100%;height:100px" })
目标疾病:
@Html.TextAreaFor(m => m.target_disease, new { @id = "target_disease", style = "width:100%;height:100px" })
体检结果总结: 重点关注:@Html.TextBoxFor(m => m.expersion_disease, new { @id = "expersion_disease", @class = "l-text", style = "width:60px" }) 其他疾病:@Html.TextBoxFor(m => m.other_disease, new { @id = "other_disease", @class = "l-text", style = "width:60px" })
@Html.TextAreaFor(m => m.result_description, new { @id = "result_description", style = "width:100%;height:100px" })
单危害因素体检结果分析:
@Html.TextAreaFor(m => m.per_factory_analysis, new { @id = "per_factory_analysis", style = "width:100%;height:100px" })
处理意见及建议(双击选择):
@Html.TextAreaFor(m => m.treatment_opinion, new { @id = "treatment_opinion", style = "width:100%;height:100px" })
}