txinfo.html 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <!DOCTYPE html>
  2. <html lang="zh-CN" style="background:#fff;">
  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:#fff;}
  20. .lbox{width:100%;height:50px;border-bottom:1px solid #f5f5f5;}
  21. .lbox_l{width:50%;height:50px;line-height:50px;float:left;text-align:left;}
  22. .lbox_r{width:50%;height:50px;line-height:50px;float:right;text-align:right;}
  23. .infobox{width:100%;height:400px;padding:5px 20px;margin-top:50px;}
  24. .infotbox{width:100%;height:50px;line-height:50px;border-bottom:1px solid #f5f5f5;}
  25. .overflow{overflow: hidden;text-overflow:ellipsis;white-space: nowrap;width:100%;height:35px;line-height:35px;}
  26. </style>
  27. </head>
  28. <body style="background:#fff;">
  29. <div class="container-fluid " style="padding:0px;width:100vw;">
  30. <div class="no_header">
  31. <div class="fl allhg txtl">
  32. <i class="bi bi-arrow-left fcc fw" onclick="goback()" style="font-size: 24px;"></i>
  33. </div>
  34. <div class="fr allhg txtr" style="line-height:50px;width:10%;"></div>
  35. </div>
  36. <div class="infobox">
  37. <div class="infotbox">
  38. <span class="fcy" style="font-size:24px;font-weight:bold;">-{$info.num} USDT</span>
  39. </div>
  40. <div class="lbox">
  41. <div class="lbox_l">
  42. <span class="fcc fzmm">{:L('类型')}</span>
  43. </div>
  44. <div class="lbox_r">
  45. <span class="fch fzmm">{:L('普通提币')}</span>
  46. </div>
  47. </div>
  48. <div class="lbox">
  49. <div class="lbox_l">
  50. <span class="fcc fzmm">{:L('手续费')}</span>
  51. </div>
  52. <div class="lbox_r">
  53. <span class="fch fzmm">{$info.fee}</span>
  54. </div>
  55. </div>
  56. <div class="lbox">
  57. <div class="lbox_l">
  58. <span class="fcc fzmm">{:L('实际到账')}</span>
  59. </div>
  60. <div class="lbox_r">
  61. <span class="fch fzmm">{$info.mum}</span>
  62. </div>
  63. </div>
  64. <div class="lbox">
  65. <div class="lbox_l">
  66. <span class="fcc fzmm">{:L('提币地址')}</span>
  67. </div>
  68. <div class="lbox_r" style="overflow: hidden;text-overflow:ellipsis;white-space: nowrap;">
  69. <span class="fch fzmm">{$info.address}</span>
  70. </div>
  71. </div>
  72. <div class="lbox">
  73. <div class="lbox_l">
  74. <span class="fcc fzmm">{:L('状态')}</span>
  75. </div>
  76. <div class="lbox_r">
  77. <?php if($info['status'] == 2){?>
  78. <span class="fch fzmm"><?php echo L('已完成');?></span>
  79. <?php }elseif($info['status'] == 3){?>
  80. <span class="fch fzmm"><?php echo L('未通知');?></span>
  81. <?php }elseif($info['status'] == 1){?>
  82. <span class="fch fzmm"><?php echo L('确认中');?></span>
  83. <?php }?>
  84. </div>
  85. </div>
  86. <div class="lbox">
  87. <div class="lbox_l">
  88. <span class="fcc fzmm">{:L('时间')}</span>
  89. </div>
  90. <div class="lbox_r">
  91. <span class="fch fzmm">{$info.addtime}</span>
  92. </div>
  93. </div>
  94. </div>
  95. </div>
  96. </body>
  97. <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
  98. <script type="text/javascript" src="/Public/Static/js/layer/layer.js" ></script>
  99. <script type="text/javascript">
  100. function goback(){
  101. window.history.go(-1);
  102. }
  103. </script>
  104. </html>