-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcost_recharge_sure.html
150 lines (139 loc) · 7.01 KB
/
cost_recharge_sure.html
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
<!DOCTYPE html>
<html>
<body>
<!-- header -->
<div class="include" data-include="header"></div>
<!-- end header -->
<section class='aside-section'>
<section class="hbox stretch">
<!-- .aside -->
<aside class="bg-Green lter aside hidden-print include" data-include="aside" id="nav"></aside>
<!-- /.aside -->
<section id="content">
<section class="hbox stretch">
<!-- 如果没有三级导航 这段代码注释-->
<aside class="bg-green lter aside-sm hidden-print ybox" id="subNav">
<section class="vbox">
<div class="wrapper header"><span class="margin_lr"></span><span class="margin_lr border-left"> 费用管理</span>
</div>
<section class="scrollable">
<div class="slim-scroll">
<!-- nav -->
<nav class="hidden-xs">
<ul class="nav">
<li>
<div class="aside-li-a ">
<a href="./cost_history.html ">消费记录</a>
</div>
</li>
<li>
<div class="aside-li-a ">
<a href="./cost_recharge.html">充值</a>
</div>
</li>
<li>
<div class="aside-li-a active">
<a href="./cost_order.html">充值订单</a>
</div>
</li>
<li>
<div class="aside-li-a">
<a href="./cost_month.html">月结账单</a>
</div>
</li>
</ul>
</nav>
</div>
<div class="wrapper header"><span class="margin_lr"></span><span
class="margin_lr border-left"> 发票管理</span>
</div>
<section class="scrollable">
<div class="slim-scroll">
<!-- nav -->
<nav class="hidden-xs">
<ul class="nav">
<li>
<div class="aside-li-a">
<a href="./cost_invoice.html">发票信息</a>
</div>
</li>
<li>
<div class="aside-li-a">
<a href="./cost_invoice_record.html">发票申请</a>
</div>
</li>
</ul>
</nav>
</div>
</section>
</section>
</section>
</aside>
<aside>
<section class="vbox xbox">
<div class="head-box"><a href="#subNav" data-toggle="class:hide">
<i class=" iconfont icon-menu-left text"></i>
<i class=" iconfont icon-menu-right text-active"></i>
</a></div>
<div class="wrapper header">
<span class="border-left"> 充值</span></div>
<section class="scrollable wrapper w-f">
<section class="panel panel-default pos-rlt clearfix ">
<div class="sectionWrap">
<div class="row">
<div class="cost-box" >
<p class="surecolor"><strong>充值订单确认</strong></p>
<p><span>充值金额:</span>
<span class="cost-money">1000.<span class="floatmoney">00</span> <span class="unit">元</span></span> </p>
<p>订单号:2o347003984509803948507987897945</p>
<p>充值方式:支付宝</p>
<p>订单状态:未完成支付</p>
<br/>
<button type="submit" id="paysubmit" class="btn btn-primary btn-form ">付款</button>
</div>
</div>
</div>
</section>
</section>
</section>
</aside>
</section>
<a href="#" class="hide nav-off-screen-block" data-toggle="class:nav-off-screen" data-target="#nav"></a>
</section>
</section>
</section>
<script src="js/app.v2.js"></script> <!-- Bootstrap --> <!-- App -->
<script src="js/charts/flot/jquery.flot.min.js" cache="false"></script>
<script src="js/bootbox.min.js"></script>
<script src="js/charts/flot/demo.js" cache="false"></script>
<script src="js/jquery.cookie.min.js"></script>
<script src="js/include.js"></script>
<script src="bower_components/bootstrapvalidator/dist/js/bootstrapValidator.min.js"></script>
<script>
$(document).ready(function () {
$('#paysubmit').click(function(){
bootbox.dialog({
message: "将在新窗口为您打开付款界面,请按提示进行操作。",
title: "付款提示",
buttons: {
danger: {
label: "我已付款!",
className: "btn-primary",
callback: function() {
window.location.href = '';
}
},
success: {
label: "查看订单",
className: "btn-success",
callback: function() {
window.location.href = '';
}
},
}
});
})
});
</script>
</body>
</html>