Blame view

list.html 5.65 KB
e8db9094   liuqimichale   欠费列表
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
  <!DOCTYPE html>
  <html lang="en">
  <head>
      <meta charset="UTF-8">
      <title>列表详情</title>
      <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
      <meta name="format-detection" content="telephone=no"/>
      <meta name="format-detection" content="email=no"/>
      <meta name="apple-mobile-web-app-status-bar-style" content="black"/>
      <meta name="apple-mobile-web-app-capable" content="yes"/>
      <meta name="apple-mobile-web-app-title" content="">
      <meta name="google" value="notranslate"><!-- 禁止Chrome 浏览器中自动提示翻译 -->
      <link rel="apple-touch-icon-precomposed" href="favicon.ico">
      <link rel="shortcut icon" href="favicon.ico">
      <link rel="Bookmark" href="favicon.ico">
      <meta http-equiv="Pragma" content="no-cache" />
  
      <meta http-equiv="Expires" content="0" />
  
      <link rel="stylesheet" href="//cdn.bootcss.com/weui/1.1.1/style/weui.min.css">
      <link rel="stylesheet" href="//cdn.bootcss.com/jquery-weui/1.0.1/css/jquery-weui.min.css">
      <link rel="stylesheet" href="css/reset.css">
  
      <style>
          .all_told, .platen_number {
              text-align: center;
          }
          .all_told {
              padding: 30px 0 10px 0;
          }
          .all_told span {
              margin-right: 5px;
              font-size: 22px;
          }
          .discount_money {
              color: #fc3817;
          }
          .discount {
              padding: 4px 7px;
              background: #fc3817;
              border-radius: 2px;
              position: relative;
              margin-left: 10px;
              color: #fff;
          }
          .discount:before {
              position: absolute;
              content: '';
              width: 0;
              height: 0;
              left: -6px;
              top: 8px;
              border-top: 6px solid transparent;
              border-bottom: 6px solid transparent;
              border-right: 6px solid #fc3817;
          }
          .youhuid{
              background: #f00;
              color: #fff;
              font-size: 13px;
              padding:2px 5px;
              border-radius: 3px;
              margin-left: 2px;
              display: none;
          }
          .showTooltips{
              display: none;
              /*针对苹果新增手势*/
              cursor: pointer;
          }
          .weui-cells{
              /*针对苹果新增手势*/
              cursor: pointer;
          }
          .dialog-out{
              position: absolute;
              width: 100%;
              height: 100%;
              top:0;
              right: 0;
              left: 0;
              bottom: 0;
              z-index: 1000;
              background: rgba(0,0,0,.3);
              display: none;
          }
          .dia-con{
              width: 305px;
              height: 138px;
              padding: 10px ;
              background:rgba(255,255,255,1);
              border-radius:8px;
              position: absolute;
              left: 50%;
              top:50%;
              transform: translate(-50%,-50%);
          }
          .close-btn{
              float: right;
              width: 16px;
              height: 16px;
              background: url("img/close.png") no-repeat;
              background-size: 100% 100%;
              cursor: pointer;
              overflow: hidden;
          }
          .dia-main{
              margin-left: 30px;
              margin-top: 30px;
              height: 52px;
              padding-left: 90px;
              background: url("img/out.png") no-repeat;
              background-size:  52px 52px;
          }
          .dia-text{
              padding-top: 20px;
              text-align: center;
              font-size: 12px;
              color: #999;
          }
          .arrears-btn{
              width: 70px;
              height: 25px;
              margin-top: 20px;
              color: #FFF;
              font-size: 12px;
              text-align: center;
              line-height: 25px;
              background: url("img/arrears-bg.png") no-repeat;
              background-size:70px 25px ;
          }
      </style>
  </head>
  <body ontouchstart="">
0408eccf   liuqimichale   update .gitignore
135
  <div id="tip-title" class="weui-cells__title" style="color: #f00;text-align: center">48小时限时补缴优惠</div>
e8db9094   liuqimichale   欠费列表
136
137
138
  <div id="pay_listcont">
  
  </div>
0408eccf   liuqimichale   update .gitignore
139
140
  
  
e8db9094   liuqimichale   欠费列表
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
  <div class="pay-content-padded">
      <a class="weui-btn weui-btn_primary  showTooltips" href="javascript:" id="showTooltips"  v-cloak="showTooltips">申请离场</a>
  </div>
  
  <div class="dialog-out">
      <div class="dia-con">
          <div class="close-btn"></div>
          <div class="layui-clear"></div>
          <div class="dia-main">
              <p>您已经成功申请离场</p>
              <p>期待您的再次光临</p>
          </div>
          <div class="dia-text">温馨提示:请尽快出场,超过时间将重新计费哦!</div>
      </div>
  </div>
  
  
  
  
  <script src="js/jquery-3.2.1.min.js"></script>
  <script src="//cdn.bootcss.com/jquery/1.11.0/jquery.min.js"></script>
  <script src="//cdn.bootcss.com/jquery-weui/1.0.1/js/jquery-weui.min.js"></script>
  
  <script src="js/md5.min.js"></script>
  
b620e712   liuqimichale   获取车牌号
166
  <script src="js/url.js?a=1.11"></script>
e8db9094   liuqimichale   欠费列表
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
  <script src="js/ajax.js"></script>
  <script type="text/javascript">
  //微信浏览器中,aler弹框不显示域名
  (function(){
    //先判断是否为微信浏览器
    var ua = window.navigator.userAgent.toLowerCase();
    if (ua.match(/MicroMessenger/i) == 'micromessenger') {
      //重写alert方法,alert()方法重写,不能传多余参数
      window.alert = function(name){
        var iframe = document.createElement("IFRAME");
        iframe.style.display="none";
        iframe.setAttribute("src", 'data:text/plain');
        document.documentElement.appendChild(iframe);
        window.frames[0].window.alert(name);
        iframe.parentNode.removeChild(iframe);
      }
    }
  })();
  </script>
0fc09a70   liuqimichale   update .gitignore
186
  <script src="js/list.js?a=41.31"></script>
e8db9094   liuqimichale   欠费列表
187
188
  </body>
  </html>