📄 clubmanagelist.jsp
字号:
<%@ page contentType="text/html; charset=GBK" language="java" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/UrlTag" prefix="UrlTag" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />
<meta http-equiv="expires" content="Wed, 26 Feb 1970 08:21:57 GMT" />
<link href="${pageContext.request.contextPath}/image/main.css" rel="stylesheet" type="text/css">
<title>俱乐部网点资料管理</title>
<style type="text/css">
<!--
.STYLE1 {
font-size: 14px;
font-weight: bold;
font-family: "宋体";
}
.STYLE4 {font-size: 12px; font-weight: bold; }
.STYLE6 {font-size: 14px}
-->
</style>
<script type="text/javascript">
function allinfo(nid){
location.href="${pageContext.request.contextPath}/clubmanageAction.do?tag=allinfo&nid="+nid;
}
function deletes(nid){
if(window.confirm("确认删除 ?")){
location.href="${pageContext.request.contextPath}/clubmanageAction.do?tag=deletes&nid="+nid;
}
}
function updates(nid){
location.href="${pageContext.request.contextPath}/clubmanageAction.do?tag=updates&nid="+nid;
}
function check(){
var flag = false;
if(document.theform.serchname.value==" "){
alert("对不起不能输入空值!");
theform.serchname.focus();
return false;
}
if(flag){
theform.submit();
}
}
</script>
</head>
<body>
<table width="101%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td align="center" valign="middle" nowrap><table width="39%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="26" align="center" valign="middle"><span class="STYLE1"> 俱乐部服务体验网点资料管理 </span></td>
</tr>
</table>
<html:form action="/clubmanageAction.do?tag=select" method="post" styleId="theform">
<table width="74%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="22" align="right" valign="middle"><strong><span class="STYLE6">俱乐部名称</span>:
<html:text property="serchname" size="10" ></html:text>
<input type="button" name="Submit" value="查询" onClick="check();">
</strong></td>
</tr>
</table>
</html:form>
<table width="751" border="1" cellpadding="0" cellspacing="0" bordercolor="#D71920">
<tr>
<td width="747" height="44" align="center" valign="middle"><table width="101%" height="60" border="1" cellpadding="0" cellspacing="0" id="ttc">
<tr>
<td width="19%" height="31" align="center" id="ttc"><span class="STYLE4">俱乐部名称</span></td>
<td width="18%" align="center" id="ttc"><span class="STYLE4">网点管理员</span></td>
<td width="18%" align="center" id="ttc"><span class="STYLE4">联系电话</span></td>
<td width="22%" align="center" id="ttc"><span class="STYLE4">服务类型</span></td>
<td width="23%" align="center" id="ttc"><span class="STYLE4">操作【<a href="${pageContext.request.contextPath}/clubmanageAction.do?tag=insertclub">添加</a>】</span></td>
</tr>
<logic:iterate id="mapclub" name="clublists" scope="request">
<tr>
<td height="27" align="center" valign="middle" nowrap id="ttc"> ${mapclub.clubname}</td>
<td align="center" valign="middle" nowrap id="ttc"> ${mapclub.manage}</td>
<td align="center" valign="middle" nowrap id="ttc"> ${mapclub.phone}</td>
<td align="center" valign="middle" nowrap id="ttc"> ${mapclub.servicetype}</td>
<td align="center" valign="middle" nowrap id="ttc">
<UrlTag:edit flog="0" href="${pageContext.request.contextPath}/clubmanageAction.do?tag=deletes&nid=${mapclub.nid}" param="删除" sentence="确定删除吗?"/>
|
<UrlTag:edit flog="1" href="${pageContext.request.contextPath}/clubmanageAction.do?tag=updates&nid=${mapclub.nid}" param="修改" sentence=""/>
| <UrlTag:edit flog="1" href="${pageContext.request.contextPath}/clubmanageAction.do?tag=allinfo&nid=${mapclub.nid}" param="详情" sentence=""/>
</td>
</tr>
</logic:iterate>
</table></td>
</tr>
${requestScope.pagetool}
</table></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -