123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- <style type="text/css">
- td,th {text-align:center;vertical-align:middle;}
- #ac_table{
- overflow: auto;
- margin: 20px 0;
- white-space: nowrap;
- border-left: 1px solid #ccc;
- border-top: 1px solid #ccc;
- border-right: 1px solid #ccc;
- }
- #ac_table table{
- margin-bottom: 0;
- }
- #ac_table th{
- background-color: #eee;
- font-size: 14px;
- color: #333;
- text-align: center;
- font-weight: normal;
- line-height: 30px;
- border-bottom: 1px solid #ccc;
- border-right: 1px solid #ccc;
- }
- #ac_table td{
- padding: 16px 10px;
- font-size: 14px;
- color: #333;
- text-align: center;
- font-weight: normal;
- vertical-align: middle;
- border-bottom: 1px solid #ccc;
- border-right: 1px solid #ccc;
- }
- #ac_table th:last-child,
- #ac_table td:last-child{
- border-right:0;
- }
- #ac_table td strong,
- #ac_table td span{
- display: block;
- text-align: left;
- }
- #ac_table td strong{
- font-size: 18px;
- color: #333;
- }
- #ac_table td span{
- color: #999;
- }
- .center{
- text-align: center;
- }
- td,th { text-align:center; /*设置水平居中*/ vertical-align:middle;/*设置垂直居中*/ }
- ::-webkit-scrollbar {
- display:none
- }
- .total_popup_box{
- display: none;
- position: fixed;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- z-index: 1000;
- background-color: rgba(0,0,0,.3);
- padding: 20px;
- font-size: 0;
- text-align: center;
- white-space: nowrap;
- box-sizing: border-box;
- }
- .tp_main_box,
- .tp_jgb{
- display: inline-block;
- *display: inline;
- *zoom:1;
- vertical-align: middle;
- }
- .tp_jgb{
- overflow: hidden;
- margin-left: -1px;
- width: 1px;
- height: 100%;
- }
- .tp_body{
- overflow: hidden;
- width: 300px;
- background-color: #fff;
- border-radius: 6px;
- }
- .tp_tit{
- border-bottom: 1px solid #f6f6f6;
- padding: 10px 20px 0;
- height: 50px;
- line-height: 40px;
- }
- .tp_tit h3{
- margin: 0;
- text-align: left;
- font-size: 16px;
- color: #333;
- line-height: 40px;
- }
- .tp_list_box{
- padding: 20px;
- overflow: hidden;
- border-bottom: 1px solid #f6f6f6;
- }
- .tpl_tit{
- margin-bottom: 10px;
- font-size: 14px;
- text-align: center;
- color: #333;
- line-height: 24px;
- }
- .tpl_li{
- font-size: 14px;
- color: #333;
- text-align: center;
- line-height: 24px;
- }
- .tpl_li em,
- .tpl_li strong{
- margin: 0 6px;
- font-size: 14px;
- color: #333;
- font-weight: normal;
- font-style: normal;
- line-height: 24px;
- }
- .tpl_but_box{
- overflow: hidden;
- padding: 20px;
- }
- .tpl_but_box a{
- overflow: hidden;
- margin: 0 auto;
- display: block;
- width: 160px;
- height: 36px;
- background-color: #e74c3c;
- color: #fff;
- font-size: 14px;
- text-align: center;
- line-height: 36px;
- border-radius: 4px;
- }
- </style>
- </head>
- <body>
- <p class="center">您将申请提现 {$totalmoney} 元,</p>
- <p class="center">提交申请后我们会在24小时内给您打款</p>
-
- <table class="table table-striped table-condensed">
- <tr>
- <th>公众号</th>
- <th>用户名</th>
- <th>提现金额</th>
- </tr>
- {volist name="list" id="vo"}
- <tr>
- <td>{$vo.name}</td>
- <td>{$vo.username}</td>
- <td>{$vo.money}</td>
- </tr>
- {/volist}
- </table>
-
- <input type="hidden" value="{$ids}" class="multiids">
-
- <div class="form-group layer-footer">
- <label class="control-label col-xs-12 col-sm-2"></label>
- <div class="col-xs-12 col-sm-8">
- <button class="btn btn-success btn-embossed multisubmit">{:__('OK')}</button>
- <button class="btn btn-default" onclick="$('.layui-layer-close').click()">{:__('取消')}</button>
- </div>
- </div>
-
- <div class="total_popup_box" id="total_popup_box">
-
- <div class="tp_main_box">
- <div class="tp_body">
- <div class="tp_tit">
- <h3>提现要求未满足</h3>
- </div>
- <div class="tp_list_box">
- </div>
- <div class="tpl_but_box">
- <a href="javascript:;" id="tpl_but_ok">确定</a>
- </div>
- </div>
- </div>
- <div class="tp_jgb"></div>
-
- </div>
-
- <script type="text/javascript">
- document.getElementById('tpl_but_ok').onclick = function(){
- document.getElementById('total_popup_box').style.display = 'none';
- }
- </script>
-
-
-
|