Blame view

out.html 5.32 KB
0a2d5088   liuqimichale   不是我的车牌跳转
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  <!doctype html>
  <html lang="en">
  <head>
      <meta charset="utf-8">
      <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
      <meta name="theme-color" content="#000000">
      <meta name="google" value="notranslate">
      <meta name="format-detection" content="telephone=no">
      <meta name="format-detection" content="email=no">
      <meta name="apple-mobile-web-app-capable" content="yes">
      <meta name="apple-mobile-web-app-status-bar-style" content="black">
      <meta http-equiv="Pragma" content="no-cache">
      <meta http-equiv="Cache-control" content="no-cache">
      <meta http-equiv="Cache" content="no-cache">
      <meta http-equiv="Expires" content="0">
      <link rel="stylesheet" href="css/reset.css?v=0.1">
      <link rel="stylesheet" href="css/provinceKey.css?v=0.1">
ea5b9446   liuqimichale   去缓存
18
19
      <script src="js/config.js?r=123"></script>
      <script src="js/common.js?r=1.01"></script>
0a2d5088   liuqimichale   不是我的车牌跳转
20
  
abaeb33e   liuqimichale   现在线上代码
21
  
0a2d5088   liuqimichale   不是我的车牌跳转
22
23
24
25
26
27
28
      <title>扫码查询出场</title>
      <style>
          body {
              background: #f0f4f5;
              margin: 0;
              padding: 0;
              font-family: 'Microsoft YaHei';
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
29
              font-size: 62.5%; /*1rem=10px*/
0a2d5088   liuqimichale   不是我的车牌跳转
30
          }
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
31
  
0a2d5088   liuqimichale   不是我的车牌跳转
32
33
34
35
36
37
38
39
40
41
42
          #header {
              margin-top: 25%;
              display: flex;
              justify-content: center;
              align-items: center;
              flex-direction: column;
          }
  
          .phoneText {
              font-size: 18px;
          }
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
43
  
0a2d5088   liuqimichale   不是我的车牌跳转
44
45
46
47
48
          .inputBox {
              position: relative;
              font-size: 16px;
              margin-top: 20px;
          }
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
49
  
0a2d5088   liuqimichale   不是我的车牌跳转
50
51
52
53
          .subLabel {
              position: absolute;
              left: 0px;
              top: 5px;
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
54
              padding: 5px;
0a2d5088   liuqimichale   不是我的车牌跳转
55
          }
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
56
  
0a2d5088   liuqimichale   不是我的车牌跳转
57
58
59
          .subLabel > span {
              color: #5eb2c0;
          }
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
60
61
62
63
  
          #inputPhoneNum, #inputCarNum {
              transition: all 0.30s ease-in-out;
          <!-- --> -webkit-transition: all 0.30s ease-in-out;
0a2d5088   liuqimichale   不是我的车牌跳转
64
65
66
67
68
69
70
71
72
73
              -moz-transition: all 0.30s ease-in-out;
              border: #c1bfc5 1px solid;
              border-radius: 3px;
              outline: none;
              height: 30px;
              width: 160px;
              line-height: 30px;
              padding: 5px;
              padding-left: 60px;
              font-size: 18px;
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
74
              color: #ff6f16;
0a2d5088   liuqimichale   不是我的车牌跳转
75
76
77
78
79
80
81
          }
  
          #inputPhoneNum:focus {
              box-shadow: 0 0 5px rgba(81, 203, 238, 1);
              -webkit-box-shadow: 0 0 5px rgba(81, 203, 238, 1);
              -moz-box-shadow: 0 0 5px rgba(81, 203, 238, 1);
          }
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
82
  
0a2d5088   liuqimichale   不是我的车牌跳转
83
          .btnOK {
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
84
              background: #75cbbe;
0a2d5088   liuqimichale   不是我的车牌跳转
85
86
87
88
89
90
91
92
93
              width: 230px;
              height: 3rem;
              line-height: 3rem;
              text-align: center;
              border-radius: 5px;
              color: #ffffff;
              font-size: 1.2rem;
              cursor: pointer;
          }
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
94
  
0a2d5088   liuqimichale   不是我的车牌跳转
95
96
97
          .flexBoxRow {
              display: flex;
              justify-content: left;
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
98
99
100
              flex-direction: row;
              align-items: center;
              width: 100%;
0a2d5088   liuqimichale   不是我的车牌跳转
101
          }
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
102
  
0a2d5088   liuqimichale   不是我的车牌跳转
103
          #footer {
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
104
105
              justify-content: center !important;
              padding-top: 2rem;
0a2d5088   liuqimichale   不是我的车牌跳转
106
107
          }
  
0a2d5088   liuqimichale   不是我的车牌跳转
108
109
110
111
112
113
114
115
116
          #tipResult {
              display: none;
              font-size: 2rem;
              font-size: 20px;
              color: #ff6f16;
              margin-top: 25%;
              text-align: center;
              padding: 10px;
          }
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
117
  
0a2d5088   liuqimichale   不是我的车牌跳转
118
          .input_province {
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
119
              font-size: 1.4rem;
0a2d5088   liuqimichale   不是我的车牌跳转
120
          }
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
121
  
0a2d5088   liuqimichale   不是我的车牌跳转
122
123
124
125
126
127
128
129
130
          .input_province:after {
              content: " ";
              position: absolute;
              right: 0px;
              top: 5px;
              width: 1px;
              height: 90%;
              background: #5eb2c0;
          }
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
131
  
0a2d5088   liuqimichale   不是我的车牌跳转
132
133
134
          #carNumBox {
              position: relative;
          }
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
135
  
0a2d5088   liuqimichale   不是我的车牌跳转
136
137
138
139
140
141
          .splitLine2 {
              color: #5eb2c0;
              position: absolute;
              left: 40px;
              bottom: 11px;
          }
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
142
  
0a2d5088   liuqimichale   不是我的车牌跳转
143
          #exChangeNum {
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
144
145
              margin-top: 1rem;
              cursor: pointer;
0a2d5088   liuqimichale   不是我的车牌跳转
146
147
148
149
          }
      </style>
  </head>
  <body style="background-color: #f0f4f5;">
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
150
151
152
  
  <header id="header"
          style="margin-top:20%; display: flex; justify-content: center; align-items: center; flex-direction: column; ">
0a2d5088   liuqimichale   不是我的车牌跳转
153
154
155
156
      <span class="phoneText" id="phoneText">请输入车牌号</span>
      <div class="inputBox">
          <div id="phoneNumBox" style="display:none;">
              <div class="subLabel">+86 <span> |</span></div>
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
157
158
              <input type="tel" id="inputPhoneNum" value="" onkeydown="inputDown();" placeholder="请输入手机号码" maxlength="14"
                     onpaste="return false" style="display:block;"/>
0a2d5088   liuqimichale   不是我的车牌跳转
159
160
          </div>
          <div id="carNumBox" style="display:block;" class="flexBoxRow">
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
161
162
              <input class="input_province" type="text" readonly="readonly" maxlength="1" id="selProvince"
                     onclick="provinceSelect();" value="蒙">
0a2d5088   liuqimichale   不是我的车牌跳转
163
              <span class="splitLine2"> |</span>
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
164
              <input type="text" maxlength="10" name="inputCarNum" id="inputCarNum"/>
0a2d5088   liuqimichale   不是我的车牌跳转
165
166
167
168
169
170
          </div>
      </div>
  
  </header>
  <footer id="footer" class="flexBoxRow">
      <div class="btnOK" id="btnPayOK" disabled="disabled">获取订单</div>
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
171
      <img src="img/loading.gif" id="loading" style="display: none;"/>
0a2d5088   liuqimichale   不是我的车牌跳转
172
173
174
175
176
  </footer>
  <section id="tipResult" style="display:none;">
      <img src="img/by.png" style="width:220px;height:110px;"/>
      <div id="outTipContent"></div>
  </section>
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
177
  <div id="id_keyboard_province"></div>
0a2d5088   liuqimichale   不是我的车牌跳转
178
  
0a2d5088   liuqimichale   不是我的车牌跳转
179
  
0a2d5088   liuqimichale   不是我的车牌跳转
180
181
  
  <script src="js/jquery-3.2.1.min.js"></script>
ea5b9446   liuqimichale   去缓存
182
183
  <script src="js/provinceKey.js?r=0.1"></script>
  <script src="js/out.js?r=0.1"></script>
a0c3e5ba   liuqimichale   赤峰 扫码支付 签名
184
  
0a2d5088   liuqimichale   不是我的车牌跳转
185
186
187
188
  </body>
  
  
  </html>