Files
SinoGYS/webapp/supplier/connectionImg.jsp
2018-07-12 14:08:55 +08:00

25 lines
945 B
Plaintext

<%@ page contentType="text/html" pageEncoding="utf-8"%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ page isELIgnored="false" %>
<html>
<head>
<title>订单管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0">
<script src="/SinoGYS/js/jquery-1.7.2.js" type="text/javascript"></script>
</head>
<body leftmargin="0" rightmargin="0" topmargin="0" bottommargin="0">
<form action="/SinoGYS/ConnectionAction.do" method=POST name = "frm">
<input type = "hidden" name = "CMD" value="connectionImg"/>
<input type="hidden" id="orderId" name="orderId" value="${param.orderId}">
<input type="hidden" id="rescueCode" name="rescueCode" value="${param.rescueCode}">
<input type="hidden" id="state" name="state" value="${param.state}">
</form>
<script type="text/javascript">
$("form").submit();
</script>
</body>
</html>