wlzboy
2025-07-09 ab0742bf945b5de8554761de6fa4ecda29f640e0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<%@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>