@{ ViewBag.Title = "sqccbxshMessage"; } @model dccdc.Models.sqccbxModel @section scripts{ }
| 申 请 人: | @Html.DisplayFor(m => m.sqr) | ||||
| 申请科室: | @Html.DisplayFor(m => m.ksmc) | 报销金额: | @Html.TextBoxFor(m => m.je, new { @class = "l-text l-text-field-number", @type = "number", @readonly = "readonly" }) | 出差申请单 | @Html.TextBoxFor(m => m.dydh, new { @class = "l-text", @readonly = "readonly" }) |
| 报销内容: | @Html.TextAreaFor(m => m.bz, new { @rows = "2", @style = "width:97%", @readonly = "readonly" }) | ||||
审批过程 查看对应申请单:@Html.DisplayTextFor(m => m.dydh) |
||
| 科室领导 | @if (ViewBag.zw == "科室领导") { @Html.TextArea("spnr1", new { @cols = "77", @rows = "2" }) } else { @Html.TextArea("spnr1", new { @cols = "77", @rows = "2", @readonly = "readonly", @disabled = "disabled" }) } |
@Html.DisplayTextFor(m => m.spr1) @Html.DisplayTextFor(m => m.sptime1) |
| 分管领导 | @if (ViewBag.zw == "分管领导") { @Html.TextArea("spnr2", new { @cols = "77", @rows = "2" }) } else { @Html.TextArea("spnr2", new { @cols = "77", @rows = "2", @readonly = "readonly", @disabled = "disabled" }) } |
@Html.DisplayTextFor(m => m.spr2) @Html.DisplayTextFor(m => m.sptime2) |
| 财务 |
@if (ViewBag.zw == "财务")
{
if (!string.IsNullOrEmpty(Model.bxr))
{
@Html.TextArea("spnr3", new { @cols = "77", @rows = "2" })
}
else
{
关联申请包含项目经费单必须先【项目经费分解】 } } else { @Html.TextArea("spnr3", new { @cols = "77", @rows = "2", @readonly = "readonly", @disabled = "disabled" }) if (!string.IsNullOrEmpty(Model.bxr)) { } } |
@Html.DisplayTextFor(m => m.spr3) @Html.DisplayTextFor(m => m.sptime3) |
| 中心主任 | @if (ViewBag.zw == "中心主任") { @Html.TextArea("spnr4", new { @cols = "77", @rows = "2" }) @Html.Hidden("yzm1", ""); @Html.TextBox("yzm2", "", new { @placeholder = "验证码" }); } else { @Html.TextArea("spnr4", new { @cols = "77", @rows = "2", @readonly = "readonly", @disabled = "disabled" }) } |
@Html.DisplayTextFor(m => m.spr4) @Html.DisplayTextFor(m => m.sptime4) |