📄 sueadd.jsp
字号:
</tr>
</table>
<table align="center" border="0" cellspacing="1" cellpadding="5" class="table_bg" width="100%">
<tr>
<td width="18%" align="right" class="title_bg"> 案件编码: </td>
<td width="28%" class="tr_bg1">
<input name="txtCaseID" size="12" class="input" readOnly value=<%=fid%>>
<font color="#FF0000">* </font></td>
<td width="19%" align="right" class="title_bg"> 案件编号: </td>
<td width="35%" class="tr_bg1">
<input name="txtCaseNo" size="20" class="input" >
<font color="#FF0000">* </font></td>
</tr>
<tr>
<td align="right" width="18%" class="title_bg"> 案由:</td>
<td class="tr_bg1" colspan="3">
<input name="txtCaseReason" size="50" class="input">
<font color="#FF0000">* </font></td>
</tr>
<tr>
<td align=right width=18% class="title_bg"> 收案时间:</td>
<td width=28% class="tr_bg1">
<input type="text" name="txtBeginDate" maxlength="10" size="10" class="input" readOnly value="">
<img src="../images/datetime.gif" border="0" align="absmiddle"
alt="弹出日历下拉菜单" onClick="fPopUpCalendarDlg(txtBeginDate);return false" width="16" height="16">
<font color="#FF0000">*</font> </td>
<td align=right width=19% class="title_bg">结案时间: </td>
<td width=35% class="tr_bg1" >
<input type="text" name="txtEndDate" maxlength="10" size="10" class="input" readOnly value="">
<img src="../images/datetime.gif" border="0" align="absmiddle"
alt="弹出日历下拉菜单" onClick="fPopUpCalendarDlg(txtEndDate);return false" width="16" height="16">
</td>
</tr>
<tr>
<td align="right" width="18%" class="title_bg"> 承办律师:</td>
<td width="28%" class="tr_bg1">
<select name="txtLawyer" class="select">
<option value=""> </option>
<%
ResultSet rs = db.executeQuery("select employee_id, employee_name from t_employee where (duty like '%律师' or duty='主任' or duty='合伙人') and active='1'");
while (rs.next()) {
%>
<option value=<%=rs.getString("employee_id")%>><%=rs.getString("employee_name")%></option>
<%}%>
<option value=""> ____ __ </option>
</select>
<font color="#FF0000">* </font></td>
</td>
<td align="right" width="19%" class="title_bg"> 审批(人):</td>
<td width=35% class="tr_bg1" >
<select name="txtApproveMan" class="select">
<option value=""></option>
<%
rs = db.executeQuery("select employee_id, employee_name from t_employee");
while (rs.next()) {
%>
<option value=<%=rs.getString("employee_id")%>><%=rs.getString("employee_name")%></option>
<%}%>
<option value=""> _______ </option>
</select>
</tr>
<tr>
<td align=right width=18% class="title_bg"> 案件类别:</td>
<td width=28% class="tr_bg1">
<select name="txtCaseType" class="select" >
<option value="ssaj" selected>诉讼案件</option>
</select>
</td>
<td align="right" width="19%" class="title_bg"> 案件属性:</td>
<td width=35% class="tr_bg1">
<select name="txtCaseAttribute" class="select" >
<option value="qtss" > </option>
<option value="xsss" >刑事诉讼</option>
<option value="msss">民事诉讼</option>
<option value="jjss">经济诉讼</option>
<option value="xzss">行政诉讼</option>
<option value="qtss">其他诉讼</option>
</select>
</td>
</tr>
<tr>
<td align=right width=18% class="title_bg"> 委托角色:</td>
<td width=28% class="tr_bg1">
<select name="txtAgentSide" class="select" >
<option value="1" selected>原告</option>
<option value="2">被告</option>
<option value="3">第三人</option>
</select>
</td>
<td align=right width=19% class="title_bg"> 委托人:</td>
<td width=35% class="tr_bg1" >
<select name="txtCustomer" class="select">
<option value=""> </option>
<%
rs = db.executeQuery("select customer_id, customer_name from t_customer");
String customer_id="",customer_name="";
while (rs.next())
{
customer_id = rs.getString("customer_id");
customer_name = rs.getString("customer_name");
customer_name = customer_name.trim();
%>
<option value=<%=customer_id%>><%=customer_name%></option>
<%
} %>
<option value="">___________________ </option>
</select>
</td>
</tr>
<tr>
<td align=right width=18% class="title_bg"> 涉外信息: </td>
<td width=28% class="tr_bg1">
<select name="txtReferForeign" class="select">
<option value="0" selected>无</option>
<option value="1" >涉外</option>
<option value="2" >涉台</option>
<option value="3" >涉港澳</option>
</select>
</td>
<td align=right width=19% class="title_bg"> 受理法院: </td>
<td width=35% class="tr_bg1" >
<input name="txtCourt" size="25" class="input">
</td>
</tr>
<tr>
<td align=right width=18% class="title_bg" height="49"> 被告简介:</td>
<td class="tr_bg1" width="28%" height="49">
<textarea name="txtDefendantInfo" cols="25" wrap="VIRTUAL" rows="2" class="input"></textarea>
</td>
<td align="right" class="title_bg" width="19%" height="49">原告简介:</td>
<td class="tr_bg1" width="35%" height="25">
<textarea name="txtPlaintiffInfo" cols="25" wrap="VIRTUAL" rows="2" class="input"> </textarea>
</td>
</tr>
<tr>
<td align=right width=18% class="title_bg">审级: </td>
<td width=28% class="tr_bg1">
<select name="txtJudgeLevel" class="select">
<option value="1" selected>一审</option>
<option value="2">二审</option>
</select>
</td>
<td align=right width=19% class="title_bg">判决书递交客户: </td>
<td width=35% class="tr_bg1" >
<input type="text" name="txtJudgeToCustomerDate" maxlength="10" size="10" class="input" readOnly value="">
<img src="../images/datetime.gif" border="0" align="absmiddle"
alt="弹出日历下拉菜单" onClick="fPopUpCalendarDlg(txtJudgeToCustomerDate);return false" width="16" height="16">
</td>
</tr>
<tr>
<td align=right width=18% class="title_bg"> 是否收费: </td>
<td width=28% class="tr_bg1">
<select name="txtCharged" class="select">
<option value=1 selected>是</option>
<option value=0 >否</option>
</select>
</td>
<td align=right width=19% class="title_bg"> 免费事由: </td>
<td width=35% class="tr_bg1" >
<input name="txtNoPayReason" size="20" class="input" >
</td>
</tr>
<tr>
<td align=right width=18% class="title_bg" height="38"> 相关证据: </td>
<td class="tr_bg1" height="38">
<input id=file1 name="txtProof" type=file size=15 class=input>
</td>
<td align=right width=18% class="title_bg" height="35"> 开庭报告: </td>
<td class="tr_bg1" width="28%">
<input id=file1 name="txtCourtReport" type=file size=15 class=input>
</td>
</tr>
<tr>
<td align=right width=18% class="title_bg" height="29"> 案情讨论记录: </td>
<td class="tr_bg1" height="29">
<input id=file1 name="txtDiscussRecord" type=file size=15 class=input>
</td>
<td align=right width=18% class="title_bg" height="35"> 法院文书: </td>
<td class="tr_bg1" width="28%">
<input id=file1 name="txtCourtBook" type=file size=15 class=input>
</td>
</tr>
<tr>
<td align=right width=18% class="title_bg" height="35"> 律师代理词: </td>
<td class="tr_bg1" height="35">
<input id=file1 name="txtAgentWord" type=file size=15 class=input>
</td>
<td align=right width=18% class="title_bg" height="35"> 律师起诉状: </td>
<td class="tr_bg1" width="28%">
<input id=file1 name="txtIndictment" type=file size=15 class=input>
</td>
</tr>
<tr>
<td align=right width=18% class="title_bg"> 律师庭审笔录: </td>
<td class="tr_bg1" width="28%">
<input id=file1 name="txtCourtNote" type=file size=15 class=input>
</td>
<td align=right width=18% class="title_bg" height="35"> 律师阅卷笔录: </td>
<td class="tr_bg1" width="28%">
<input id=file1 name="txtReadNote" type=file size=15 class=input>
</td>
</tr>
<tr>
<td align=right width=18% class="title_bg"> 办案小结: </td>
<td class="tr_bg1" width="28%">
<input id=file1 name="txtCaseBrief" type=file size=15 class=input>
</td>
<td align=right width=19% class="title_bg"> 判决结果: </td>
<td class="tr_bg1" width="35%">
<input name="txtJudgeResult" size="20" class="input">
</td>
</tr>
<tr>
<td align=right width=18% class="title_bg"> 备注: </td>
<td colspan=3 class="tr_bg1">
<textarea name="txtCaseRemark" cols="75" class="input" rows="2"></textarea>
</td>
</tr>
</table>
</div>
<div id="Layer2" style="Position:absolute; left:5px; top:70px; width:98%; height:161px; z-index:2; visibility: hidden">
<table border="0" cellspacing="0" cellpadding="0" height="25" >
<tr class="tr_bg1" align="center">
<td class="table_bg" colspan="11" height="1" ></td>
</tr>
<tr class="tr_bg1" align="center">
<td class="table_bg" width="1" ></td>
<td onClick="MM_showHideLayers('Layer1','','show','Layer2','','hide','Layer3','','hide','Layer4','','hide','Layer5','','hide')" style="cursor:hand" width="60" >案件信息</td>
<td class="table_bg" width="1"></td>
<td onClick="MM_showHideLayers('Layer1','','hide','Layer2','','show','Layer3','','hide','Layer4','','hide','Layer5','','hide')" style="cursor:hand" class="tr_bg2" width="110">律师处理事务列表</td>
<td class="table_bg" width="1"></td>
<td onClick="MM_showHideLayers('Layer1','','hide','Layer2','','hide','Layer3','','show','Layer4','','hide','Layer5','','hide')" style="cursor:hand" width="60">费用信息</td>
<td class="table_bg" width="1"></td>
<td onClick="MM_showHideLayers('Layer1','','hide','Layer2','','hide','Layer3','','hide','Layer4','','show','Layer5','','hide')" style="cursor:hand" width="80">其他费用列表</td>
<td class="table_bg" width="1"></td>
<td onClick="MM_showHideLayers('Layer1','','hide','Layer2','','hide','Layer3','','hide','Layer4','','hide','Layer5','','show')" style="cursor:hand" width="70">委托人信息</td>
<td class="table_bg" width="1"></td>
</tr>
</table>
<table border="0" cellspacing="0" cellpadding="0" height="25" width="100%" >
<tr class="tr_bg1" align="center">
<td class="table_bg" colspan="11" height="1" ></td>
<tr class="title_bg" align="center">
<td class="table_bg" ><img src="../images/c.gif" width="1" height="1"></td>
<td width="35%" >办理事务</td>
<td class="table_bg" ><img src="../images/c.gif" width="1" height="1"></td>
<td width="20%" >开始时间</td>
<td class="table_bg" ><img src="../images/c.gif" width="1" height="1"></td>
<td width="10%">花费工时</td>
<td class="table_bg" ><img src="../images/c.gif" width="1" height="1"></td>
<td width="25%">办理结果</td>
<td class="table_bg" ><img src="../images/c.gif" width="1" height="1"></td>
<td width="10%">操作</td>
<td class="table_bg" ><img src="../images/c.gif" width="1" height="1"></td>
</tr>
<tr class="tr_bg1" align="center">
<td class="table_bg" colspan="11" height="1" ></td>
</tr>
</table>
<span id=attach></span>
<table align="center" class="page_bg" width="100%">
<tr>
<td width="28%" align="left">
<input type="button" name="AddAccessory" value="新增一个事务" onClick="addfile()" class=button>
</td>
<td width="33%" align="center">共 <span class="font1" id=spFileCount>0</span>
条记录</td>
<td align="right" width="39%"></td>
</tr>
</table>
</div>
<div id="Layer3" style="Position:absolute; left:5px; top:70px; width:98%; height:121px; z-index:3; visibility: hidden">
<table border="0" cellspacing="0" cellpadding="0" height="25" >
<tr class="tr_bg1" align="center">
<td class="table_bg" colspan="11" height="1" ></td>
</tr>
<tr class="tr_bg1" align="center">
<td class="table_bg" width="1" ></td>
<td onClick="MM_showHideLayers('Layer1','','show','Layer2','','hide','Layer3','','hide','Layer4','','hide','Layer5','','hide')" style="cursor:hand" width="60" >案件信息</td>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -