34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
@model WX.CRM.Model.Entity.CSVR_FAVORITECUSTOMER_extend
|
|
@{
|
|
ViewBag.Title = "详细信息";
|
|
Layout = "~/Views/Shared/_Index_LayoutEdit.cshtml";
|
|
}
|
|
<table class="fromEditTable setTextWidth300">
|
|
<tr>
|
|
<td style=" width:100px;">@Html.LabelFor(model => model.map_RESID)</td>
|
|
<td>@Html.DisplayFor(model => model.map_RESID)</td>
|
|
</tr>
|
|
<tr>
|
|
<td style=" width:100px;">客户姓名</td>
|
|
<td>@Html.DisplayFor(model => model.Name)</td>
|
|
</tr>
|
|
<tr>
|
|
<td style=" width:100px;">@Html.LabelFor(model => model.map_PARAKEY)</td>
|
|
<td>@Html.DropDownListFor(model => model.map_PARAKEY, new WX.CRM.WEB.Handler.ControlResource().GetBas_subcomTypeList(1), new { @disabled = "false" })</td>
|
|
</tr>
|
|
<tr>
|
|
<td style=" width:100px;">@Html.LabelFor(model => model.map_MEMO)</td>
|
|
<td>
|
|
@Html.DisplayFor(model => model.map_MEMO)
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style=" width:100px;">@Html.LabelFor(model => model.map_CTIME)</td>
|
|
<td>@Html.DisplayFor(model => model.map_CTIME)</td>
|
|
|
|
</tr>
|
|
|
|
|
|
</table>
|