first commit
This commit is contained in:
64
bin/WebRoot/jsp/quality/qeProjectAdd.jsp
Normal file
64
bin/WebRoot/jsp/quality/qeProjectAdd.jsp
Normal file
@ -0,0 +1,64 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
|
||||
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<jsp:include page="../inc.jsp"></jsp:include>
|
||||
<script type="text/javascript">
|
||||
function dosave(dialog,grid) {
|
||||
if ($(".form").form('validate')) {
|
||||
$.post(ext.contextPath + "/quality/qeproject/save.do", $(".form").serialize(), function(data) {
|
||||
if (data.res == 1) {
|
||||
top.$.messager.alert('提示', "保存成功", 'info', function() {
|
||||
grid.datagrid('reload');
|
||||
dialog.dialog('destroy');
|
||||
});
|
||||
}else if(data.res == 0){
|
||||
top.$.messager.alert('提示', "保存失败", 'info');
|
||||
}else{
|
||||
top.$.messager.alert('提示', data.res, 'info');
|
||||
}
|
||||
},'json');
|
||||
}
|
||||
}
|
||||
|
||||
//信息验证
|
||||
|
||||
|
||||
$(function() {
|
||||
$('#procedureid').combobox({
|
||||
url : ext.contextPath + '/process/taskprocedure/getprocedlist.do?random=' + Math.random(),
|
||||
valueField:'id',
|
||||
textField:'procedurename',
|
||||
method:'get'
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<form method="post" class="form">
|
||||
<table class="table">
|
||||
<tr>
|
||||
<th>工序</th>
|
||||
<td><input id="procedureid" name="procedureid" class="easyui-combobox"
|
||||
data-options="required:true,validType:'isBlank'" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>产品编码</th>
|
||||
<td><input id="productno" name="productno" class="easyui-textbox"
|
||||
data-options="required:true,validType:'isBlank'" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>项目名</th>
|
||||
<td><input name="projectname" class="easyui-textbox" data-options="required:true,validType:'isBlank'" type="text" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user