company.js 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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: 'company/company/index' + location.search,
  8. add_url: 'company/company/add',
  9. edit_url: 'company/company/edit',
  10. del_url: 'company/company/del',
  11. multi_url: 'company/company/multi',
  12. import_url: 'company/company/import',
  13. table: 'company',
  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. columns: [
  23. [
  24. {checkbox: true},
  25. {field: 'id', title: __('Id')},
  26. {field: 'admin_id', title: __('Admin_id')},
  27. {field: 'company_name', title: __('Company_name'), operate: 'LIKE'},
  28. {field: 'company_tel', title: __('Company_tel'), operate: 'LIKE'},
  29. {field: 'sys_appid', title: __('Sys_appid'), operate: 'LIKE'},
  30. {field: 'sys_appsecret', title: __('Sys_appsecret'), operate: 'LIKE'},
  31. {field: 'wechat_appid', title: __('Wechat_appid'), operate: 'LIKE'},
  32. {field: 'wechat_appsecret', title: __('Wechat_appsecret'), operate: 'LIKE'},
  33. {field: 'wechat_token', title: __('Wechat_token'), operate: 'LIKE'},
  34. {field: 'wechat_encode', title: __('Wechat_encode'), searchList: {"0":__('Wechat_encode 0'),"1":__('Wechat_encode 1'),"2":__('Wechat_encode 2')}, formatter: Table.api.formatter.normal},
  35. {field: 'wechat_encodingaeskey', title: __('Wechat_encodingaeskey'), operate: 'LIKE'},
  36. {field: 'wechat_share_image', title: __('Wechat_share_image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image},
  37. {field: 'wechat_qrcode', title: __('Wechat_qrcode'), operate: 'LIKE'},
  38. {field: 'pay_weixin_open', title: __('Pay_weixin_open'), searchList: {"0":__('Pay_weixin_open 0'),"1":__('Pay_weixin_open 1')}, formatter: Table.api.formatter.normal},
  39. {field: 'pay_weixin_mchid', title: __('Pay_weixin_mchid'), operate: 'LIKE'},
  40. {field: 'pay_weixin_client_certfile', title: __('Pay_weixin_client_certfile'), operate: false},
  41. {field: 'pay_weixin_client_keyfile', title: __('Pay_weixin_client_keyfile'), operate: false},
  42. {field: 'pay_weixin_key', title: __('Pay_weixin_key'), operate: 'LIKE'},
  43. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  44. ]
  45. ]
  46. });
  47. // 为表格绑定事件
  48. Table.api.bindevent(table);
  49. },
  50. add: function () {
  51. Controller.api.bindevent();
  52. },
  53. edit: function () {
  54. Controller.api.bindevent();
  55. },
  56. api: {
  57. bindevent: function () {
  58. Form.api.bindevent($("form[role=form]"));
  59. }
  60. }
  61. };
  62. return Controller;
  63. });