截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

lists.html 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. {layout name="layout1" /}
  2. <!-- 样式 -->
  3. <style>
  4. .layui-table-cell {
  5. height: auto;
  6. }
  7. </style>
  8. <!-- 操作提示 -->
  9. <div class="layui-fluid">
  10. <div class="layui-card" style="margin-top: 15px;">
  11. <div class="layui-card-body">
  12. <div class="layui-collapse like-layui-collapse" lay-accordion="" style="border:1px dashed #c4c4c4">
  13. <div class="layui-colla-item">
  14. <h2 class="layui-colla-title like-layui-colla-title" style="background-color: #fff">操作提示</h2>
  15. <div class="layui-colla-content layui-show">
  16. <p>*商家可以对会员的商品评价进行回复,平台拥有评价显示、隐藏和删除权限;</p>
  17. <p>*商品评价会在商城的商品详情中进行显示;</p>
  18. </div>
  19. </div>
  20. </div>
  21. </div>
  22. <div class="layui-card-body">
  23. <div class="layui-tab layui-tab-card" lay-filter="tabContainer">
  24. <ul class="layui-tab-title">
  25. <li data-type="1" class="layui-this">已回复评价</li>
  26. <li data-type="0">待回复评价</li>
  27. </ul>
  28. <div class="layui-tab-content">
  29. <!-- 搜索 -->
  30. <div class="layui-form">
  31. <div class="layui-form-item layui-row">
  32. <div class="layui-inline">
  33. <label class="layui-form-label">商家名称:</label>
  34. <div class="layui-input-inline">
  35. <input type="text" name="shop_name" class="layui-input" />
  36. </div>
  37. <label class="layui-form-label">评价信息:</label>
  38. <div class="layui-input-inline">
  39. <select name="search_type">
  40. <option value="name">商品名称</option>
  41. <option value="sn">会员编号</option>
  42. <option value="nickname">会员昵称</option>
  43. </select>
  44. </div>
  45. <div class="layui-input-inline">
  46. <input type="text" name="search_word" class="layui-input" />
  47. </div>
  48. </div>
  49. <div class="layui-inline">
  50. <label class="layui-form-label">评价等级:</label>
  51. <div class="layui-input-inline">
  52. <select name="goods_comment">
  53. <option value="">全部</option>
  54. <option value="1">好评</option>
  55. <option value="2">中评</option>
  56. <option value="3">差评</option>
  57. </select>
  58. </div>
  59. <div class="layui-inline">
  60. <label class="layui-form-label">显示状态:</label>
  61. <div class="layui-input-inline">
  62. <select name="status">
  63. <option value="">全部</option>
  64. <option value="1">显示</option>
  65. <option value="2">隐藏</option>
  66. </select>
  67. </div>
  68. </div>
  69. </div>
  70. <div class="layui-inline">
  71. <label class="layui-form-label">评价时间:</label>
  72. <div class="layui-input-inline" style="width: 390px">
  73. <input type="text" class="layui-input" name="start_end" id="start_end">
  74. </div>
  75. </div>
  76. <div class="layui-inline">
  77. <button class="layui-btn layui-btn-normal" lay-submit lay-filter="search">查询</button>
  78. <button class="layui-btn layui-btn-primary" lay-submit lay-filter="clear-search">重置</button>
  79. </div>
  80. </div>
  81. </div>
  82. </div>
  83. </div>
  84. <!-- 数据表格 -->
  85. <table id="comment-lists" lay-filter="comment-lists"></table>
  86. </div>
  87. </div>
  88. </div>
  89. </div>
  90. <script type="text/html" id="shop-info">
  91. <img src="{{d.shop_logo}}" style="height:80px;width: 80px;margin-right: 10px;" class="image-show">
  92. <div class="layui-input-inline" style="text-align:left;width: 240px">
  93. <p>商家编号:{{d.shop_id}}</p>
  94. <p style="width: 180px;text-overflow:ellipsis;overflow: hidden">商家名称:{{d.shop_name}}</p>
  95. <p>商家类型:{{d.shop_type_desc}}</p>
  96. </div>
  97. </script>
  98. <script type="text/html" id="user-info">
  99. <img src="{{d.avatar}}" style="height:80px;width: 80px;margin-right: 10px;" class="image-show">
  100. <div class="layui-input-inline" style="text-align:left;width: 240px">
  101. <p>会员编号:{{d.sn}}</p>
  102. <p style="width: 180px;text-overflow:ellipsis;overflow: hidden">昵称:{{d.nickname}}</p>
  103. <p>会员等级:{{d.levelName}}</p>
  104. </div>
  105. </script>
  106. <script type="text/html" id="goods-info">
  107. <img src="{{d.item_image}}" style="height:80px;width: 80px;margin-right: 10px;" class="image-show">
  108. <div class="layui-input-inline" style="text-align:left;width: 240px">
  109. <p>{{d.goods_name}}</p>
  110. <p style="width: 180px;text-overflow:ellipsis;overflow: hidden">{{d.spec_value_str}}</p>
  111. </div>
  112. </script>
  113. <script type="text/html" id="image-lists">
  114. {{# layui.each(d.comment_image, function(index, item){ }}
  115. <img src="{{item}}" style="height:80px;width: 80px;margin-right: 10px;" class="image-show">
  116. {{# }); }}
  117. </script>
  118. <script type="text/html" id="operate">
  119. <button class="layui-btn layui-btn-normal layui-btn-sm" lay-event="changeStatus">
  120. {{# if( d.status == 0 ){ }}
  121. 显示
  122. {{# } else { }}
  123. 隐藏
  124. {{# } }}
  125. </button>
  126. <button class="layui-btn layui-btn-danger layui-btn-sm" lay-event="del">删除</button>
  127. </script>
  128. <script>
  129. layui.config({
  130. version: "{$front_version}",
  131. base: '/static/lib/'
  132. }).use(['layer', 'table', 'form', 'element', 'laydate'], function () {
  133. var $ = layui.jquery;
  134. var layer = layui.layer;
  135. var form = layui.form;
  136. var laydate = layui.laydate;
  137. var table = layui.table;
  138. var element = layui.element;
  139. // 日期范围选择器
  140. laydate.render({
  141. elem: '#start_end',
  142. type: 'datetime',
  143. range: '~'
  144. });
  145. // 监听选项卡切换
  146. element.on('tab(tabContainer)', function(data) {
  147. // 获取类型
  148. var type = $(this).attr('data-type');
  149. // 重置搜索
  150. $('input[name=shop_name]').val('');
  151. $('input[name=search_word]').val('');
  152. $('input[name=start_end]').val('');
  153. $('select[name=search_type]').val('name');
  154. $('select[name=goods_comment]').val('');
  155. $('select[name=status]').val('');
  156. form.render('select');
  157. // 重新加载数据表格
  158. getList(type);
  159. });
  160. // 监听查询
  161. form.on('submit(search)', function(data){
  162. var field = data.field;
  163. // 执行重载
  164. table.reload('comment-lists', {
  165. where: field,
  166. page: {curr: 1}
  167. });
  168. });
  169. // 重置查询
  170. form.on('submit(clear-search)', function(data){
  171. // 重置搜索
  172. $('input[name=shop_name]').val('');
  173. $('input[name=search_word]').val('');
  174. $('input[name=start_end]').val('');
  175. $('select[name=search_type]').val('name');
  176. $('select[name=goods_comment]').val('');
  177. $('select[name=status]').val('');
  178. form.render('select');
  179. // 重新加载数据表格
  180. table.reload('comment-lists', {
  181. where: {},
  182. page: {curr: 1}
  183. });
  184. });
  185. // 首次进入
  186. getList(1); // 1 已回复列表
  187. function getList(type) {
  188. table.render({
  189. id: 'comment-lists'
  190. ,elem: '#comment-lists'
  191. ,url: "{:url('goods.comment/lists')}?type=" + type
  192. , parseData: function(res) { // res 原始返回数据
  193. return {
  194. 'code' : res.code // 0 代表正常返回
  195. , 'msg' : res.msg // 提示消息
  196. , 'count' : res.data.count // 数据长度
  197. , 'data' : res.data.lists // 数据列表
  198. }
  199. }
  200. , response: { // 重新设定返回的数据格式
  201. statusCode: 1, // 成功的状态码,默认0
  202. }
  203. , page: true // 开启分页
  204. , limit: 10
  205. , limits: [10, 20, 30, 40, 50]
  206. , text: {
  207. none: '暂无数据'
  208. }
  209. , cols: [[ // 设置表头,二维数组,方法渲染必填
  210. { title: '商家信息', width: 250, align: 'center', templet: '#shop-info' },
  211. { title: '会员信息', width: 250, align: 'center', templet: '#user-info' },
  212. { title: '商品信息', width: 250, align: 'center', templet: '#goods-info' },
  213. { field: 'goods_comment_desc', title: '评分等级', width: 100,align: 'center' },
  214. { field: 'comment', title: '买家评价', width: 200, align: 'center' },
  215. { title: '评论图片', width: 250, align: 'center',templet: '#image-lists' },
  216. { field: 'reply', title: '商家回复', width: 200, align: 'center' },
  217. { field: 'status_desc', title: '显示状态', width: 100, align: 'center' },
  218. { field: 'create_time', title: '评价时间', width: 180, align: 'center' },
  219. { fixed: 'right' ,title: '操作',width: 160, align: 'center', toolbar: '#operate' }
  220. ]], done: function () {
  221. setTimeout(function () {
  222. $(".layui-table-main tr").each(function (index, val) {
  223. $($(".layui-table-fixed-l .layui-table-body tbody tr")[index]).height($(val).height());
  224. $($(".layui-table-fixed-r .layui-table-body tbody tr")[index]).height($(val).height());
  225. });
  226. }, 200);
  227. }
  228. });
  229. }
  230. table.on('tool(comment-lists)', function(obj) {
  231. if(obj.event == 'changeStatus') { // 修改显示状态
  232. if(obj.data.status == 0) {
  233. var tips = '确定显示此条评论吗?';
  234. }else{
  235. var tips = '确定隐藏此条评论吗?';
  236. }
  237. layer.confirm(tips, {icon: 3, title:'提示'}, function(index){
  238. like.ajax({
  239. url: '{:url("goods.comment/changeStatus")}',
  240. data: {'id': obj.data.id},
  241. type: "post",
  242. success: function (res) {
  243. if(res.code == 1) {
  244. layer.msg(res.msg);
  245. }
  246. table.reload('comment-lists', {
  247. where: {},
  248. page: {curr: 1}
  249. });
  250. }
  251. });
  252. layer.close(index);
  253. });
  254. }
  255. if(obj.event == 'del') { // 删除
  256. layer.confirm('确定要删除此条评论吗?', {icon: 3, title:'提示'}, function(index){
  257. like.ajax({
  258. url: '{:url("goods.comment/del")}',
  259. data: {'id': obj.data.id},
  260. type: "post",
  261. success: function (res) {
  262. if(res.code == 1) {
  263. layer.msg(res.msg);
  264. }
  265. table.reload('comment-lists', {
  266. where: {},
  267. page: {curr: 1}
  268. });
  269. }
  270. });
  271. layer.close(index);
  272. });
  273. }
  274. });
  275. });
  276. </script>