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.
98 lines
4.3 KiB
98 lines
4.3 KiB
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
|
|
<%
|
|
String path = request.getContextPath();
|
|
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
|
|
%>
|
|
<%@ taglib prefix="s" uri="/struts-tags"%>
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<html>
|
|
<head>
|
|
<title>校园宿舍管理系统</title>
|
|
<base href="<%=basePath%>">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<link href="Style/Style.css" rel="stylesheet" type="text/css" />
|
|
</head>
|
|
<script language="JavaScript">
|
|
|
|
|
|
function mycheck(){
|
|
|
|
if(isNull(form1.repair_id.value)){
|
|
alert("请选择维修状态!");
|
|
return false;
|
|
}
|
|
}
|
|
|
|
function isNull(str){
|
|
if ( str == "" ) return true;
|
|
var regu = "^[ ]+$";
|
|
var re = new RegExp(regu);
|
|
return re.test(str);
|
|
}
|
|
|
|
|
|
</script>
|
|
<body>
|
|
<center>
|
|
<table width="900" border="0" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td height="60" bgcolor="#E6F5FF" style="color:#06F; font-size:19px; font-weight:bolder; padding-left:50px;">校园宿舍管理系统</td>
|
|
</tr>
|
|
<tr>
|
|
<td height="30" background="Images/MenuBg.jpg"> </td>
|
|
</tr>
|
|
<tr>
|
|
<td height="500" align="center" valign="top"><table width="900" border="0" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td width="191" height="500" align="center" valign="top" background="Images/leftbg.jpg">
|
|
<%@ include file="Left.jsp"%>
|
|
</td>
|
|
<td width="709" align="center" valign="top" bgcolor="#F6F9FE"><table width="709" border="0" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td height="30" background="Images/mainMenuBg.jpg" style="padding-left:25px;">修改维修状态</td>
|
|
</tr>
|
|
<tr>
|
|
<td height="470" align="center" valign="top" bgcolor="#F6F9FE"><form name="form1" method="post" action="RepairUpdateSave.action" onSubmit="return mycheck()" >
|
|
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td width="33%" height="30" align="right"> </td>
|
|
<td width="67%"><input name="repair_id" type="text" class="noshow" id="repair_id" value="<s:property value='cnbean.repair_id'/>"></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td height="30" align="right"><span style="color:red;">*</span>维修状态:</td>
|
|
<td><select name="repair_status" id="repair_status">
|
|
<option value="">请选择</option>
|
|
<option value="已修"
|
|
<s:if test='cnbean.repair_status=="已修"'>selected</s:if>
|
|
>已修
|
|
</option>
|
|
<option value="未修"
|
|
<s:if test='cnbean.repair_status=="未修"'>selected</s:if>
|
|
>未修
|
|
</option>
|
|
</select></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td height="30"> </td>
|
|
<td ><input type="submit" name="button" id="button" value="修改维修状态"></a>
|
|
|
|
<input type="button" name="button2" id="button2" value="返回上页" onClick="javascript:history.back(-1);"></td>
|
|
</tr>
|
|
</table>
|
|
</form></td>
|
|
</tr>
|
|
</table></td>
|
|
</tr>
|
|
</table></td>
|
|
</tr>
|
|
<tr>
|
|
<td height="35" background="Images/bootBg.jpg"> </td>
|
|
</tr>
|
|
</table>
|
|
|
|
</center>
|
|
</body>
|
|
</html>
|