📄 gradebusiness.jsp
字号:
<%@ page language="java" pageEncoding="gbk"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>
<html:html lang="true">
<head>
<title>联盟商家质量评定</title>
<link rel="stylesheet" type="text/css"
href="${pageContext.request.contextPath}/image/main.css">
<script type="text/javascript">
function myselect(nid){
var level = document.getElementById("levelname").selectedIndex+1;
window.location.href
="${pageContext.request.contextPath}/businessGrade.do?task=massgrade&nid="+nid+"&bslevel="+level ;
}
</script>
</head>
<body>
<center>
<span style="font-size: 14px;font-weight: bold">质量级别评定</span>
</center>
<br>
<table width="80%" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#D71920">
<tr align="center" valign="middle"><td><br>
<html:form action="/businessGrade">
<table width="95%" border="1" align="center" cellpadding="0" cellspacing="0" id="ttc">
<tr height="30">
<td width="40%" align="center" id="ttc">商家编号</td>
<td width="60%" id="ttc">
${requestScope.businessGradeForm.nid}
</td>
</tr>
<tr height="30">
<td width="40%" align="center" id="ttc">商家名称</td>
<td width="60%" id="ttc">
${requestScope.businessGradeForm.bsname}
</td>
</tr>
<tr height="30">
<td width="40%" align="center" id="ttc">合作伙伴类型</td>
<td width="60%" id="ttc">
${requestScope.businessGradeForm.partnertype}
</td>
</tr>
<tr height="30">
<td width="40%" align="center" id="ttc">商家地址</td>
<td width="60%" id="ttc">
${requestScope.businessGradeForm.bsaddress}
</td>
</tr>
<tr height="30">
<td width="40%" align="center" id="ttc">质量级别</td>
<td width="60%" id="ttc">
<html:select property="levelname">
<html:optionsCollection name="masslist" label="sname" value="sname" />
</html:select>
</td>
</tr>
<tr height="30">
<td align="center" id="ttc" colspan="2">
<input type="button" value="确定" onclick="myselect(${requestScope.businessGradeForm.nid});"/>
<input type="reset" value="重置"/>
</td>
</tr>
</table>
</html:form>
</td>
</tr>
</table>
<br>
<center><a href="${pageContext.request.contextPath}/businessGrade.do?task=show">返回分级规则管理</a></center>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -