91 lines
2.9 KiB
Plaintext
91 lines
2.9 KiB
Plaintext
|
<%@ page contentType="text/html;charset=UTF-8" %>
|
|||
|
<%@ include file="/webpage/include/taglib.jsp"%>
|
|||
|
<html>
|
|||
|
<head>
|
|||
|
<title>新建模型-模型管理</title>
|
|||
|
<meta name="decorator" content="default"/>
|
|||
|
<script type="text/javascript">
|
|||
|
var validateForm;
|
|||
|
function doSubmit(){//回调函数,在编辑和保存动作时,供openDialog调用提交表单。
|
|||
|
if(validateForm.form()){
|
|||
|
$("#inputForm").submit();
|
|||
|
return true;
|
|||
|
}
|
|||
|
|
|||
|
return false;
|
|||
|
}
|
|||
|
$(document).ready(function(){
|
|||
|
top.$.jBox.tip.mess = null;
|
|||
|
validateForm = $("#inputForm").validate({
|
|||
|
submitHandler: function(form){
|
|||
|
//loading('正在提交,请稍等...');
|
|||
|
form.submit();
|
|||
|
setTimeout(function(){location='${ctx}/act/model/'}, 1000);
|
|||
|
},
|
|||
|
errorContainer: "#messageBox",
|
|||
|
errorPlacement: function(error, element) {
|
|||
|
$("#messageBox").text("输入有误,请先更正。");
|
|||
|
if (element.is(":checkbox")||element.is(":radio")||element.parent().is(".input-append")){
|
|||
|
error.appendTo(element.parent().parent());
|
|||
|
} else {
|
|||
|
error.insertAfter(element);
|
|||
|
}
|
|||
|
}
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
</head>
|
|||
|
<body>
|
|||
|
<sys:message content="${message}"/>
|
|||
|
<div style="width:100%;height:100%;">
|
|||
|
<form id="inputForm" action="${ctx}/act/model/create" method="post" class="form-horizontal">
|
|||
|
<table class="table table-bordered table-condensed dataTables-example dataTable no-footer">
|
|||
|
<tbody>
|
|||
|
<tr>
|
|||
|
<td class=" active" style="width: 70px"><label class="pull-right" style="width: 70px"><font color="red">*</font>流程分类:</label></td>
|
|||
|
<td class="">
|
|||
|
<select id="category" name="category" class="required form-control ">
|
|||
|
<c:forEach items="${fns:getDictList('act_category')}" var="dict">
|
|||
|
<option value="${dict.value}">${dict.label}</option>
|
|||
|
</c:forEach>
|
|||
|
</select>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
|
|||
|
<tr>
|
|||
|
<td class=" active"><label class="pull-right"><font color="red">*</font>模块名称:</label></td>
|
|||
|
<td class="">
|
|||
|
<input id="name" name="name" type="text" class="form-control required" />
|
|||
|
<span class="help-inline"></span>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
|
|||
|
<tr>
|
|||
|
<td class=" active"><label class="pull-right"><font color="red">*</font>模块标识:</label></td>
|
|||
|
<td class="">
|
|||
|
<!-- <div class="controls"> -->
|
|||
|
<input id="key" name="key" type="text" class="form-control required" />
|
|||
|
<!-- <span class="help-inline"></span> -->
|
|||
|
<!-- </div> -->
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
|
|||
|
<tr>
|
|||
|
<td class=" active"><label class="pull-right"><font color="red">*</font>模块描述:</label></td>
|
|||
|
<td class="">
|
|||
|
<textarea id="description" name="description" class="form-control required"></textarea>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
|
|||
|
</tbody>
|
|||
|
</table>
|
|||
|
<!-- <div class="control-group"> -->
|
|||
|
<!-- <label class="control-label"></label> -->
|
|||
|
<!-- <div class="controls"> -->
|
|||
|
<!-- </div> -->
|
|||
|
<!-- </div> -->
|
|||
|
</form>
|
|||
|
</div>
|
|||
|
</body>
|
|||
|
</html>
|