mall_order.js 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
  2. var Controller = {
  3. index: async function () {
  4. // 初始化表格参数配置
  5. Table.api.init({
  6. extend: {
  7. index_url: 'mall_order/index' + location.search,
  8. add_url: 'mall_order/add',
  9. edit_url: 'mall_order/edit',
  10. del_url: 'mall_order/del',
  11. multi_url: 'mall_order/multi',
  12. import_url: 'mall_order/import',
  13. table: 'mall_order',
  14. }
  15. });
  16. var table = $("#table");
  17. let status = await $.getJSON('mall_order/status')
  18. // 初始化表格
  19. table.bootstrapTable({
  20. url: $.fn.bootstrapTable.defaults.extend.index_url,
  21. pk: 'id',
  22. sortName: 'id',
  23. searchFormVisible:true,
  24. columns: [
  25. [
  26. //{checkbox: true},
  27. {field: 'id', title: __('ID')},
  28. {field: 'no', title: __('No')},
  29. {field: 'user.nickname', title: __('用户')},
  30. {field: 'goods.name', title: __('商品')},
  31. {field: 'num', title: __('Num')},
  32. {field: 'total_score', title: __('Total_score'), operate: 'BETWEEN'},
  33. {
  34. field: 'addr', title: __('Addr'), operate: 'LIKE', formatter(a) {
  35. return `<span style="display:inline-block;overflow-x:scroll;max-width: 150px;">${Object.values(a).join("<br>")}</span>`
  36. }
  37. },
  38. {field: 'created_at', title: __('Created_at'),addClass:'datetimerange',formatter:Table.api.formatter.datetime,operate: 'range'},
  39. {
  40. field: 'status',
  41. title: __('Status'),
  42. searchList: status,
  43. formatter: Table.api.formatter.label
  44. },
  45. {field: 'send_com', title: __('快递公司')},
  46. {field: 'send_no', title: __('快递单号')},
  47. {
  48. field: 'buttons',
  49. title: '操作',
  50. table: table,
  51. operate: false,
  52. events: Table.api.events.operate,
  53. formatter: Table.api.formatter.buttons,
  54. buttons: [
  55. {
  56. name: 'detail',
  57. text: __('发货'),
  58. title: __('发货'),
  59. classname: 'btn btn-xs btn-info btn-dialog',
  60. url: 'mall_order/edit',
  61. callback: function (data) {
  62. },
  63. visible: function (row) {
  64. return row.status === 0;
  65. }
  66. }
  67. ]
  68. },
  69. ]
  70. ]
  71. });
  72. // 为表格绑定事件
  73. Table.api.bindevent(table);
  74. },
  75. add: function () {
  76. Controller.api.bindevent();
  77. },
  78. edit: function () {
  79. Controller.api.bindevent();
  80. },
  81. api: {
  82. bindevent: function () {
  83. Form.api.bindevent($("form[role=form]"));
  84. }
  85. }
  86. };
  87. return Controller;
  88. });