<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
|
<%Session.CodePage=65001%>
|
<%ErrorID=request("ErrorID")%>
|
<html>
|
<head>
|
<meta charset="utf-8">
|
<meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no">
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<title>民航医疗快线_提示</title>
|
<link rel="stylesheet" href="/css/bootstrap.min.css">
|
<link rel="stylesheet" href="/css/bootstrap-theme.min.css">
|
<link rel="stylesheet" href="/css/app.css?v=1.8">
|
</head>
|
<body>
|
<div>
|
<style>
|
body{
|
font-family: 幼圆;
|
}
|
.error img{
|
height: 100px;
|
margin:20px 0;
|
}
|
header{
|
padding-top: 40%;
|
}
|
@media screen and (max-width: 320px) {
|
header{
|
padding-top: 20%;
|
}
|
}
|
p{
|
color: #800000;
|
font-size: 24px;
|
padding: 0 10%;
|
}
|
#btn_reg{
|
margin: 0;
|
padding: 0;
|
background: #fd4c08;
|
border-radius: 30px;
|
border: none;
|
width: 50%;
|
height: 40px;
|
font-size: 14px;
|
}
|
</style>
|
<header class="error">
|
<div class="col-xs-12 text-center">
|
<%If ErrorID="1" then%>
|
<p>一个月内同一客户只能评价3次,赏赏其他人吧</p>
|
<%ElseIf ErrorID="2" then%>
|
<p>您已经评价过了,请不要重复提评价</p>
|
<%ElseIf ErrorID="3" then%>
|
<p>您的转运已经完成</p>
|
<%else%>
|
<p>非法操作!!</p>
|
<%End If%>
|
<img src="/img/error.png"/>
|
</div>
|
</header>
|
<div style="margin: 0 auto;text-align: center;margin-top: 35%;display: none;">
|
<div class="col-xs-12 text-center">
|
<button type="submit" id="btn_reg" class="btn btn-primary btn-lg" onclick="backUcenter()">返回个人中心</button>
|
</div>
|
</div>
|
<script>
|
function backUcenter(){
|
window.location.replace('/ucenter/index');
|
}
|
</script>
|
</div>
|
</div>
|
</body>
|
</html>
|