📄 gongyingshangguanli.jsp
字号:
<%@page contentType="text/html;charset=GBK"%>
<%@taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@page isELIgnored="false" %>
<html>
<head><title>index</title></head>
<body bgcolor="white">
<table width="80%" bgcolor="#C1EFF7" align="center">
<tr><td>
<table width="100%" height="10%" align="center">
<tr><td><jsp:include page="/JSP-PAGE/header.jsp" /></td></tr>
</table>
</td></tr>
<tr><td>
<h2 align="center">供应商管理</h2>
</td></tr>
<tr><td align="right">
<form action="/CoalManagement/CoalManagement/caiGou/gongYingShangDetail.do" method="post">
供应商名:<input type="text" name="gysh">
<input type="submit" value="查询">
</form>
</td></tr>
<tr><td>
<table width="100%" align="center">
<tr><td>
<html:form action="/CoalManagement/caiGou/addGongYingShang" method="post">
<h3>添加新煤炭供应商</h3>
<table align="center">
<tr>
<td>供应商号:</td><td><html:text property="gys.gysh"/></td>
<td> </td>
<td>供应商名:</td><td><html:text property="gys.gysm"/></td>
</tr>
<tr>
<td>煤炭品种:</td>
<td>
<html:select size="1" property="gys.mtpz">
<html:option value="无烟煤">无烟煤</html:option>
<html:option value="泥煤">泥煤</html:option>
<html:option value="烟煤">烟煤</html:option>
<html:option value="电煤">电煤</html:option>
<html:option value="动力煤">动力煤</html:option>
<html:option value="1/3焦煤">1/3焦煤</html:option>
<html:option value="肥煤">肥煤</html:option>
<html:option value="气煤">气煤</html:option>
<html:option value="贫煤">贫煤</html:option>
<html:option value="其他">其他</html:option>
</html:select>
</td>
<td> </td>
<td>煤炭价格:</td><td><html:text property="gys.jg"/>(元/吨)</td>
</tr>
<tr>
<td>联系方式:</td><td><html:text property="gys.lxfs"/></td>
<td> </td>
<td>联系地址:</td><td><html:text property="gys.lxdz"/></td>
</tr>
<tr>
<td colspan="6" align="center"><html:submit value="提交"/>
<html:reset value="重填"/></td>
</tr>
</table>
</html:form>
<center><span class="9P"><font color="red"><html:errors/></font></span></center>
<center><font color="red">${addGYSError}</font></center>
</td></tr>
<tr><td>
<hr align="center" width="100%">
</td></tr>
<tr><td>
<h3>已有煤炭供应商列表</h3>
<table align="center" border="1">
<tr>
<td align="center">供应商号</td><td align="center">供应商名</td><td align="center">煤炭品种</td><td align="center">煤炭价格</td><td align="center">联系方式</td><td align="center">联系地址</td><td align="center" colspan="2">操作</td>
</tr>
<c:forEach items="${allgys}" var="gys" varStatus="status">
<tr><td align="center">${gys.gysh}</td><td align="center">${gys.gysm}</td><td align="center">${gys.mtpz}</td><td align="center">${gys.jg}</td><td align="center">${gys.lxfs}</td><td align="center">${gys.lxdz}</td><td align="center">
<input type="button" value="明细" onclick="javascript:window.location.href='/CoalManagement/CoalManagement/caiGou/gongYingShangDetail.do?gysh=${gys.gysh}';"></td>
<td><input type="button" value="删除" onclick="javascript:window.location.href='/CoalManagement/CoalManagement/caiGou/deleteGongYingShang.do?gysh=${gys.gysh}';">
</td></tr>
</c:forEach>
</table>
</td></tr>
</table>
</td></tr>
<tr><td align="center">
<br><a href="/CoalManagement/JSP-PAGE/caigou/caigouindex.jsp">返回>></a>
</td></tr>
<tr><td>
<hr align="center" width="100%">
</td></tr>
<tr><td>
<table width="100%" height="10%" align="center">
<tr><td><jsp:include page="/JSP-PAGE/footer.jsp" /></td></tr>
</table>
</td></tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -