@model WX.CRM.Model.QueryMap.QHCommissionRuleInfo @using WX.CRM.WebHelper; @{ ViewBag.Title = "佣金分成编辑"; Layout = "~/Views/Shared/_Index_LayoutEdit.cshtml"; } @using (Html.BeginForm("Edit", "CommissionApply", null, FormMethod.Post, new { Id = "EditForm" })) { @Html.ValidationSummary(true)
交易商代码: @Html.TextBoxFor(m => m.userAccount, new { @style = "width:120px;", onchange = "intiDataByTradeCode(this,0)" }) @Html.ValidationMessageFor(m => m.userAccount) @Html.HiddenFor(m => m.pkid, new { @Value = Model == null ? "0" : Model.pkid.ToString() }) @Html.HiddenFor(m => m.isOwner, new { @Value = Model == null ? "0" : Model.isOwner.ToString() }) 交易商名称: @Html.TextBoxFor(m => m.userName, new { @style = "width:120px;", @disabled = "disabled" })   
起止日期: @Html.TextBoxFor(m => m.sdDate, new { @style = "width:120px;", @class = "Wdate", Value = String.Format("{0:yyyy-MM-dd}", Model.sdDate), onclick = "WdatePicker({dateFmt:'yyyy-MM-dd'})" })@Html.ValidationMessageFor(m => m.sdDate) ~ @Html.TextBoxFor(m => m.edDate, new { @style = "width:120px;", @class = "Wdate", Value = String.Format("{0:yyyy-MM-dd}", Model.edDate), onclick = "WdatePicker({dateFmt:'yyyy-MM-dd'})" })@Html.ValidationMessageFor(m => m.edDate)
  • 经纪人工号: @Html.TextBoxFor(m => m.item0.eid, new { @style = "width:80px;", @ison = "1", onchange = "showUserName(this)" })   比例:@Html.TextBoxFor(m => m.item0.ratio, new { @style = "width:40px;", @ison = "1" })%
  • 参与分成人员工号: @Html.TextBoxFor(m => m.item1.eid, new { @style = "width:80px;", @ison = "2", onchange = "showUserName(this)" })   比例:@Html.TextBoxFor(m => m.item1.ratio, new { @style = "width:40px;", @ison = "2" })%
  • 需返还人员工号: @Html.TextBoxFor(m => m.item4.eid, new { @style = "width:80px;", @ison = "3", onchange = "showUserName(this)" })   比例:@Html.TextBoxFor(m => m.item4.ratio, new { @style = "width:40px;", @ison = "3" })%
  • 参与分成人员工号: @Html.TextBoxFor(m => m.item2.eid, new { @style = "width:80px;", @ison = "2", onchange = "showUserName(this)" })   比例:@Html.TextBoxFor(m => m.item2.ratio, new { @style = "width:40px;", @ison = "2" })%
  • 需返还人员工号: @Html.TextBoxFor(m => m.item5.eid, new { @style = "width:80px;", @ison = "3", onchange = "showUserName(this)" })   比例:@Html.TextBoxFor(m => m.item5.ratio, new { @style = "width:40px;", @ison = "3" })%
  • 参与分成人员工号: @Html.TextBoxFor(m => m.item3.eid, new { @style = "width:80px;", @ison = "2", onchange = "showUserName(this)" })   比例:@Html.TextBoxFor(m => m.item3.ratio, new { @style = "width:40px;", @ison = "2" })%
  • 需返还人员工号: @Html.TextBoxFor(m => m.item6.eid, new { @style = "width:80px;", @ison = "3", onchange = "showUserName(this)" })   比例:@Html.TextBoxFor(m => m.item6.ratio, new { @style = "width:40px;", @ison = "3" })%
  • 操盘手工号: @Html.TextBoxFor(m => m.item7.eid, new { @style = "width:80px;", @ison = "4", onchange = "showUserName(this)" })   比例:@Html.TextBoxFor(m => m.item7.ratio, new { @style = "width:40px;", @ison = "4" })%
  • 操盘手工号: @Html.TextBoxFor(m => m.item8.eid, new { @style = "width:80px;", @ison = "4", onchange = "showUserName(this)" })   比例:@Html.TextBoxFor(m => m.item8.ratio, new { @style = "width:40px;", @ison = "4" })%
@Html.ValidationMessageFor(m => m.item0.eid)@Html.ValidationMessageFor(m => m.item0.ratio) @Html.ValidationMessageFor(m => m.item1.eid)@Html.ValidationMessageFor(m => m.item1.ratio) @Html.ValidationMessageFor(m => m.item2.eid)@Html.ValidationMessageFor(m => m.item2.ratio) @Html.ValidationMessageFor(m => m.item3.eid)@Html.ValidationMessageFor(m => m.item3.ratio) @Html.ValidationMessageFor(m => m.item4.eid)@Html.ValidationMessageFor(m => m.item4.ratio) @Html.ValidationMessageFor(m => m.item5.eid)@Html.ValidationMessageFor(m => m.item5.ratio) @Html.ValidationMessageFor(m => m.item6.eid)@Html.ValidationMessageFor(m => m.item6.ratio) @Html.ValidationMessageFor(m => m.item7.eid)@Html.ValidationMessageFor(m => m.item7.ratio) @Html.ValidationMessageFor(m => m.item8.eid)@Html.ValidationMessageFor(m => m.item8.ratio)
}