sample_apply.js 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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: 'books/sample_apply/index' + location.search,
  8. add_url: 'books/sample_apply/add',
  9. edit_url: 'books/sample_apply/edit',
  10. del_url: 'books/sample_apply/del',
  11. multi_url: 'books/sample_apply/multi',
  12. import_url: 'books/sample_apply/import',
  13. table: 'sample_apply',
  14. }
  15. });
  16. var table = $("#table");
  17. // 初始化表格
  18. table.bootstrapTable({
  19. url: $.fn.bootstrapTable.defaults.extend.index_url,
  20. pk: 'id',
  21. sortName: 'id',
  22. fixedColumns: true,
  23. fixedRightNumber: 1,
  24. showSearch: false,
  25. columns: [
  26. [
  27. {checkbox: true},
  28. {field: 'id', title: __('Id')},
  29. {field: 'user.nickname', title: __('申请用户')},
  30. {field: 'book.title', title: __('申请书籍')},
  31. {field: 'name', title: __('Name'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  32. {field: 'phone', title: __('Phone'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  33. {field: 'email', title: __('Email'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  34. {field: 'school', title: __('School'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  35. {field: 'use_to', title: __('用途'), searchList: {"0":__('教材用书'),"1":__('学习参考'),"2":__('其他')}, formatter: Table.api.formatter.normal},
  36. {field: 'mailing_name', title: __('Mailing_name'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  37. {field: 'mailing_area', title: __('Mailing_area'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  38. {field: 'mailing_address', title: __('Mailing_address'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  39. {field: 'mailing_phone', title: __('Mailing_phone'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  40. // {field: 'status', title: __('状态'), searchList: {"0":__('未审核'),"1":__('已寄出'),"2":__('已拒绝')}, formatter: Table.api.formatter.status},
  41. {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  42. {field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  43. // {
  44. // field: 'operate',
  45. // title: __('Operate'),
  46. // table: table,
  47. // events: Table.api.events.operate,
  48. // buttons: [{
  49. // name: 'click',
  50. // text:'已寄出',
  51. // title: __('已寄出'),
  52. // classname: 'btn btn-xs btn-info btn-click',
  53. // url: 'books.books_level/edit?ids/{id}',
  54. // data: {status:0},
  55. // // icon: 'fa fa-leaf',
  56. // click: function (data,row) {
  57. // var temp=table.bootstrapTable('getSelections');
  58. // var id = row.id;
  59. // console.log(row);
  60. // return $.ajax({
  61. // // url:'http://up.kuman.cn/settle/cancel',
  62. // url:'books.sample_apply/update_status?ids='+id,
  63. // type:'post',
  64. // // dataType:'json',
  65. // data:{status:1},
  66. // success:function(data){
  67. // if(data.code === 1){
  68. // layer.msg('操作成功');
  69. // window.location.reload();
  70. // }else{
  71. // layer.msg(data.msg);
  72. // }
  73. // }
  74. // });
  75. // // Layer.alert("点击按钮执行的事件");
  76. // },
  77. // visible: function (row) {
  78. // console.log(row)
  79. // if (row.status === "0"){
  80. // return true;
  81. // }
  82. // return false;
  83. // },
  84. // refresh:true,
  85. // },
  86. // {
  87. // name: 'click',
  88. // text:'拒绝',
  89. // title: __('拒绝'),
  90. // classname: 'btn btn-xs btn-danger btn-click',
  91. // url: 'books.sample_apply/edit?ids/{id}',
  92. // data: {status:1},
  93. // // icon: 'fa fa-leaf',
  94. // click: function (data,row) {
  95. // var temp=table.bootstrapTable('getSelections');
  96. // var id = row.id;
  97. // console.log(row);
  98. // return $.ajax({
  99. // // url:'http://up.kuman.cn/settle/cancel',
  100. // url:'books.sample_apply/update_status?ids='+id,
  101. // type:'post',
  102. // // dataType:'json',
  103. // data:{status:2},
  104. // success:function(data){
  105. // if(data.code === 1){
  106. // layer.msg('操作成功');
  107. // window.location.reload();
  108. // }else{
  109. // layer.alert(data.msg);
  110. // }
  111. // }
  112. // });
  113. // // Layer.alert("点击按钮执行的事件");
  114. // },
  115. // visible: function (row) {
  116. // // console.log(row)
  117. // if (row.status === "0"){
  118. // return true;
  119. // }
  120. // return false;
  121. // },
  122. // refresh:true,
  123. // },
  124. // ],
  125. // formatter: function (value, row, index) {
  126. // var that = $.extend({}, this);
  127. // $(table).data("operate-del", null); // 列表页面隐藏 .编辑operate-edit - 删除按钮operate-del
  128. // $(table).data("operate-edit", null); // 列表页面隐藏 .编辑operate-edit - 删除按钮operate-del
  129. // that.table = table;
  130. // return Table.api.formatter.operate.call(that, value, row, index);
  131. // },
  132. // }
  133. ]
  134. ]
  135. });
  136. // 为表格绑定事件
  137. Table.api.bindevent(table);
  138. },
  139. add: function () {
  140. Controller.api.bindevent();
  141. },
  142. edit: function () {
  143. Controller.api.bindevent();
  144. },
  145. api: {
  146. bindevent: function () {
  147. Form.api.bindevent($("form[role=form]"));
  148. }
  149. }
  150. };
  151. return Controller;
  152. });