📄 taskinfo.jsp
字号:
<%@ page contentType="text/html;charset=gb2312" %>
<%@ page import="com.web.component.*" %>
<%com.web.action.ActionContent input =(com.web.action.ActionContent) request.getAttribute("input");%>
<%
if(input==null)input=new com.web.action.ActionContent();
String jsppath=input.getParam("jsppath");%>
<html>
<head>
<link rel="stylesheet" type="text/css" href="jsp/project/css/main.css" media="all" />
<style>
A{
behavior:url(jsp/mdi/Link.htc);
}
</style>
<script>
function show(obj){
if(obj.style.display=="none"){obj.style.display="block";}
else {obj.style.display="none";}
}
function del(){
if(confirm("确定要删除数据?"))
window.location='project.company.page?cmd=del&key.company_id.int=<%=input.getParam("company_id")%>';
}
</script>
</head>
<BODY class=mainpage >
<TABLE class=std cellSpacing=0 cellPadding=4 width="100%" border=0>
<TR vAlign=top>
<TD width="50%">
<TABLE cellSpacing=1 cellPadding=2 width="100%">
<TBODY>
<TR>
<TD noWrap colSpan=2><STRONG>详细信息</STRONG></TD></TR>
<TR>
<TD noWrap align=right>项目:</TD>
<TD style="BACKGROUND-COLOR: #<%=input.getParam("project_color_identifier")%>"><FONT
color=#000000><%=input.getParam("project_name")%> </FONT></TD></TR>
<TR>
<TD noWrap align=right>任务:</TD>
<TD class=hilite><STRONG><%=input.getParam("task_name")%></STRONG></TD></TR>
<TR>
<TD noWrap align=right>创建者:</TD>
<TD class=hilite><%=new Options(input.getParamObj("user"),input.getParam("task_owner")).getSelectName()%></TD></TR>
<TR>
<TD noWrap align=right>优先级:</TD>
<TD class=hilite><%=new Options(input.getParamObj("taskpriority"),input.getParam("task_priority")).getSelectName()%></TD></TR>
<TR>
<TD noWrap align=right>网址:</TD>
<TD class=hilite width=300><A
href="<%=input.getParam("task_related_url")%>"
target=task88><%=input.getParam("task_related_url")%></A></TD></TR>
<TR>
<TD noWrap align=right>里程碑:</TD>
<TD class=hilite width=300><%=new Options(input.getParamObj("yesno"),input.getParam("task_milestone")).getSelectName()%></TD></TR>
<TR>
<TD noWrap align=right>进度:</TD>
<TD class=hilite width=300><%=input.getParam("task_percent_complete")%>%</TD></TR>
<TR>
<TD noWrap align=right>已工作的时间:</TD>
<TD class=hilite width=300><%=input.getParam("task_hours_worked")%>小时</TD></TR>
<TR>
<TD noWrap colSpan=2><STRONG>日期和目标</STRONG></TD></TR>
<TR>
<TD noWrap align=right>开始日期:</TD>
<TD class=hilite width=300><%=input.getParam("task_start_date")%></TD></TR>
<TR>
<TD noWrap align=right>完成日期:</TD>
<TD class=hilite width=300><%=input.getParam("task_end_date")%></TD></TR>
<TR>
<TD vAlign=top noWrap align=right>预期的期限:</TD>
<TD class=hilite width=300><%=input.getParam("task_duration")%> 小时</TD></TR>
<TR>
<TD noWrap align=right>预算指标 $:</TD>
<TD class=hilite width=300><%=input.getParam("task_target_budget")%></TD></TR>
<TR>
<TD noWrap colSpan=2><STRONG>概述</STRONG></TD></TR>
<TR>
<TD class=hilite vAlign=top colSpan=2
height=75><%=input.getParam("task_description")%>
</TD></TR></TBODY></TABLE></TD>
<TD width="50%">
<TABLE cellSpacing=1 cellPadding=2 width="100%" border=0>
<TBODY>
<TR>
<TD colSpan=3><STRONG>分配给的用户</STRONG></TD></TR>
<TR>
<TD colSpan=3>
<TABLE cellSpacing=1 width="100%" bgColor=black>
<TBODY>
<%Table rsuser=new com.web.component.Table(input.getParamObj("rsuser"));
while (rsuser.next()){
%>
<TR>
<TD class=hilite><%=rsuser.getField("user_last_name")%><%=rsuser.getField("user_first_name")%></TD>
<TD class=hilite><%=rsuser.getField("user_email")%></TD></TR>
<%}%>
</TBODY></TABLE></TD></TR>
<TR>
<TD colSpan=3><STRONG>依赖</STRONG></TD></TR>
<TR>
<TD colSpan=3>
<TABLE cellSpacing=1 width="100%" bgColor=black>
<TBODY>
<TR>
<TD bgColor=#ffffff>无</TD></TR></TBODY></TABLE></TD></TR>
<TR>
<TD width="100%"><STRONG>附件</STRONG></TD>
<TD noWrap align=right><A
href="">附件
</A></TD>
<TD width=20></TD></TR>
<TR>
<TD colSpan=3>
<TABLE cellSpacing=1 width="100%" bgColor=black>
<TBODY>
<%Table rsfile=new com.web.component.Table(input.getParamObj("rsfile"));
while (rsfile.next()){
%>
<TR>
<TD class=hilite><A
href=""><%=rsfile.getField("file_name")%></A></TD>
<TD class=hilite><%=rsfile.getField("file_type")%></TD>
<TD class=hilite><%=rsfile.getField("file_size")%></TD></TR>
<%}%>
</TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TABLE>
</BODY></HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -