orders.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?php require_once 'header.php' ?>
  2. <style>
  3. body{
  4. background:#fff;
  5. }
  6. .bheader{
  7. height:20px;
  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. }
  48. .bheader3{
  49. height:30px;
  50. background:#eee;
  51. width:100%;
  52. }
  53. .bheader3l{
  54. height:30px;
  55. line-height:30px;
  56. margin-left:3%;
  57. }
  58. </style>
  59. <div class="bheader">
  60. <div class="bheader1">
  61. <div class="bheader1l">
  62. <a href="/mobile/"><返回</a>
  63. </div>
  64. <div class="bheader1c" align="center">
  65. <b>账单</b>
  66. </div>
  67. <div class="bheader1r" align="right">
  68. <a href="/mobile/">筛选</a>
  69. </div>
  70. </div>
  71. <div class="bheader2" align="center">
  72. <div style="width:100%; height:5px;"></div>
  73. <img src="/static/common/logo.jpg" width="200px" style="margin-left:auto; margin-right:auto;"/>
  74. </div>
  75. <div class="bheader3">
  76. <div class="bheader3l">
  77. 本月
  78. </div>
  79. </div>
  80. </div>
  81. <div class="aui-content aui-margin-b-15">
  82. <ul class="aui-list aui-media-list">
  83. <?php if($lists){?>
  84. <?php foreach($lists as $key=>$val){?>
  85. <li class="aui-list-item aui-list-item-middle">
  86. <div class="aui-media-list-item-inner">
  87. <div class="aui-list-item-media" style="width: 3rem;">
  88. <img src="/static/common/ico.png" class="aui-img-round aui-list-img-sm">
  89. </div>
  90. <div class="aui-list-item-inner aui-list-item-arrow">
  91. <div class="aui-list-item-text">
  92. <div class="aui-list-item-title aui-font-size-14">订单号 <?php echo $val['orderid'];?></div>
  93. <div style="color:#000" class="aui-list-item-right aui-font-size-18">+<?php echo $val['realmoney'];?></div>
  94. </div>
  95. <div class="aui-list-item-text aui-font-size-12">
  96. <?php echo date( 'm-d H:i:s',$val['addtime']);?>
  97. </div>
  98. </div>
  99. </div>
  100. </li>
  101. <?php }}?>
  102. </ul>
  103. </div>
  104. <div style="width:100%; height:70px;"></div>
  105. <?php require_once 'footer.php'; ?>