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

goods.html 5.7KB

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