coupon.js 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
  2. var Controller = {
  3. index: function () {
  4. // 初始化表格参数配置
  5. Table.api.init({
  6. extend: {
  7. index_url: 'coupon/index' + location.search,
  8. add_url: 'coupon/add',
  9. // edit_url: 'coupon/edit',
  10. // del_url: 'coupon/del',
  11. multi_url: 'coupon/multi',
  12. import_url: 'coupon/import',
  13. table: 'coupon',
  14. }
  15. });
  16. var table = $("#table");
  17. // 初始化表格
  18. table.bootstrapTable({
  19. url: $.fn.bootstrapTable.defaults.extend.index_url,
  20. pk: 'id',
  21. sortName: 'weigh',
  22. // fixedColumns: true,
  23. // fixedRightNumber: 1,
  24. columns: [
  25. [
  26. {checkbox: true},
  27. {field: 'id', title: __('Id')},
  28. {field: 'title', title: __('Title'), operate: 'LIKE'},
  29. {field: 'desc', title: __('Desc'), operate: 'LIKE'},
  30. {field: 'type', title: __('Type'), searchList: {"1":__('Type 1'),"2":__('Type 2')}, formatter: Table.api.formatter.normal},
  31. {field: 'money', title: __('Money')},
  32. {field: 'minmoney', title: __('Minmoney')},
  33. {field: 'purpose', title: __('Purpose'), searchList: {"0":__('Purpose 0'),"1":__('Purpose 1'),"2":__('Purpose 2'),"3":__('Purpose 3'),"4":__('Purpose 4'),"5":__('Purpose 5')}, formatter: Table.api.formatter.normal},
  34. {field: 'effectiveday', title: __('Effectiveday')},
  35. {field: 'weigh', title: __('Weigh'), operate: false},
  36. {field: 'status', title: __('Status'), searchList: {"0":__('Status 0'),"1":__('Status 1'),"2":__('Status 2')}, formatter: Table.api.formatter.status},
  37. {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  38. {field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  39. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate,
  40. buttons: [
  41. {
  42. name: 'chanagestatus',
  43. text: '发布',
  44. title: __('发布'),
  45. extend: 'data-area=\'["85%", "85%"]\'',
  46. classname: 'btn btn-xs btn-success btn-ajax',
  47. icon: 'fa fa-pencil',
  48. confirm: '确认发布?',
  49. url: 'coupon/chanagestatus/status/1',
  50. refresh: true,
  51. // success: function (data, ret) {
  52. // // Layer.alert(ret.msg + ",返回数据:" + JSON.stringify(data));
  53. // Layer.alert(ret.msg);
  54. // //如果需要阻止成功提示,则必须使用return false;
  55. // return false;
  56. // },
  57. // error: function (data, ret) {
  58. // // console.log(data, ret);
  59. // Layer.alert(ret.msg);
  60. // return false;
  61. // },
  62. // callback: function (data) {
  63. // Layer.alert("接收到回传数据:" + JSON.stringify(data), {title: "回传数据"});
  64. // },
  65. visible: function (row) {
  66. if (row.status == 0) {
  67. return true;
  68. } else {
  69. return false;
  70. }
  71. }
  72. },
  73. {
  74. name: 'couponuser',
  75. text: '发放用户',
  76. title: __('发放用户'),
  77. extend: 'data-area=\'["85%", "85%"]\'',
  78. classname: 'btn btn-xs btn-success btn-dialog',
  79. icon: 'fa fa-list',
  80. url: 'couponuser/index',
  81. // callback: function (data) {
  82. // Layer.alert("接收到回传数据:" + JSON.stringify(data), {title: "回传数据"});
  83. // }
  84. // success: function (data, ret) {
  85. // // Layer.alert(ret.msg + ",返回数据:" + JSON.stringify(data));
  86. // Layer.alert(ret.msg);
  87. // //如果需要阻止成功提示,则必须使用return false;
  88. // return false;
  89. // },
  90. // error: function (data, ret) {
  91. // // console.log(data, ret);
  92. // Layer.alert(ret.msg);
  93. // return false;
  94. // },
  95. // callback: function (data) {
  96. // Layer.alert("接收到回传数据:" + JSON.stringify(data), {title: "回传数据"});
  97. // },
  98. visible: function (row) {
  99. if (row.status == 1 && row.purpose == 3) {
  100. return true;
  101. } else {
  102. return false;
  103. }
  104. }
  105. },
  106. {
  107. name: 'couponvip',
  108. text: '发放会员组',
  109. title: __('发放会员组'),
  110. extend: 'data-area=\'["85%", "85%"]\'',
  111. classname: 'btn btn-xs btn-success btn-dialog',
  112. icon: 'fa fa-list',
  113. url: 'couponvip/index',
  114. // success: function (data, ret) {
  115. // // Layer.alert(ret.msg + ",返回数据:" + JSON.stringify(data));
  116. // Layer.alert(ret.msg);
  117. // //如果需要阻止成功提示,则必须使用return false;
  118. // return false;
  119. // },
  120. // error: function (data, ret) {
  121. // // console.log(data, ret);
  122. // Layer.alert(ret.msg);
  123. // return false;
  124. // },
  125. // callback: function (data) {
  126. // Layer.alert("接收到回传数据:" + JSON.stringify(data), {title: "回传数据"});
  127. // },
  128. visible: function (row) {
  129. if (row.status == 1 && row.purpose == 3) {
  130. return true;
  131. } else {
  132. return false;
  133. }
  134. }
  135. },
  136. {
  137. name: 'chanagestatus',
  138. text: '下架',
  139. title: __('下架'),
  140. extend: 'data-area=\'["85%", "85%"]\'',
  141. classname: 'btn btn-xs btn-danger btn-ajax',
  142. icon: 'fa fa-pencil',
  143. confirm: '确认下架?',
  144. url: 'coupon/chanagestatus/status/2',
  145. refresh: true,
  146. // success: function (data, ret) {
  147. // // Layer.alert(ret.msg + ",返回数据:" + JSON.stringify(data));
  148. // Layer.alert(ret.msg);
  149. // //如果需要阻止成功提示,则必须使用return false;
  150. // return false;
  151. // },
  152. // error: function (data, ret) {
  153. // // console.log(data, ret);
  154. // Layer.alert(ret.msg);
  155. // return false;
  156. // },
  157. // callback: function (data) {
  158. // Layer.alert("接收到回传数据:" + JSON.stringify(data), {title: "回传数据"});
  159. // }
  160. visible : function (row) {
  161. if (row.status == 1) {
  162. return true;
  163. } else {
  164. return false;
  165. }
  166. }
  167. },
  168. {
  169. name: 'delcoupon',
  170. text: '删除',
  171. title: __('删除'),
  172. extend: 'data-area=\'["85%", "85%"]\'',
  173. classname: 'btn btn-xs btn-danger btn-ajax',
  174. icon: 'fa fa-trash',
  175. confirm: '确认删除?',
  176. url: 'coupon/delcoupon',
  177. refresh: true,
  178. // success: function (data, ret) {
  179. // // Layer.alert(ret.msg + ",返回数据:" + JSON.stringify(data));
  180. // Layer.alert(ret.msg);
  181. // //如果需要阻止成功提示,则必须使用return false;
  182. // return false;
  183. // },
  184. // error: function (data, ret) {
  185. // // console.log(data, ret);
  186. // Layer.alert(ret.msg);
  187. // return false;
  188. // },
  189. // callback: function (data) {
  190. // Layer.alert("接收到回传数据:" + JSON.stringify(data), {title: "回传数据"});
  191. // }
  192. visible : function (row) {
  193. if (row.status == 2) {
  194. return true;
  195. } else {
  196. return false;
  197. }
  198. }
  199. }
  200. ]
  201. }
  202. ]
  203. ]
  204. });
  205. // 为表格绑定事件
  206. Table.api.bindevent(table);
  207. },
  208. add: function () {
  209. Controller.api.bindevent();
  210. },
  211. edit: function () {
  212. Controller.api.bindevent();
  213. },
  214. api: {
  215. bindevent: function () {
  216. Form.api.bindevent($("form[role=form]"));
  217. }
  218. }
  219. };
  220. return Controller;
  221. });