apply.html 3.5 KB

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