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

40 lines
1.6 KiB
Plaintext

<%@page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ page import="java.util.*"%>
<%@ page isELIgnored="false"%>
<!DOCTYPE html>
<html lang="en">
<head>
<title>订单详情</title>
<meta charset="utf8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="description" content="Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description.">
<link rel="stylesheet" href="/SinoGYS/weixincss/weui.min.css" type="text/css">
<link rel="stylesheet" href="/SinoGYS/weixincss/jquery-weui.css" type="text/css">
<link rel="stylesheet" href="/SinoGYS/weixincss/demos.css" type="text/css">
<link rel="stylesheet" href="/SinoGYS/css/demos.css" type="text/css">
<script src="/SinoGYS/js/jquery-1.7.2.js" type="text/javascript"></script>
<script type="text/javascript" src="http://res.wx.qq.com/open/js/jweixin-1.0.0.js"></script>
<script src="/SinoGYS/js/jquery-weui.js"></script>
<script src="/SinoGYS/js/json2.js" type="text/javascript"></script>
<script type="text/javascript" src="/SinoGYS/layer/skin/layer.css"></script>
<script type="text/javascript" src="/SinoGYS/layer/layer.js"></script>
</head>
<%
String message=request.getParameter("message");
%>
<script type="text/javascript">
$().ready(function(){
$.alert("<%=message%>", function() {
wx.closeWindow();
});
});
</script>
<body>
</body>
</html>