📄 modify.jsp
字号:
<%@page contentType="text/html;charset=gb2312"%>
<jsp:directive.page import="com.runwit.common.util.DateUtil"/>
<%@ taglib uri="/tags/struts-bean" prefix="bean" %>
<%@ taglib uri="/tags/struts-html" prefix="html" %>
<%@ taglib uri="/tags/struts-logic" prefix="logic" %>
<html>
<head>
<title>项目管理->管理页面</title>
<%@include file="../../inc/style.css"%>
</head>
<body>
<center>
<%@include file="../../inc/head.inc"%>
<!--输入表格-->
<table width="780" border="0">
<html:form action="/project/projectact.do?function=update">
<tbody>
<tr>
<td colspan="2" align="left">
新项目增加>>
</td>
</tr>
<tr>
<td width="150" bgcolor="#DDDDEE">项目序列号</td>
<td width="630">
<html:text name="modifyModel" property="model.projectId" size="50" maxlength="100" readonly="true" style="background:#DDDDDD" />*
</td>
</tr>
<tr>
<td width="150" bgcolor="#DDDDEE">项目名称</td>
<td width="630">
<html:text name="modifyModel" property="model.name" size="50" maxlength="100"/>*
</td>
</tr>
<tr>
<td width="150" bgcolor="#DDDDEE">负责人</td>
<td width="630">
<html:text name="modifyModel" property="model.owner" size="50" maxlength="100"/>
</td>
</tr>
<tr>
<td bgcolor="#DDDDEE">项目说明</td>
<td>
<html:textarea name="modifyModel" property="model.remark" rows="5" cols="60"/>
</td>
</tr>
<tr>
<td bgcolor="#DDDDEE">创建时间</td>
<td>
<bean:define id="createTime" name="modifyModel" property="model.createTime"></bean:define>
<%=DateUtil.getStrFromMills(((Long)createTime).longValue()) %>
</td>
</tr>
<tr>
<td colspan="2" align="left">
<html:submit value=" 修改 "/>
<html:button property="" onclick="history.back();" value=" 返回 "></html:button>
</td>
</tr>
</tbody>
</html:form>
</table>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -