8f6775fe13198980bc64c90ed4e290be.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?php if (!defined('THINK_PATH')) exit();?><!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
  7. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.0/dist/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
  8. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css">
  9. <link rel="stylesheet" type="text/css" href="/Public/Static/css/base2.css" />
  10. <link rel="stylesheet" type="text/css" href="/Public/Static/css/nologed.css" />
  11. <link rel="stylesheet" href="/Public/Static/Icoinfont/iconfont.css">
  12. <script src="/Public/Static/Icoinfont/iconfont.js"></script>
  13. <title><?php echo ($webname); ?></title>
  14. <style>
  15. ::-webkit-input-placeholder {color: #b5b5b5;font-size: 12px;}
  16. ::-moz-placeholder {color: #b5b5b5;font-size: 12px;}
  17. input:focus{background:#f5f5f5;outline: 1px solid #f5f5f5;}
  18. a:hover,a:link,a:visited,a:active{color:#707A8A;text-decoration:none;}
  19. .no_header{position: fixed;z-index: 9999;padding:0px 10px;top:0px;line-height: 50px;background:#f5f5f5;}
  20. .contentbox{width:100%;height:600px;margin-top:45px;padding:5px 15px;}
  21. .contentbox_top{width:100%;height:50px;line-height:50px;text-align:left;}
  22. .btitle{width:100%;height:35px;line-height:35px;text-align:center;background:#fff;margin-top:10px;border-radius:15px;}
  23. .addbox{width:100%;height:120px;background:#fff;margin-top:20px;border-radius:15px;}
  24. .addressbox{width:100%;height:40px;line-height:40px;background:#f9f9f9;padding:0px 15px;border-top-left-radius:10px;border-top-right-radius:10px;}
  25. .address{width:100%;height:80px;margin-top:10px;padding:10px;word-wrap:break-word;word-break:normal; }
  26. .btnbox{width:100%;height:70px;background:#fff;position:fixed;bottom:0px;}
  27. .btnaddress{width:92%;height:40px;line-height:40px;background: linear-gradient(to left,#eeb80d,#ffe35b);margin:0px auto;text-align:center;margin-top:15px;border-radius:10px;}
  28. </style>
  29. </head>
  30. <body>
  31. <div class="container-fluid " style="padding:0px;width:100vw;">
  32. <div class="no_header">
  33. <div class="fl allhg txtl">
  34. <i class="bi bi-arrow-left fcc fw" onclick="goback()" style="font-size: 24px;"></i>
  35. </div>
  36. <div class="fr allhg txtr" style="line-height:50px;width:10%;">
  37. </div>
  38. </div>
  39. <div class="contentbox">
  40. <div class="contentbox_top">
  41. <span style="font-size:26px;font-weight:500;"><?php echo L('提币地址管理');?></span>
  42. </div>
  43. <div class="btitle">
  44. <span class="fzmm fch"><?php echo strtoupper($coinname);?></span>
  45. </div>
  46. <?php if(empty($qblist)): ?><div style="width:100%;height:300px;line-height:300px;text-align:center;">
  47. <span class="fzmm fch"><?php echo L('没有保存地址');?></span>
  48. </div>
  49. <?php else: ?>
  50. <?php if(is_array($qblist)): foreach($qblist as $key=>$vo): ?><div class="addbox">
  51. <div class="addressbox">
  52. <span class="fzmmm fch"><?php echo ($vo["remark"]); ?></span>
  53. </div>
  54. <div class="address">
  55. <span class="fzmmm fch"><?php echo ($vo["addr"]); ?></span>
  56. </div>
  57. </div><?php endforeach; endif; endif; ?>
  58. </div>
  59. <div class="btnbox">
  60. <a href="<?php echo U('User/plusaddress');?>?id=<?php echo ($id); ?>">
  61. <div class="btnaddress">
  62. <span class="fzmm fch"><?php echo L('添加地址');?></span>
  63. </div>
  64. </a>
  65. </div>
  66. </div>
  67. </body>
  68. <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
  69. <script type="text/javascript" src="/Public/Static/js/layer/layer.js" ></script>
  70. <script type="text/javascript">
  71. function goback(){
  72. window.history.go(-1);
  73. }
  74. </script>
  75. </html>