txaddlist.html 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <!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>{$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;">{:L('提币地址管理')}</span>
  42. </div>
  43. <div class="btitle">
  44. <span class="fzmm fch"><?php echo strtoupper($coinname);?></span>
  45. </div>
  46. <empty name="qblist">
  47. <div style="width:100%;height:300px;line-height:300px;text-align:center;">
  48. <span class="fzmm fch">{:L('没有保存地址')}</span>
  49. </div>
  50. <else />
  51. <foreach name="qblist" item="vo">
  52. <div class="addbox">
  53. <div class="addressbox">
  54. <span class="fzmmm fch">{$vo.remark}</span>
  55. </div>
  56. <div class="address">
  57. <span class="fzmmm fch">{$vo.addr}</span>
  58. </div>
  59. </div>
  60. </foreach>
  61. </empty>
  62. </div>
  63. <div class="btnbox">
  64. <a href="{:U('User/plusaddress')}?id={$id}">
  65. <div class="btnaddress">
  66. <span class="fzmm fch">{:L('添加地址')}</span>
  67. </div>
  68. </a>
  69. </div>
  70. </div>
  71. </body>
  72. <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
  73. <script type="text/javascript" src="/Public/Static/js/layer/layer.js" ></script>
  74. <script type="text/javascript">
  75. function goback(){
  76. window.history.go(-1);
  77. }
  78. </script>
  79. </html>