rule.js 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. define(['jquery', 'bootstrap', 'backend', 'table', 'form', 'template'], function ($, undefined, Backend, Table, Form, Template) {
  2. var Controller = {
  3. index: function () {
  4. // 初始化表格参数配置
  5. Table.api.init({
  6. extend: {
  7. "index_url": "auth/rule/index",
  8. "add_url": "auth/rule/add",
  9. "edit_url": "auth/rule/edit",
  10. "del_url": "auth/rule/del",
  11. "multi_url": "auth/rule/multi",
  12. "table": "auth_rule"
  13. }
  14. });
  15. var table = $("#table");
  16. // 初始化表格
  17. table.bootstrapTable({
  18. url: $.fn.bootstrapTable.defaults.extend.index_url,
  19. sortName: '',
  20. escape: false,
  21. columns: [
  22. [
  23. {field: 'state', checkbox: true,},
  24. {field: 'id', title: 'ID'},
  25. {field: 'title', title: __('Title'), align: 'left', formatter: Controller.api.formatter.title},
  26. {field: 'icon', title: __('Icon'), formatter: Controller.api.formatter.icon},
  27. {field: 'name', title: __('Name'), align: 'left', formatter: Controller.api.formatter.name},
  28. {field: 'weigh', title: __('Weigh')},
  29. {field: 'status', title: __('Status'), formatter: Table.api.formatter.status},
  30. {
  31. field: 'ismenu',
  32. title: __('Ismenu'),
  33. align: 'center',
  34. table: table,
  35. formatter: Table.api.formatter.toggle
  36. },
  37. {
  38. field: 'id',
  39. title: '<a href="javascript:;" class="btn btn-success btn-xs btn-toggle"><i class="fa fa-chevron-up"></i></a>',
  40. operate: false,
  41. formatter: Controller.api.formatter.subnode
  42. },
  43. {
  44. field: 'operate',
  45. title: __('Operate'),
  46. table: table,
  47. events: Table.api.events.operate,
  48. formatter: Table.api.formatter.operate
  49. }
  50. ]
  51. ],
  52. pagination: false,
  53. search: false,
  54. commonSearch: false,
  55. });
  56. // 为表格绑定事件
  57. Table.api.bindevent(table);
  58. //表格内容渲染前
  59. table.on('pre-body.bs.table', function (e, data) {
  60. var options = table.bootstrapTable("getOptions");
  61. options.escape = true;
  62. });
  63. //当内容渲染完成后
  64. table.on('post-body.bs.table', function (e, data) {
  65. var options = table.bootstrapTable("getOptions");
  66. options.escape = false;
  67. //默认隐藏所有子节点
  68. //$("a.btn[data-id][data-pid][data-pid!=0]").closest("tr").hide();
  69. $(".btn-node-sub.disabled").closest("tr").hide();
  70. //显示隐藏子节点
  71. $(".btn-node-sub").off("click").on("click", function (e) {
  72. var status = $(this).data("shown") ? true : false;
  73. $("a.btn[data-pid='" + $(this).data("id") + "']").each(function () {
  74. $(this).closest("tr").toggle(!status);
  75. });
  76. $(this).data("shown", !status);
  77. return false;
  78. });
  79. //点击切换/排序/删除操作后刷新左侧菜单
  80. $(".btn-change[data-id],.btn-delone,.btn-dragsort").data("success", function (data, ret) {
  81. if ($(this).hasClass("btn-change")) {
  82. var index = $(this).data("index");
  83. var row = Table.api.getrowbyindex(table, index);
  84. row.ismenu = $("i.fa.text-gray", this).length > 0 ? 1 : 0;
  85. table.bootstrapTable("updateRow", {index: index, row: row});
  86. } else if ($(this).hasClass("btn-delone")) {
  87. if ($(this).closest("tr[data-index]").find("a.btn-node-sub.disabled").length > 0) {
  88. $(this).closest("tr[data-index]").remove();
  89. } else {
  90. table.bootstrapTable('refresh');
  91. }
  92. } else if ($(this).hasClass("btn-dragsort")) {
  93. table.bootstrapTable('refresh');
  94. }
  95. Fast.api.refreshmenu();
  96. return false;
  97. });
  98. });
  99. //批量删除后的回调
  100. $(".toolbar > .btn-del,.toolbar .btn-more~ul>li>a").data("success", function (e) {
  101. Fast.api.refreshmenu();
  102. });
  103. //展开隐藏一级
  104. $(document.body).on("click", ".btn-toggle", function (e) {
  105. $("a.btn[data-id][data-pid][data-pid!=0].disabled").closest("tr").hide();
  106. var that = this;
  107. var show = $("i", that).hasClass("fa-chevron-down");
  108. $("i", that).toggleClass("fa-chevron-down", !show);
  109. $("i", that).toggleClass("fa-chevron-up", show);
  110. $("a.btn[data-id][data-pid][data-pid!=0]").not('.disabled').closest("tr").toggle(show);
  111. $(".btn-node-sub[data-pid=0]").data("shown", show);
  112. });
  113. //展开隐藏全部
  114. $(document.body).on("click", ".btn-toggle-all", function (e) {
  115. var that = this;
  116. var show = $("i", that).hasClass("fa-plus");
  117. $("i", that).toggleClass("fa-plus", !show);
  118. $("i", that).toggleClass("fa-minus", show);
  119. $(".btn-node-sub.disabled").closest("tr").toggle(show);
  120. $(".btn-node-sub").data("shown", show);
  121. });
  122. },
  123. add: function () {
  124. Controller.api.bindevent();
  125. },
  126. edit: function () {
  127. Controller.api.bindevent();
  128. },
  129. api: {
  130. formatter: {
  131. title: function (value, row, index) {
  132. value = value.toString().replace(/(&|&amp;)nbsp;/g, '&nbsp;');
  133. return !row.ismenu || row.status == 'hidden' ? "<span class='text-muted'>" + value + "</span>" : value;
  134. },
  135. name: function (value, row, index) {
  136. return !row.ismenu || row.status == 'hidden' ? "<span class='text-muted'>" + value + "</span>" : value;
  137. },
  138. icon: function (value, row, index) {
  139. return '<span class="' + (!row.ismenu || row.status == 'hidden' ? 'text-muted' : '') + '"><i class="' + value + '"></i></span>';
  140. },
  141. subnode: function (value, row, index) {
  142. return '<a href="javascript:;" data-toggle="tooltip" title="' + __('Toggle sub menu') + '" data-id="' + row.id + '" data-pid="' + row.pid + '" class="btn btn-xs '
  143. + (row.haschild == 1 || row.ismenu == 1 ? 'btn-success' : 'btn-default disabled') + ' btn-node-sub"><i class="fa fa-sitemap"></i></a>';
  144. }
  145. },
  146. bindevent: function () {
  147. $(document).on('click', "input[name='row[ismenu]']", function () {
  148. var name = $("input[name='row[name]']");
  149. name.prop("placeholder", $(this).val() == 1 ? name.data("placeholder-menu") : name.data("placeholder-node"));
  150. });
  151. $("input[name='row[ismenu]']:checked").trigger("click");
  152. var iconlist = [];
  153. var iconfunc = function () {
  154. Layer.open({
  155. type: 1,
  156. area: ['99%', '98%'], //宽高
  157. content: Template('chooseicontpl', {iconlist: iconlist})
  158. });
  159. };
  160. Form.api.bindevent($("form[role=form]"), function (data) {
  161. Fast.api.refreshmenu();
  162. });
  163. $(document).on('click', ".btn-search-icon", function () {
  164. if (iconlist.length == 0) {
  165. $.get(Config.site.cdnurl + "/assets/libs/font-awesome/less/variables.less", function (ret) {
  166. var exp = /fa-var-(.*):/ig;
  167. var result;
  168. while ((result = exp.exec(ret)) != null) {
  169. iconlist.push(result[1]);
  170. }
  171. iconfunc();
  172. });
  173. } else {
  174. iconfunc();
  175. }
  176. });
  177. $(document).on('click', '#chooseicon ul li', function () {
  178. $("input[name='row[icon]']").val('fa fa-' + $(this).data("font"));
  179. Layer.closeAll();
  180. });
  181. $(document).on('keyup', 'input.js-icon-search', function () {
  182. $("#chooseicon ul li").show();
  183. if ($(this).val() != '') {
  184. $("#chooseicon ul li:not([data-font*='" + $(this).val() + "'])").hide();
  185. }
  186. });
  187. }
  188. }
  189. };
  190. return Controller;
  191. });