📄 index_stop.jsp
字号:
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<%@ page import="netservice.vo.*" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<%
UserInfo user1=(UserInfo)request.getAttribute("user");
session.setAttribute("old_user",user1);
String str=user1.getUserType();
String usertype=new String();
String userstatus=new String();
String acctype=new String();
if(str.equals("0")){
usertype="个人用户";
}else{
usertype="单位用户";
}
String str1=user1.getUserStatus();
if(str1.equals("0")){
userstatus="缴费未开通";
}else if(str1.equals("1")){
userstatus="使用中";
}else{
userstatus="停机";
}
String str2=user1.getUserAccounttype();
if(str2.equals("0")){acctype="半年型";}
else if(str2.equals("1")){acctype="一年型";}
else if(str2.equals("2")){acctype="一季度";}
else{acctype="一个月";}
%>
<body>
<form id="form1" name="form1" method="post" action="/NetService/dis?actionId=stop">
<table width="340" border="1" align="center">
<tr>
<td width="85">客户ID:</td>
<td width="239">${user.userId}</td>
</tr>
<tr>
<td>客户类型</td>
<td><%=usertype%></td>
</tr>
<tr>
<td>客户姓名:</td>
<td>${user.userName}</td>
</tr>
<tr>
<td>客户地址:</td>
<td>${user.userAddress}</td>
</tr>
<tr>
<td>客户电话:</td>
<td>${user.userTel}</td>
</tr>
<tr>
<td>客户手机号:</td>
<td>${user.userMobile}</td>
</tr>
<tr>
<td>缴费时间:</td>
<td>${user.userBegintime}</td>
</tr>
<tr>
<td>到期时间:</td>
<td>${user.userEndtime}</td>
</tr>
<tr>
<td>客户账户类型:</td>
<td><%=acctype%></td>
</tr>
<tr>
<td>受理人员编号:</td>
<td>${user.waiterId}</td>
</tr>
<tr>
<td>客户状态:</td>
<td><%=userstatus %></td>
</tr>
<tr>
<td>客户备注:</td>
<td>${user.userMemo}</td>
</tr>
<tr>
<td colspan="2"><label>
<div align="center">
<input type="submit" name="Submit" value="确定停机" />
</div>
</label></td>
</tr>
</table>
<p> </p>
</form>
<form id="form1" name="form1" method="post" action="">
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -