apply.html 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. {extend name='main'}
  2. {block name="button"}
  3. {if auth("admin/auth/refresh")}
  4. <button data-load='{:url("refresh")}' class='layui-btn layui-btn-sm layui-btn-primary'>刷新权限</button>
  5. {/if}
  6. {/block}
  7. {block name="content"}
  8. <div class="think-box-shadow">
  9. <ul id="zTree" class="ztree notselect"></ul>
  10. <div class="hr-line-dashed"></div>
  11. <div class="layui-form-item text-center">
  12. <button class="layui-btn" data-submit-role type='button'>保存数据</button>
  13. <button class="layui-btn layui-btn-danger" type='button' onclick="window.history.back()">取消编辑</button>
  14. </div>
  15. </div>
  16. {/block}
  17. {block name="script"}
  18. <script>
  19. window.RoleAction = new function () {
  20. this.data = {};
  21. this.ztree = null;
  22. this.setting = {
  23. view: {showLine: false, showIcon: false, dblClickExpand: false},
  24. check: {enable: true, nocheck: false, chkboxType: {"Y": "ps", "N": "ps"}},
  25. callback: {
  26. beforeClick: function (id, node) {
  27. node.children.length < 1 ? RoleAction.ztree.checkNode(node, !node.checked, null, true) : RoleAction.ztree.expandNode(node);
  28. return false;
  29. }
  30. }
  31. };
  32. this.renderChildren = function (list, level) {
  33. var childrens = [];
  34. for (var i in list) childrens.push({
  35. open: true, node: list[i].node, name: list[i].title || list[i].node,
  36. checked: list[i].checked || false, children: this.renderChildren(list[i]._sub_, level + 1)
  37. });
  38. return childrens;
  39. };
  40. this.getData = function (that) {
  41. var index = $.msg.loading();
  42. $.form.load('{:url()}', {id: '{$vo.id}', action: 'get'}, 'post', function (ret) {
  43. that.data = that.renderChildren(ret.data, 1);
  44. return $.msg.close(index), that.showTree(), false;
  45. });
  46. };
  47. this.showTree = function () {
  48. this.ztree = $.fn.zTree.init($("#zTree"), this.setting, this.data);
  49. while (true) {
  50. var nodes = this.ztree.getNodesByFilter(function (node) {
  51. return (!node.node && node.children.length < 1);
  52. });
  53. if (nodes.length < 1) break;
  54. for (var i in nodes) this.ztree.removeNode(nodes[i]);
  55. }
  56. };
  57. this.submit = function () {
  58. var nodes = [], data = this.ztree.getCheckedNodes(true);
  59. for (var i in data) if (data[i].node) nodes.push(data[i].node);
  60. $.form.load('{:url()}', {id: '{$vo.id}', action: 'save', nodes: nodes}, 'post');
  61. };
  62. // 刷新数据
  63. this.getData(this);
  64. // 提交表单
  65. $('[data-submit-role]').on('click', function () {
  66. RoleAction.submit();
  67. });
  68. };
  69. </script>
  70. {/block}
  71. {block name="style"}
  72. <link href="__ROOT__/static/plugs/ztree/zTreeStyle/zTreeStyle.css" rel="stylesheet">
  73. <script src="__ROOT__/static/plugs/ztree/ztree.all.min.js"></script>
  74. <style>
  75. ul.ztree li {
  76. white-space: normal !important;
  77. }
  78. ul.ztree li span.button.switch {
  79. margin-right: 5px;
  80. }
  81. ul.ztree ul ul li {
  82. display: inline-block;
  83. white-space: normal;
  84. }
  85. ul.ztree > li {
  86. padding: 15px 25px 15px 15px;
  87. }
  88. ul.ztree > li > ul {
  89. margin-top: 12px;
  90. border-top: 1px solid rgba(0, 0, 0, .1);
  91. }
  92. ul.ztree > li > ul > li {
  93. padding: 5px;
  94. }
  95. ul.ztree > li > a > span {
  96. font-weight: 700;
  97. font-size: 15px;
  98. }
  99. ul.ztree .level2 .button.level2 {
  100. background: 0 0;
  101. }
  102. </style>
  103. {/block}