complain_list.html 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport"
  6. content="width=comment-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <link rel="stylesheet" href="/static/bootstrap-3.3.7/css/bootstrap.css">
  9. <link rel="stylesheet" href="/static/dropload-gh-pages/dropload.css">
  10. <script type="text/javascript" src="/static/jquery-2.2.4.min.js"></script>
  11. <script type="text/javascript" src="/static/dropload-gh-pages/dropload.min.js"></script>
  12. <script type="text/javascript" src="/static/layer/layer.js"></script>
  13. <title>列表</title>
  14. <style>
  15. body{
  16. background-color: #F1F1F1;
  17. }
  18. .container{
  19. max-width: 750px;
  20. height: auto;
  21. margin: 0 auto;
  22. padding: 0px 6px;
  23. }
  24. .comment-lists{
  25. width: 100%;
  26. height: auto;
  27. margin-bottom: 54px;
  28. }
  29. .comment-info{
  30. width: 100%;
  31. height: 100px;
  32. border-radius: 10px;
  33. margin-top: 5px;
  34. background-color: #ffffff;
  35. padding: 0px 13px;
  36. }
  37. .comment-info-title{
  38. width: 100%;
  39. height: 40px;
  40. line-height: 40px;
  41. font-size: 15px;
  42. font-weight: 600;
  43. letter-spacing: 1px;
  44. color: #148d8f;
  45. border-bottom:1.2px solid #F1F1F1;
  46. }
  47. .comment-info-content{
  48. width: 100%;
  49. height: 60px;
  50. }
  51. .comment-info-user{
  52. width: 100%;
  53. height: 30px;
  54. line-height: 30px;
  55. }
  56. .left{
  57. width: 30%;
  58. height: 30px;
  59. line-height: 30px;
  60. display: inline-block;
  61. font-size: 14px;
  62. float: left;
  63. }
  64. .right{
  65. width: 66%;
  66. height: 30px;
  67. line-height: 30px;
  68. display: inline-block;
  69. float: right;
  70. font-size: 13px;
  71. color: #A9A9A9;
  72. overflow: hidden;
  73. text-align: right;
  74. }
  75. .comment-info-time{
  76. width: 100%;
  77. height: 30px;
  78. line-height: 30px;
  79. }
  80. .nulldata{
  81. width: 100%;
  82. height: 200px;
  83. text-align: center;
  84. position: fixed;
  85. top: 22%;
  86. }
  87. .nulldata img{
  88. width: 200px;
  89. height: 160px;
  90. text-align: center;
  91. }
  92. .nulldata-text{
  93. margin-top: 15px;
  94. font-size: 14px;
  95. letter-spacing: 2px;
  96. text-align: center;
  97. }
  98. .footer-back{
  99. position: fixed;
  100. z-index: 1000;
  101. width: 100%;
  102. height: 45px;
  103. line-height: 45px;
  104. background-color: #ffffff;
  105. bottom: 0;
  106. left: 0;
  107. box-shadow: 0px 0px 10px 0px rgba(26, 25, 26, 0.05);
  108. display: table-cell;
  109. vertical-align: middle;
  110. text-align: center;
  111. }
  112. .footer-back a img{
  113. width: 43px;
  114. height: 43px;
  115. }
  116. .pull-right{
  117. font-size: 15px;
  118. font-weight: 500;
  119. }
  120. .comment-info-title .color1{
  121. color: red !important;
  122. }
  123. </style>
  124. </head>
  125. <body>
  126. {if $list }
  127. <div class="container">
  128. <div class="comment-lists">
  129. {foreach $list as $k=>$v}
  130. <div class="comment-info" onclick="details(this)" data-id="{$v['id']}" data-orgId="{$v['org_id']}">
  131. <div class="comment-info-title">投诉 <text class="pull-right">{$v['statusTxt']}</text> </div>
  132. <div class="comment-info-content">
  133. <div class="comment-info-user">
  134. <div class="left">投诉用户:</div>
  135. <div class="right">{$v['user_name']}</div>
  136. </div>
  137. <div class="comment-info-time">
  138. <div class="left">投诉时间:</div>
  139. <div class="right">{$v['create_time']}</div>
  140. </div>
  141. </div>
  142. </div>
  143. {/foreach}
  144. </div>
  145. </div>
  146. {else /}
  147. <div class="nulldata">
  148. <img src="/img/nulldata.png" alt="">
  149. <div class="nulldata-text">空空如也 ~</div>
  150. </div>
  151. {/if}
  152. <div class="footer-back">
  153. <a href="javascript:;" onclick="javascript:history.back(-1);"><img src="/img/back.png"></a>
  154. </div>
  155. </body>
  156. </html>
  157. <script>
  158. function details(obj) {
  159. var id = $(obj).attr('data-id');
  160. var orgId = $(obj).attr('data-orgId');
  161. var url = "{:url('Statistics/complainDetail')}?id="+id+'&orgId='+orgId;
  162. window.location.href=url;
  163. }
  164. </script>
  165. <script>
  166. </script>