纽威
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

161 lines
6.5 KiB

@{
ViewBag.Title = "Form";
Layout = "~/Views/Shared/_Form.cshtml";
}
<script>
var keyValue = $.request("keyValue");
$(function () {
initControl();
GetOrganizeType();
if (!!keyValue) {
$.ajax({
url: "/SystemManage/Organize/GetFormJson",
data: { keyValue: keyValue },
dataType: "json",
async: false,
success: function (data) {
$("#form1").formSerialize(data);
}
});
}
});
function initControl() {
$("#F_CategoryId").select2({ minimumResultsForSearch: -1 })
$("#F_ParentId").bindSelect({
url: "/SystemManage/Organize/GetTreeSelectJson",
});
}
function submitForm() {
if (!$('#form1').formValid()) {
return false;
}
$.submitForm({
url: "/SystemManage/Organize/SubmitForm?keyValue=" + keyValue,
param: $("#form1").formSerialize(),
success: function () {
$.currentWindow().$("#gridList").resetSelection();
$.currentWindow().$("#gridList").trigger("reloadGrid");
}
})
}
//加载机构类型
function GetOrganizeType() {
var html = "";
$.ajax({
url: "/SystemManage/Organize/GetOrganizeType?" + Math.random(),
dataType: "json",
async: false,
success: function (data) {
if (data != false) {
var html = "<option value=\"\">==请选择==</option> ";
for (var i = 0; i <data.length; i++) {
html += " <option value=\"" + data[i]["F_ItemCode"] + "\">" + data[i]["F_ItemName"] + "</option>";
}
document.getElementById("F_CategoryId").innerHTML = html;
}
}
})
}
</script>
<form id="form1">
<div style="margin-top: 10px; margin-left: 10px; margin-right: 10px;">
<ul class="nav nav-tabs">
<li role="presentation" class="active"><a href="#">基本信息</a></li>
@*<li role="presentation"><a href="#">扩展信息</a></li>*@
</ul>
<div style="padding-top: 20px; margin-right: 30px;">
<table class="form">
<tr>
<th class="formTitle">上级</th>
<td class="formValue">
<select id="F_ParentId" name="F_ParentId" class="form-control required">
<option value="0">父节点</option>
</select>
</td>
<th class="formTitle">类型</th>
<td class="formValue">
<select id="F_CategoryId" name="F_Target" class="form-control required">
<option value="">==请选择==</option>
<option value="Group">集团</option>
<option value="Company">公司</option>
<option value="Department">部门</option>
<option value="WorkGroup">小组</option>
</select>
</td>
</tr>
<tr>
<th class="formTitle">名称</th>
<td class="formValue">
<input id="F_FullName" name="F_FullName" type="text" class="form-control required" placeholder="请输入名称" />
</td>
<th class="formTitle">编号</th>
<td class="formValue">
<input id="F_EnCode" name="F_EnCode" type="text" class="form-control required" placeholder="请输入编号" />
</td>
</tr>
<tr>
<th class="formTitle" rowspan="3">负责人</th>
<td class="formValue" rowspan="3" >
<textarea id="F_ManagerId" name="F_ManagerId" class="form-control" style="width:100%;height:120px;padding:0px 0px"></textarea>
</td>
<th class="formTitle">手机</th>
<td class="formValue">
<input id="F_MobilePhone" name="F_MobilePhone" type="text" class="form-control" />
</td>
</tr>
<tr>
<th class="formTitle">微信</th>
<td class="formValue">
<input id="F_WeChat" name="F_ManagerId" type="text" class="form-control" />
</td>
</tr>
<tr>
<th class="formTitle">电话</th>
<td class="formValue">
<input id="F_TelePhone" name="F_TelePhone" type="text" class="form-control" />
</td>
</tr>
<tr>
<th class="formTitle">邮箱</th>
<td class="formValue">
<input id="F_Email" name="F_MobilePhone" type="text" class="form-control" />
</td>
<th class="formTitle">传真</th>
<td class="formValue">
<input id="F_Fax" name="F_MobilePhone" type="text" class="form-control" />
</td>
</tr>
<tr>
<th class="formTitle">地址</th>
<td class="formValue" colspan="3">
<input id="F_Address" name="F_Address" type="text" class="form-control" />
</td>
</tr>
<tr>
<th class="formTitle" style="height: 35px;">选项</th>
<td class="formValue" colspan="3" style="padding-top: 1px;">
<div class="ckbox">
<input id="F_EnabledMark" name="F_EnabledMark" type="checkbox" checked="checked"><label for="F_EnabledMark">有效</label>
</div>
</td>
</tr>
<tr>
<th class="formTitle" valign="top" style="padding-top: 5px;">备注
</th>
<td class="formValue" colspan="3">
<textarea id="F_Description" name="F_Descriptions" class="form-control" style="height: 60px;"></textarea>
</td>
</tr>
</table>
</div>
</div>
</form>