@model AY.CRM.Model.Entity.BAS_INNERUSER_EXT @using System.Web.UI.WebControls @using WX.CRM.WebHelper; @{ ViewBag.Title = "客服属性修改"; Layout = "~/Views/Shared/_Index_LayoutEdit.cshtml"; }
@Html.ToolButtonPlain("btnSave", "icon-save", "保存", false, "") @Html.ToolButtonPlain("btnClose", "icon-remove", "关闭", false, "onClick='window.parent.frameReturnByClose()'")
@using (Html.BeginForm("EditUserCustomer", "InserUser", null, FormMethod.Post, new { Id = "CreateForm" })) {
员工客服状态
工号:@ViewBag.map_eID @Html.HiddenFor(m => m.INNERUSERID) 员工客服状态修改
客服状态: @Html.RadioButtonListFor(m => m.CustomerType, new List() { new SelectListItem() { Value = "5", Text = "否"}, new SelectListItem() {Value = "2", Text = "客服经理"}, new SelectListItem() {Value = "3", Text = "客服"}, new SelectListItem() {Value = "4", Text = "高级客服"} }, RepeatDirection.Horizontal, 4)
}