rule.js 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  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: 'operate',
  39. title: __('Operate'),
  40. table: table,
  41. events: Table.api.events.operate,
  42. formatter: Table.api.formatter.operate
  43. }
  44. ]
  45. ],
  46. pagination: false,
  47. search: false,
  48. commonSearch: false,
  49. rowAttributes: function (row, index) {
  50. return row.pid == 0 ? {} : {style: "display:none"};
  51. }
  52. });
  53. // 为表格绑定事件
  54. Table.api.bindevent(table);
  55. var btnSuccessEvent = function (data, ret) {
  56. if ($(this).hasClass("btn-change")) {
  57. var index = $(this).data("index");
  58. var row = Table.api.getrowbyindex(table, index);
  59. row.ismenu = $("i.fa.text-gray", this).length > 0 ? 1 : 0;
  60. table.bootstrapTable("updateRow", {index: index, row: row});
  61. } else if ($(this).hasClass("btn-delone")) {
  62. if ($(this).closest("tr[data-index]").find("a.btn-node-sub.disabled").length > 0) {
  63. $(this).closest("tr[data-index]").remove();
  64. } else {
  65. table.bootstrapTable('refresh');
  66. }
  67. } else if ($(this).hasClass("btn-dragsort")) {
  68. table.bootstrapTable('refresh');
  69. }
  70. Fast.api.refreshmenu();
  71. return false;
  72. };
  73. //表格内容渲染前
  74. table.on('pre-body.bs.table', function (e, data) {
  75. var options = table.bootstrapTable("getOptions");
  76. options.escape = true;
  77. });
  78. //当内容渲染完成后
  79. table.on('post-body.bs.table', function (e, data) {
  80. var options = table.bootstrapTable("getOptions");
  81. options.escape = false;
  82. //点击切换/排序/删除操作后刷新左侧菜单
  83. $(".btn-change[data-id],.btn-delone,.btn-dragsort").data("success", btnSuccessEvent);
  84. });
  85. //显示隐藏子节点
  86. $(document).on("click", ".btn-node-sub", function (e) {
  87. var status = $(this).data("shown") ? true : false;
  88. $("a[data-pid='" + $(this).data("id") + "']").each(function () {
  89. $(this).closest("tr").toggle(!status);
  90. });
  91. if (status) {
  92. $("a[data-pid='" + $(this).data("id") + "']").trigger("collapse");
  93. }
  94. $(this).data("shown", !status);
  95. $("i", this).toggleClass("fa-caret-down").toggleClass("fa-caret-right");
  96. return false;
  97. });
  98. //隐藏子节点
  99. $(document).on("collapse", ".btn-node-sub", function () {
  100. if ($("i", this).length > 0) {
  101. $("a[data-pid='" + $(this).data("id") + "']").trigger("collapse");
  102. }
  103. $("i", this).removeClass("fa-caret-down").addClass("fa-caret-right");
  104. $(this).data("shown", false);
  105. $(this).closest("tr").toggle(false);
  106. });
  107. //批量删除后的回调
  108. $(".toolbar > .btn-del,.toolbar .btn-more~ul>li>a").data("success", function (e) {
  109. Fast.api.refreshmenu();
  110. });
  111. //展开隐藏一级
  112. $(document.body).on("click", ".btn-toggle", function (e) {
  113. $("a[data-id][data-pid][data-pid!=0].disabled").closest("tr").hide();
  114. var that = this;
  115. var show = $("i", that).hasClass("fa-chevron-down");
  116. $("i", that).toggleClass("fa-chevron-down", !show).toggleClass("fa-chevron-up", show);
  117. $("a[data-id][data-pid][data-pid!=0]").not('.disabled').closest("tr").toggle(show);
  118. $(".btn-node-sub[data-pid=0]").data("shown", show);
  119. });
  120. //展开隐藏全部
  121. $(document.body).on("click", ".btn-toggle-all", function (e) {
  122. var that = this;
  123. var show = $("i", that).hasClass("fa-plus");
  124. $("i", that).toggleClass("fa-plus", !show).toggleClass("fa-minus", show);
  125. $(".btn-node-sub:not([data-pid=0])").closest("tr").toggle(show);
  126. $(".btn-node-sub").data("shown", show);
  127. $(".btn-node-sub > i").toggleClass("fa-caret-down", show).toggleClass("fa-caret-right", !show);
  128. });
  129. },
  130. add: function () {
  131. Controller.api.bindevent();
  132. },
  133. edit: function () {
  134. Controller.api.bindevent();
  135. },
  136. api: {
  137. formatter: {
  138. title: function (value, row, index) {
  139. value = value.toString().replace(/(&|&)nbsp;/g, ' ');
  140. var caret = row.haschild == 1 || row.ismenu == 1 ? '<i class="fa fa-caret-right"></i>' : '';
  141. value = value.indexOf("&nbsp;") > -1 ? value.replace(/(.*)&nbsp;/, "$1" + caret) : caret + value;
  142. value = !row.ismenu || row.status == 'hidden' ? "<span class='text-muted'>" + value + "</span>" : value;
  143. return '<a href="javascript:;" data-toggle="tooltip" title="' + __('Toggle sub menu') + '" data-id="' + row.id + '" data-pid="' + row.pid + '" class="'
  144. + (row.haschild == 1 || row.ismenu == 1 ? 'text-primary' : 'disabled') + ' btn-node-sub">' + value + '</a>';
  145. },
  146. name: function (value, row, index) {
  147. return !row.ismenu || row.status == 'hidden' ? "<span class='text-muted'>" + value + "</span>" : value;
  148. },
  149. icon: function (value, row, index) {
  150. return '<span class="' + (!row.ismenu || row.status == 'hidden' ? 'text-muted' : '') + '"><i class="' + value + '"></i></span>';
  151. }
  152. },
  153. bindevent: function () {
  154. $(document).on('click', "input[name='row[ismenu]']", function () {
  155. var name = $("input[name='row[name]']");
  156. var ismenu = $(this).val() == 1;
  157. name.prop("placeholder", ismenu ? name.data("placeholder-menu") : name.data("placeholder-node"));
  158. $('div[data-type="menu"]').toggleClass("hidden", !ismenu);
  159. });
  160. $("input[name='row[ismenu]']:checked").trigger("click");
  161. var iconlist = [];
  162. var iconfunc = function () {
  163. Layer.open({
  164. type: 1,
  165. area: ['80%', '80%'], //宽高
  166. content: Template('chooseicontpl', {iconlist: iconlist})
  167. });
  168. };
  169. Form.api.bindevent($("form[role=form]"), function (data) {
  170. Fast.api.refreshmenu();
  171. });
  172. $(document).on('change keyup', "#icon", function () {
  173. $(this).prev().find("i").prop("class", $(this).val());
  174. });
  175. $(document).on('click', ".btn-search-icon", function () {
  176. if (iconlist.length == 0) {
  177. $.get(Config.site.cdnurl + "/assets/libs/font-awesome/css/font-awesome.css", function (ret) {
  178. var exp = /fa-(.*):before/ig;
  179. var result;
  180. while ((result = exp.exec(ret)) != null) {
  181. iconlist.push(result[1]);
  182. }
  183. iconfunc();
  184. });
  185. } else {
  186. iconfunc();
  187. }
  188. });
  189. $(document).on('click', '#chooseicon ul li', function () {
  190. $("input[name='row[icon]']").val('fa fa-' + $(this).data("font")).trigger("change");
  191. Layer.closeAll();
  192. });
  193. $(document).on('keyup', 'input.js-icon-search', function () {
  194. $("#chooseicon ul li").show();
  195. if ($(this).val() != '') {
  196. $("#chooseicon ul li:not([data-font*='" + $(this).val() + "'])").hide();
  197. }
  198. });
  199. }
  200. }
  201. };
  202. return Controller;
  203. });