complain_list.html 4.8 KB

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