截流自动化的商城平台
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.

shop.html 5.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. {layout name="layout1" /}
  2. <div class="wrapper">
  3. <div class="layui-form" lay-filter="">
  4. <div class="layui-card" >
  5. <div class="layui-card-body">
  6. <div class="layui-inline">
  7. <label class="layui-form-label">排序方式:</label>
  8. <div class="layui-input-block">
  9. <select name="search_key">
  10. <option value="sales_price">按销售金额排序</option>
  11. <option value="visited_num">按进店人数排序</option>
  12. <option value="follow_num">按关注店铺人数排序</option>
  13. </select>
  14. </div>
  15. </div>
  16. <div class="layui-inline">
  17. <button class="layui-btn layui-btn-sm layuiadmin-btn-ad {$view_theme_color}" lay-submit
  18. lay-filter="shop-search">查询
  19. </button>
  20. <button class="layui-btn layui-btn-sm layuiadmin-btn-ad layui-btn-primary " lay-submit
  21. lay-filter="shop-clear-search">重置
  22. </button>
  23. </div>
  24. </div>
  25. </div>
  26. <div class="layui-tab-item layui-show">
  27. <div class="layui-card">
  28. <div class="layui-card-body">
  29. <table id="shop-lists" lay-filter="shop-lists"></table>
  30. <!--商家信息-->
  31. <script type="text/html" id="shop">
  32. <div style="text-align: left;">
  33. <img src="{{ d.logo }}" style="height:80px;width: 80px" class="image-show layui-col-md4">
  34. <p>商家编号:{{d.id}}</p>
  35. <p>商家名称:{{d.name}}</p>
  36. <p>商家类型:{{d.type_desc}}</p>
  37. </div>
  38. </script>
  39. </div>
  40. </div>
  41. </div>
  42. </div>
  43. </div>
  44. <script>
  45. layui.config({
  46. version:"{$front_version}",
  47. base: '/static/plug/layui-admin/dist/layuiadmin/' //静态资源所在路径
  48. }).extend({
  49. index: 'lib/index' //主入口模块
  50. }).use(['index','table','like','echarts','form'], function(){
  51. var $ = layui.$
  52. , form = layui.form
  53. , table = layui.table
  54. , like = layui.like
  55. , element = layui.element
  56. , laydate = layui.laydate;
  57. //日期时间范围
  58. laydate.render({
  59. elem: '#start_time'
  60. , type: 'datetime'
  61. });
  62. laydate.render({
  63. elem: '#end_time'
  64. , type: 'datetime'
  65. });
  66. //监听搜索
  67. form.on('submit(shop-search)', function (data) {
  68. var field = data.field;
  69. //执行重载
  70. table.reload('shop-lists', {
  71. where: field,
  72. page: {
  73. curr: 1
  74. }
  75. });
  76. });
  77. //清空查询
  78. form.on('submit(shop-clear-search)', function () {
  79. form.render('select');
  80. //刷新列表
  81. table.reload('shop-lists', {
  82. where: [],
  83. page: {
  84. curr: 1
  85. }
  86. });
  87. });
  88. //获取列表
  89. getList();
  90. function getList() {
  91. table.render({
  92. elem: '#shop-lists'
  93. ,url:'{:url("statistics/shop")}'
  94. , cols: [[
  95. {field:'number',title: '排序',width:120,align: 'center'}
  96. , {field: 'shop', title: '商家信息', align: 'center',templet:'#shop',width:300}
  97. , {field: 'sales_price', title: '销售金额', align: 'center',width:120}
  98. , {field: 'visited_num', title: '进店人数', align: 'center',width:120}
  99. , {field: 'follow_num', title: '关注人数', align: 'center',width:120}
  100. ]]
  101. , page: true
  102. , limits: [10,20,30,40,50]
  103. , text: {none: '暂无数据!'}
  104. ,response: {
  105. statusCode: 1
  106. }
  107. , parseData: function (res) {
  108. return {
  109. "code": res.code,
  110. "msg": res.msg,
  111. "count": res.data.count,
  112. "data": res.data.lists,
  113. };
  114. }
  115. ,done: function(res, curr, count){
  116. // 解决操作栏因为内容过多换行问题
  117. $(".layui-table-main tr").each(function (index, val) {
  118. $($(".layui-table-fixed-l .layui-table-body tbody tr")[index]).height($(val).height());
  119. $($(".layui-table-fixed-r .layui-table-body tbody tr")[index]).height($(val).height());
  120. });
  121. }
  122. });
  123. }
  124. });
  125. </script>
  126. </body>
  127. </html>