36 lines
1.3 KiB
Plaintext
36 lines
1.3 KiB
Plaintext
@model WX.CRM.Model.QueryMap.Ord_MemoDelete
|
||
@{
|
||
ViewBag.Title = "Details";
|
||
Layout = null;
|
||
}
|
||
|
||
@if (Model == null)
|
||
{
|
||
<script>
|
||
$.messageBox5s('提示', "工单记录不存在!");
|
||
</script>
|
||
}
|
||
else
|
||
{
|
||
<div class="group ">
|
||
<img src="~/Content/Images/communication.gif">
|
||
<span>工单详情</span>
|
||
</div>
|
||
<table class="fromEditTable mainTable" style="border-top:1px dashed #ccc;">
|
||
<tbody>
|
||
<tr>
|
||
<td style="width:100px;">客户ID:@Html.DisplayFor(m => m.ResId)</td>
|
||
<td style="width:100px;">受理人:@(Html.DisplayTextFor(m => m.EID)+" - "+Html.DisplayFor(m=>m.Name))</td>
|
||
<td style="width:100px;">受理时间:@Html.DisplayFor(m => m.CTime)</td>
|
||
</tr>
|
||
<tr>
|
||
<td style="width:100px;">工单大类:@Html.DisplayFor(m => m.MemoTypeName)</td>
|
||
<td style="width:100px;">工单小类:@Html.DisplayFor(m => m.MemoSubTypeName)</td>
|
||
<td style="width:100px;"></td>
|
||
</tr>
|
||
<tr>
|
||
<td colspan="3">工单内容:@Html.DisplayFor(m => m.MemoContent, new { style = "width:250px" })</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
} |