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.
102 lines
3.8 KiB
102 lines
3.8 KiB
@{
|
|
ViewBag.Title = "Form";
|
|
Layout = "~/Views/Shared/_Form.cshtml";
|
|
}
|
|
<script>
|
|
var keyValue = $.request("keyValue");
|
|
var itemId = $.request("itemId");
|
|
$(function () {
|
|
if (!!keyValue) {
|
|
$.ajax({
|
|
url: "/SystemManage/ItemsData/GetFormJson",
|
|
data: { keyValue: keyValue },
|
|
dataType: "json",
|
|
async: false,
|
|
success: function (data) {
|
|
$("#form1").formSerialize(data);
|
|
}
|
|
});
|
|
}
|
|
});
|
|
function submitForm() {
|
|
if (!$('#form1').formValid()) {
|
|
return false;
|
|
}
|
|
var postData = $("#form1").formSerialize();
|
|
postData["F_ItemId"] = itemId;
|
|
$.submitForm({
|
|
url: "/SystemManage/ItemsData/SubmitForm?keyValue=" + keyValue,
|
|
param: postData,
|
|
success: function () {
|
|
$.currentWindow().$("#gridList").trigger("reloadGrid");
|
|
}
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<form id="form1">
|
|
<div style="padding-top: 20px; margin-right: 20px;">
|
|
<table class="form">
|
|
<tr>
|
|
<th class="formTitle">名称</th>
|
|
<td class="formValue">
|
|
<input id="F_ItemName" name="F_ItemName" type="text" class="form-control required" placeholder="请输入名称" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th class="formTitle">编号</th>
|
|
<td class="formValue">
|
|
<input id="F_ItemCode" name="F_ItemCode" type="text" class="form-control required" placeholder="请输入编号" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th class="formTitle">排序</th>
|
|
<td class="formValue">
|
|
<input id="F_SortCode" name="F_SortCode" type="text" class="form-control required" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th class="formTitle">字段1</th>
|
|
<td class="formValue">
|
|
<input id="F_Define1" name="F_Define1" type="text" class="form-control" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th class="formTitle">字段2</th>
|
|
<td class="formValue">
|
|
<input id="F_Define2" name="F_Define2" type="text" class="form-control" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th class="formTitle">字段3</th>
|
|
<td class="formValue">
|
|
<input id="F_Define3" name="F_Define3" type="text" class="form-control" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th class="formTitle">字段4</th>
|
|
<td class="formValue">
|
|
<input id="F_Define4" name="F_Define4" type="text" class="form-control" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th class="formTitle" style="height: 35px;">选项</th>
|
|
<td class="formValue" style="padding-top: 1px;">
|
|
<div class="ckbox">
|
|
<input id="F_IsDefault" name="F_IsDefault" type="checkbox"><label for="F_IsDefault">默认</label>
|
|
</div>
|
|
<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">
|
|
<textarea id="F_Description" name="F_Description" class="form-control" style="height: 60px;"></textarea>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</form>
|