commodity.js 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
  2. // $(document).on("click", ".btn-aaaa", function () {
  3. // // var url = 'commodity/commodity/addcolor';//弹出窗口 add.html页面的(fastadmin封装layer模态框将以iframe的方式将add输出到index页面的模态框里)
  4. // // Fast.api.open(url, __('Add'));
  5. // var c_id=$(this).attr('data-title');
  6. // var msg = "配置添加";
  7. // var options = {
  8. // shadeClose: false,
  9. // shade: [0.3, '#393D49'],
  10. // callback:function(value){
  11. // location.replace(location.href);
  12. // }
  13. // };
  14. // Fast.api.open('commodity/commodity/addparameter?c_id='+c_id,msg,options);
  15. // });
  16. $(document).on("click", ".btn-dell", function () {
  17. var colorid = $(this).attr('data-title')
  18. //alert(colorid)
  19. layer.confirm('确定删除吗?', {btn: ['是','否'] },
  20. function () {
  21. Fast.api.ajax({
  22. url: 'commodity/commodity/delcolor',
  23. data: {colorid: colorid},
  24. type: "POST"
  25. , success: function (data, ret) {
  26. //成功的回调
  27. layer.msg(ret.msg)
  28. location.replace(location.href);
  29. return false;
  30. },
  31. error: function (data, ret) {
  32. return false;
  33. }
  34. })
  35. }
  36. )
  37. });
  38. $(document).on("click", ".btn-addd", function () {
  39. var p_id = $(this).attr('data-title')
  40. var msg = "配置添加";
  41. var options = {
  42. shadeClose: false,
  43. shade: [0.3, '#393D49'],
  44. callback:function(value){
  45. $(".btn-refresh").trigger('click')
  46. }
  47. };
  48. Fast.api.open('commodity/commodity/addcolor?p_id='+p_id,msg,options);
  49. });
  50. $(document).on("click", ".btn-editt", function () {
  51. var colorid = $(this).attr('data-title')
  52. var msg = "配置添加";
  53. var options = {
  54. shadeClose: false,
  55. shade: [0.3, '#393D49'],
  56. callback:function(value){
  57. $(".btn-refresh").trigger('click')
  58. }
  59. };
  60. Fast.api.open('commodity/commodity/editcolor?colorid='+colorid,msg,options);
  61. });
  62. Form.api.bindevent($("form[role=form]"), function(data, ret){
  63. //这里是表单提交处理成功后的回调函数,接收来自php的返回数据
  64. Fast.api.close(data);//这里是重点
  65. Toastr.success("成功");//这个可有可无
  66. }, function(data, ret){
  67. Toastr.success("失败");
  68. });
  69. var Controller = {
  70. index: function () {
  71. // 初始化表格参数配置
  72. Table.api.init({
  73. extend: {
  74. index_url: 'commodity/commodity/index' + location.search,
  75. add_url: 'commodity/commodity/add',
  76. edit_url: 'commodity/commodity/edit',
  77. del_url: 'commodity/commodity/del',
  78. multi_url: 'commodity/commodity/multi',
  79. table: 'commodity',
  80. }
  81. });
  82. var table = $("#table");
  83. // 初始化表格
  84. table.bootstrapTable({
  85. url: $.fn.bootstrapTable.defaults.extend.index_url,
  86. pk: 'c_id',
  87. sortName: 'c_id',
  88. columns: [
  89. [
  90. {checkbox: true},
  91. {field: 'c_id', title: __('C_id')},
  92. {field: 'c_name', title: __('C_name')},
  93. {field: 'c_images', title: __('C_images'), events: Table.api.events.image, formatter: Table.api.formatter.images},
  94. {
  95. field: 'buttons',
  96. width: "120px",
  97. title: __('点击查看商品配置'),
  98. table: table,
  99. events: Table.api.events.operate,
  100. buttons: [
  101. {
  102. name: 'detail',
  103. text: __('点击修改商品配置'),
  104. title: __('配置详情'),
  105. classname: 'btn btn-xs btn-primary btn-dialog',
  106. icon: 'fa fa-list',
  107. url: "commodity/commodity/commodityInfo",
  108. callback: function (data) {
  109. $(".btn-refresh").trigger('click')
  110. },
  111. visible: function (row) {
  112. //返回true时按钮显示,返回false隐藏
  113. return true;
  114. }
  115. },
  116. ],
  117. formatter: Table.api.formatter.buttons
  118. },
  119. {field: 'c_yuanjiaprice', title: __('C_yuanjiaprice'), operate:'BETWEEN'},
  120. {field: 'c_vipprice', title: __('C_vipprice'), operate:'BETWEEN'},
  121. {field: 'c_freight', title: __('C_freight'), operate:'BETWEEN'},
  122. {field: 'c_buynum', title: __('C_buynum')},
  123. {field: 'c_stock', title: __('C_stock')},
  124. {field: 'c_type', title: __('C_type')},
  125. {field: 'c_whitebean', title: __('C_whitebean')},
  126. {field: 'c_sort', title: __('C_sort')},
  127. {field: 'c_recommodity', title: __('是否首页推荐'), searchList: {"1":__('Yes'),"0":__('No')}, formatter: Table.api.formatter.toggle},
  128. {field: 'c_state_switch', title: __('C_state_switch'), searchList: {"1":__('Yes'),"0":__('No')}, formatter: Table.api.formatter.toggle},
  129. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  130. ]
  131. ]
  132. });
  133. // 为表格绑定事件
  134. Table.api.bindevent(table);
  135. },
  136. add: function () {
  137. Controller.api.bindevent();
  138. },
  139. edit: function () {
  140. Controller.api.bindevent();
  141. },
  142. api: {
  143. bindevent: function () {
  144. Form.api.bindevent($("form[role=form]"));
  145. }
  146. },
  147. };
  148. return Controller;
  149. });