books.js 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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/books/index' + location.search,
  8. add_url: 'books/books/add',
  9. edit_url: 'books/books/edit',
  10. del_url: 'books/books/del',
  11. multi_url: 'books/books/multi',
  12. import_url: 'books/books/import',
  13. table: 'books',
  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. searchFormVisible: true,
  24. searchFormTemplate: 'customformtpl',
  25. fixedRightNumber: 1,
  26. columns: [
  27. [
  28. {checkbox: true},
  29. {field: 'id', title: __('Id')},
  30. {field: 'title', title: __('Title'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  31. {field: 'image', title: __('Image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image},
  32. {field: 'isbn', title: __('Isbn'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  33. {field: 'format', title: __('Format'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  34. {field: 'sheet', title: __('Sheet'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  35. {field: 'print', title: __('Print'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  36. {field: 'pubdate', title: __('Pubdate'), operate:'RANGE', addclass:'datetimerange', autocomplete:false},
  37. {field: 'edition', title: __('Edition'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  38. {field: 'publisher', title: __('Publisher'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  39. {field: 'book_type', title: __('教材类型'), searchList: {"0":__('纸质书'),"1":__('电子书')}, formatter: Table.api.formatter.normal},
  40. {field: 'is_new_recommend', title: __('是否新书推荐'), searchList: {"0":__('是'),"1":__('否')}, formatter: Table.api.formatter.normal},
  41. {field: 'author', title: __('Author'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  42. {field: 'is_awards', title: __('是否获奖'), searchList: {"0":__('是'),"1":__('否')}, formatter: Table.api.formatter.normal},
  43. {field: 'is_series', title: __('是否可以按系列购买'), searchList: {"0":__('是'),"1":__('否')}, formatter: Table.api.formatter.normal},
  44. {field: 'price', title: __('Price'), operate:'BETWEEN'},
  45. {field: 'entity_price', title: __('Entity_price'), operate:'BETWEEN'},
  46. {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  47. {field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  48. {
  49. field: 'operate',
  50. title: __('Operate'),
  51. table: table,
  52. events: Table.api.events.operate,
  53. formatter: Table.api.formatter.operate,
  54. buttons: [{
  55. name: 'detail',
  56. title: '文件列表',
  57. classname: 'btn btn-xs btn-primary btn-dialog',
  58. icon: 'fa fa-list',
  59. url: 'books.books_file/index?books_id={id}',
  60. extend: 'data-area=\'["75%","75%"]\'',
  61. callback: function (data) {
  62. Layer.alert("接收到回传数据:" + JSON.stringify(data), {title: "回传数据"});
  63. }
  64. },],
  65. }
  66. ]
  67. ]
  68. });
  69. // 为表格绑定事件
  70. Table.api.bindevent(table);
  71. },
  72. add: function () {
  73. Controller.api.bindevent();
  74. },
  75. edit: function () {
  76. Controller.api.bindevent();
  77. },
  78. api: {
  79. bindevent: function () {
  80. $(document).on("change", "#c-book_type", function(){
  81. //后续操作
  82. var type = $("#c-book_type").val();
  83. console.log(type);
  84. if(type == 0){
  85. $("#entity_price").show();
  86. }else{
  87. $("#entity_price").hide();
  88. }
  89. // "#c-jump_id"
  90. // $('#c-jump_id').selectPageClear();
  91. // $('#category_id').selectPageData("basesetting/paytype/selectpage");
  92. //$("#c-jump_id").data("selectPageObject").option.data = "basesetting/paytype/selectpage";
  93. return {custom: {type: $("#c-jump_type").val()}};
  94. });
  95. Form.api.bindevent($("form[role=form]"));
  96. }
  97. }
  98. };
  99. return Controller;
  100. });