popup.html
5.55 KB
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="en">
<head>
<head>
<meta name="viewport" content="user-scalable=0, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta content="telephone=no" name="format-detection" />
<meta content="black" name="apple-mobile-web-app-status-bar-style" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>一步物流-首页</title>
<title>popup</title>
<link rel="stylesheet" href="../css/common.css">
</head>
<body class="m-mask">
<!-- header -->
<header class="m-header">
<a href="index.html" class="lt-bar"><i class="m-icon icon-title_fanhui"></i></a>
<div class="head">
<h1>一步物流</h1>
</div>
</header>
<!-- 以下style仅供预览显示,请无视! start -->
<style>
body{
position: static !important;
overflow: auto !important;
}
.m-popup {
display: block !important;
position: static;
margin: 30px auto;
}
</style>
<!-- 仅供预览显示,实际使用请移除 end -->
<!-- 未认证 -->
<div class="m-popup" id="certPopup">
<div class="popup-head border-1px border-bottom">
<h1>未认证</h1>
</div>
<div class="popup-cont text-center">
<i class="m-icon icon-cert"></i>
<br>
<br>
<p class="text-center">暂不能接单,请认证</p>
</div>
<div class="popup-foot text-center border-1px border-top">
<a href="" class="m-btn">去认证</a>
</div>
</div>
<br>
<br>
<br>
<!-- 无线路 -->
<div class="m-popup" id="certingPopup">
<div class="popup-head border-1px border-bottom">
<h1>认证审核中</h1>
</div>
<div class="popup-cont text-center">
<i class="m-icon icon-certing"></i>
<br>
<br>
<p class="text-center">暂不能接单,您可以先添加物流线路</p>
</div>
<div class="popup-foot text-center border-1px border-top">
<a href="" class="m-btn">添加线路</a>
</div>
</div>
<br>
<br>
<br>
<!-- 有线路 -->
<div class="m-popup" id="certingHasRoadPopup">
<div class="popup-head border-1px border-bottom">
<h1>认证审核中</h1>
</div>
<div class="popup-cont text-center">
<i class="m-icon icon-certing"></i>
<br>
<br>
<p class="text-center">我们将在2015.06.18 18点前完成审核</p>
</div>
<div class="popup-foot text-center border-1px border-top">
<a href="" class="m-btn">好的</a>
</div>
</div>
<br>
<br>
<br>
<!-- 认证未通过 -->
<div class="m-popup" id="certInvalidPopup">
<div class="popup-head border-1px border-bottom">
<h1>认证未通过</h1>
</div>
<div class="popup-cont text-center">
<i class="m-icon icon-certinvalid"></i>
<br>
<br>
<p class="text-center">暂不能接单,请重新认证</p>
</div>
<div class="popup-foot text-center border-1px border-top">
<a href="" class="m-btn">去查看</a>
</div>
</div>
<br>
<br>
<br>
<!-- 添加物流线路 -->
<div class="m-popup" id="newRoadPopup">
<div class="popup-head border-1px border-bottom">
<h1>没有物流线路</h1>
</div>
<div class="popup-cont text-center">
<i class="m-icon icon-road"></i>
<br>
<br>
<p class="text-center">暂不能接单,请添加物流线路</p>
</div>
<div class="popup-foot text-center border-1px border-top">
<a href="" class="m-btn">添加线路</a>
</div>
</div>
<br>
<br>
<br>
<!-- 保证金不足 -->
<div class="m-popup" id="amountNotEnoughPopup">
<div class="popup-head border-1px border-bottom">
<h1>保证金不足</h1>
</div>
<div class="popup-cont text-center">
<i class="m-icon icon-amount"></i>
<br>
<br>
<p class="text-center">不能继续享受优先推送服务</p>
</div>
<div class="popup-foot text-center border-1px border-top">
<a href="" class="m-btn btn-default mr15">暂不交</a>
<a href="" class="m-btn">交保证金</a>
</div>
</div>
<br>
<br>
<br>
<!-- 用户被锁定 -->
<div class="m-popup" id="userLockedPopup">
<div class="popup-head border-1px border-bottom">
<h1>接单被锁定</h1>
</div>
<div class="popup-cont text-center">
<i class="m-icon icon-lock"></i>
<br>
<br>
<p class="text-center">您当前信用分值过低<br>可能是您放弃承运的运单超过允许次数</p>
</div>
</div>
</body>
</html>