payments.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?php require_once 'header.php' ?>
  2. <style>
  3. body{
  4. background:#fff;
  5. }
  6. .bheader{
  7. overflow:hidden;
  8. width:100%;
  9. }
  10. .bheader1{
  11. height:40px;
  12. background:#fff;
  13. width:100%;
  14. border-bottom:1px solid #ccc;
  15. }
  16. .bheader1l{
  17. margin-left:3%;
  18. float:left;
  19. width:25%;
  20. }
  21. .bheader1l a{
  22. font-size:20px;
  23. color:#06F;
  24. text-decoration:none;
  25. }
  26. .bheader1c{
  27. float:left;
  28. width:100px;
  29. margin-left:auto;
  30. margin-right:auto;
  31. width:44%;
  32. }
  33. .bheader1r{
  34. margin-right:3%;
  35. float:right;
  36. width:25%;
  37. }
  38. .bheader1r a{
  39. font-size:20px;
  40. color:#06F;
  41. text-decoration:none;
  42. }
  43. .bheader2{
  44. height:60px;
  45. background:#fff;
  46. width:100%;
  47. float:left;
  48. }
  49. .bheader3{
  50. height:30px;
  51. background:#eee;
  52. width:100%;
  53. float:left;
  54. }
  55. .bheader3l{
  56. height:30px;
  57. line-height:30px;
  58. margin-left:3%;
  59. }
  60. </style>
  61. <div class="bheader">
  62. <div class="bheader1">
  63. <div class="bheader1l">
  64. <a href="/mobile/"><返回</a>
  65. </div>
  66. <div class="bheader1c" align="center">
  67. <b>提醒记录</b>
  68. </div>
  69. <div class="bheader1r" align="right">
  70. <a href="/mobile/">筛选</a>
  71. </div>
  72. </div>
  73. <div class="bheader2" align="center">
  74. <div style="width:100%; height:5px;"></div>
  75. <img src="/static/common/logo.jpg" width="200px" style="margin-left:auto; margin-right:auto;"/>
  76. </div>
  77. <div class="bheader3">
  78. <div class="bheader3l">
  79. 本月
  80. </div>
  81. </div>
  82. </div>
  83. <div style="width:100%; height:20xp;"></div>
  84. <div class="aui-content aui-margin-b-15" style="float:left; width:100%;">
  85. <ul class="aui-list aui-media-list">
  86. <?php if($lists){?>
  87. <?php foreach($lists as $key=>$val){?>
  88. <li class="aui-list-item aui-list-item-middle">
  89. <div class="aui-media-list-item-inner">
  90. <div class="aui-list-item-media" style="width: 3rem;">
  91. <img src="/static/common/ico.png" class="aui-img-round aui-list-img-sm">
  92. </div>
  93. <div class="aui-list-item-inner aui-list-item-arrow">
  94. <div class="aui-list-item-text">
  95. <div class="aui-list-item-title aui-font-size-14">订单号 <?php echo $val[ 'sn'];?></div>
  96. <div style="color:#000" class="aui-list-item-right aui-font-size-18">-<?php echo $val[ 'money'];?></div>
  97. </div>
  98. <div class="aui-list-item-text aui-font-size-12">
  99. <?php echo date( 'm-d H:i:s',$val[ 'addtime']);?>
  100. </div>
  101. </div>
  102. </div>
  103. </li>
  104. <?php }}?>
  105. </ul>
  106. </div>
  107. <div style="width:100%; height:70px;"></div>
  108. <?php require_once 'footer.php' ?>