index.js 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469
  1. (function ($) {
  2. tablist = {
  3. newTab: function (item) {
  4. var dataId = item.id;
  5. var dataUrl = item.url;
  6. var menuName = item.title;
  7. var flag = true;
  8. if (dataUrl == undefined || $.trim(dataUrl).length == 0) {
  9. return false;
  10. }
  11. $('.menuTab').each(function () {
  12. if ($(this).data('id') == dataUrl) {
  13. if (!$(this).hasClass('active')) {
  14. $(this).addClass('active').siblings('.menuTab').removeClass('active');
  15. $.learuntab.scrollToTab(this);
  16. $('.mainContent .LRADMS_iframe').each(function () {
  17. if ($(this).data('id') == dataUrl) {
  18. $(this).show().siblings('.LRADMS_iframe').hide();
  19. return false;
  20. }
  21. });
  22. }
  23. flag = false;
  24. return false;
  25. }
  26. });
  27. if (flag) {
  28. var str = '<a href="javascript:;" class="active menuTab" data-id="' + dataUrl + '">' + menuName + ' <i class="fa fa-remove"></i></a>';
  29. $('.menuTab').removeClass('active');
  30. var str1 = '<iframe class="LRADMS_iframe" id="iframe' + dataId + '" name="iframe' + dataId + '" width="100%" height="100%" src="' + dataUrl + '" frameborder="0" data-id="' + dataUrl + '" seamless></iframe>';
  31. $('.mainContent').find('iframe.LRADMS_iframe').hide();
  32. $('.mainContent').append(str1);
  33. Loading(true);
  34. $('.mainContent iframe:visible').load(function () {
  35. Loading(false);
  36. });
  37. $('.menuTabs .page-tabs-content').append(str);
  38. $.learuntab.scrollToTab($('.menuTab.active'));
  39. }
  40. }
  41. }
  42. $.learuntab = {
  43. requestFullScreen: function () {
  44. var de = document.documentElement;
  45. if (de.requestFullscreen) {
  46. de.requestFullscreen();
  47. } else if (de.mozRequestFullScreen) {
  48. de.mozRequestFullScreen();
  49. } else if (de.webkitRequestFullScreen) {
  50. de.webkitRequestFullScreen();
  51. }
  52. },
  53. exitFullscreen: function () {
  54. var de = document;
  55. if (de.exitFullscreen) {
  56. de.exitFullscreen();
  57. } else if (de.mozCancelFullScreen) {
  58. de.mozCancelFullScreen();
  59. } else if (de.webkitCancelFullScreen) {
  60. de.webkitCancelFullScreen();
  61. }
  62. },
  63. refreshTab: function () {
  64. var currentId = $('.page-tabs-content').find('.active').attr('data-id');
  65. var target = $('.LRADMS_iframe[data-id="' + currentId + '"]');
  66. var url = target.attr('src');
  67. Loading(true);
  68. target.attr('src', url).load(function () {
  69. Loading(false);
  70. });
  71. },
  72. activeTab: function () {
  73. var currentId = $(this).data('id');
  74. if (!$(this).hasClass('active')) {
  75. $('.mainContent .LRADMS_iframe').each(function () {
  76. if ($(this).data('id') == currentId) {
  77. $(this).show().siblings('.LRADMS_iframe').hide();
  78. return false;
  79. }
  80. });
  81. $(this).addClass('active').siblings('.menuTab').removeClass('active');
  82. $.learuntab.scrollToTab(this);
  83. }
  84. },
  85. closeOtherTabs: function () {
  86. $('.page-tabs-content').children("[data-id]").find('.fa-remove').parents('a').not(".active").each(function () {
  87. $('.LRADMS_iframe[data-id="' + $(this).data('id') + '"]').remove();
  88. $(this).remove();
  89. });
  90. $('.page-tabs-content').css("margin-left", "0");
  91. },
  92. closeTab: function () {
  93. var closeTabId = $(this).parents('.menuTab').data('id');
  94. var currentWidth = $(this).parents('.menuTab').width();
  95. if ($(this).parents('.menuTab').hasClass('active')) {
  96. if ($(this).parents('.menuTab').next('.menuTab').size()) {
  97. var activeId = $(this).parents('.menuTab').next('.menuTab:eq(0)').data('id');
  98. $(this).parents('.menuTab').next('.menuTab:eq(0)').addClass('active');
  99. $('.mainContent .LRADMS_iframe').each(function () {
  100. if ($(this).data('id') == activeId) {
  101. $(this).show().siblings('.LRADMS_iframe').hide();
  102. return false;
  103. }
  104. });
  105. var marginLeftVal = parseInt($('.page-tabs-content').css('margin-left'));
  106. if (marginLeftVal < 0) {
  107. $('.page-tabs-content').animate({
  108. marginLeft: (marginLeftVal + currentWidth) + 'px'
  109. }, "fast");
  110. }
  111. $(this).parents('.menuTab').remove();
  112. $('.mainContent .LRADMS_iframe').each(function () {
  113. if ($(this).data('id') == closeTabId) {
  114. $(this).remove();
  115. return false;
  116. }
  117. });
  118. }
  119. if ($(this).parents('.menuTab').prev('.menuTab').size()) {
  120. var activeId = $(this).parents('.menuTab').prev('.menuTab:last').data('id');
  121. $(this).parents('.menuTab').prev('.menuTab:last').addClass('active');
  122. $('.mainContent .LRADMS_iframe').each(function () {
  123. if ($(this).data('id') == activeId) {
  124. $(this).show().siblings('.LRADMS_iframe').hide();
  125. return false;
  126. }
  127. });
  128. $(this).parents('.menuTab').remove();
  129. $('.mainContent .LRADMS_iframe').each(function () {
  130. if ($(this).data('id') == closeTabId) {
  131. $(this).remove();
  132. return false;
  133. }
  134. });
  135. }
  136. }
  137. else {
  138. $(this).parents('.menuTab').remove();
  139. $('.mainContent .LRADMS_iframe').each(function () {
  140. if ($(this).data('id') == closeTabId) {
  141. $(this).remove();
  142. return false;
  143. }
  144. });
  145. $.learuntab.scrollToTab($('.menuTab.active'));
  146. }
  147. return false;
  148. },
  149. addTab: function () {
  150. $(".navbar-custom-menu>ul>li.open").removeClass("open");
  151. $(".sidebar-menu-overlay").remove();
  152. $(".sidebar-menu").find(".sidebar-menu-right").css("overflow", "hidden");
  153. $(".sidebar-menu").slideUp(300)
  154. var dataId = $(this).attr('data-id');
  155. if (dataId != "") {
  156. top.$.cookie('currentmoduleId', dataId, { path: "/" });
  157. }
  158. var dataUrl = $(this).attr('href');
  159. var menuName = $.trim($(this).text());
  160. var flag = true;
  161. if (dataUrl == undefined || $.trim(dataUrl).length == 0) {
  162. return false;
  163. }
  164. $('.menuTab').each(function () {
  165. if ($(this).data('id') == dataUrl) {
  166. if (!$(this).hasClass('active')) {
  167. $(this).addClass('active').siblings('.menuTab').removeClass('active');
  168. $.learuntab.scrollToTab(this);
  169. $('.mainContent .LRADMS_iframe').each(function () {
  170. if ($(this).data('id') == dataUrl) {
  171. $(this).show().siblings('.LRADMS_iframe').hide();
  172. return false;
  173. }
  174. });
  175. }
  176. flag = false;
  177. return false;
  178. }
  179. });
  180. if (flag) {
  181. var str = '<a href="javascript:;" class="active menuTab" data-id="' + dataUrl + '">' + menuName + ' <i class="fa fa-remove"></i></a>';
  182. $('.menuTab').removeClass('active');
  183. var str1 = '<iframe class="LRADMS_iframe" id="iframe' + dataId + '" name="iframe' + dataId + '" width="100%" height="100%" src="' + dataUrl + '" frameborder="0" data-id="' + dataUrl + '" seamless></iframe>';
  184. $('.mainContent').find('iframe.LRADMS_iframe').hide();
  185. $('.mainContent').append(str1);
  186. Loading(true);
  187. $('.mainContent iframe:visible').load(function () {
  188. Loading(false);
  189. });
  190. $('.menuTabs .page-tabs-content').append(str);
  191. $.learuntab.scrollToTab($('.menuTab.active'));
  192. }
  193. return false;
  194. },
  195. scrollTabRight: function () {
  196. var marginLeftVal = Math.abs(parseInt($('.page-tabs-content').css('margin-left')));
  197. var tabOuterWidth = $.learuntab.calSumWidth($(".content-tabs").children().not(".menuTabs"));
  198. var visibleWidth = $(".content-tabs").outerWidth(true) - tabOuterWidth;
  199. var scrollVal = 0;
  200. if ($(".page-tabs-content").width() < visibleWidth) {
  201. return false;
  202. } else {
  203. var tabElement = $(".menuTab:first");
  204. var offsetVal = 0;
  205. while ((offsetVal + $(tabElement).outerWidth(true)) <= marginLeftVal) {
  206. offsetVal += $(tabElement).outerWidth(true);
  207. tabElement = $(tabElement).next();
  208. }
  209. offsetVal = 0;
  210. while ((offsetVal + $(tabElement).outerWidth(true)) < (visibleWidth) && tabElement.length > 0) {
  211. offsetVal += $(tabElement).outerWidth(true);
  212. tabElement = $(tabElement).next();
  213. }
  214. scrollVal = $.learuntab.calSumWidth($(tabElement).prevAll());
  215. if (scrollVal > 0) {
  216. $('.page-tabs-content').animate({
  217. marginLeft: 0 - scrollVal + 'px'
  218. }, "fast");
  219. }
  220. }
  221. },
  222. scrollTabLeft: function () {
  223. var marginLeftVal = Math.abs(parseInt($('.page-tabs-content').css('margin-left')));
  224. var tabOuterWidth = $.learuntab.calSumWidth($(".content-tabs").children().not(".menuTabs"));
  225. var visibleWidth = $(".content-tabs").outerWidth(true) - tabOuterWidth;
  226. var scrollVal = 0;
  227. if ($(".page-tabs-content").width() < visibleWidth) {
  228. return false;
  229. } else {
  230. var tabElement = $(".menuTab:first");
  231. var offsetVal = 0;
  232. while ((offsetVal + $(tabElement).outerWidth(true)) <= marginLeftVal) {
  233. offsetVal += $(tabElement).outerWidth(true);
  234. tabElement = $(tabElement).next();
  235. }
  236. offsetVal = 0;
  237. if ($.learuntab.calSumWidth($(tabElement).prevAll()) > visibleWidth) {
  238. while ((offsetVal + $(tabElement).outerWidth(true)) < (visibleWidth) && tabElement.length > 0) {
  239. offsetVal += $(tabElement).outerWidth(true);
  240. tabElement = $(tabElement).prev();
  241. }
  242. scrollVal = $.learuntab.calSumWidth($(tabElement).prevAll());
  243. }
  244. }
  245. $('.page-tabs-content').animate({
  246. marginLeft: 0 - scrollVal + 'px'
  247. }, "fast");
  248. },
  249. scrollToTab: function (element) {
  250. var marginLeftVal = $.learuntab.calSumWidth($(element).prevAll()), marginRightVal = $.learuntab.calSumWidth($(element).nextAll());
  251. var tabOuterWidth = $.learuntab.calSumWidth($(".content-tabs").children().not(".menuTabs"));
  252. var visibleWidth = $(".content-tabs").outerWidth(true) - tabOuterWidth;
  253. var scrollVal = 0;
  254. if ($(".page-tabs-content").outerWidth() < visibleWidth) {
  255. scrollVal = 0;
  256. } else if (marginRightVal <= (visibleWidth - $(element).outerWidth(true) - $(element).next().outerWidth(true))) {
  257. if ((visibleWidth - $(element).next().outerWidth(true)) > marginRightVal) {
  258. scrollVal = marginLeftVal;
  259. var tabElement = element;
  260. while ((scrollVal - $(tabElement).outerWidth()) > ($(".page-tabs-content").outerWidth() - visibleWidth)) {
  261. scrollVal -= $(tabElement).prev().outerWidth();
  262. tabElement = $(tabElement).prev();
  263. }
  264. }
  265. } else if (marginLeftVal > (visibleWidth - $(element).outerWidth(true) - $(element).prev().outerWidth(true))) {
  266. scrollVal = marginLeftVal - $(element).prev().outerWidth(true);
  267. }
  268. if (scrollVal > 0) {
  269. scrollVal += 30;
  270. }
  271. $('.page-tabs-content').animate({
  272. marginLeft: 0 - scrollVal + 'px'
  273. }, "fast");
  274. },
  275. calSumWidth: function (element) {
  276. var width = 0;
  277. $(element).each(function () {
  278. width += $(this).outerWidth(true);
  279. });
  280. return width;
  281. },
  282. init: function () {
  283. $('.menuItem').on('click', top.$.learuntab.addTab);
  284. $('.menuTabs').on('click', '.menuTab i', top.$.learuntab.closeTab);
  285. $('.menuTabs').on('click', '.menuTab', top.$.learuntab.activeTab);
  286. $('.tabLeft').on('click', top.$.learuntab.scrollTabLeft);
  287. $('.tabRight').on('click', top.$.learuntab.scrollTabRight);
  288. $('.tabReload').on('click', top.$.learuntab.refreshTab);
  289. $('.tabCloseCurrent').on('click', function () {
  290. $('.page-tabs-content').find('.active i').trigger("click");
  291. });
  292. $('.tabCloseAll').on('click', function () {
  293. $('.page-tabs-content').children("[data-id]").find('.fa-remove').each(function () {
  294. $('.LRADMS_iframe[data-id="' + $(this).data('id') + '"]').remove();
  295. $(this).parents('a').remove();
  296. });
  297. $('.page-tabs-content').children("[data-id]:first").each(function () {
  298. $('.LRADMS_iframe[data-id="' + $(this).data('id') + '"]').show();
  299. $(this).addClass("active");
  300. });
  301. $('.page-tabs-content').css("margin-left", "0");
  302. });
  303. $('.tabCloseOther').on('click', $.learuntab.closeOtherTabs);
  304. $('.fullscreen').on('click', function () {
  305. if (!$(this).attr('fullscreen')) {
  306. $(this).attr('fullscreen', 'true');
  307. $.learuntab.requestFullScreen();
  308. } else {
  309. $(this).removeAttr('fullscreen')
  310. $.learuntab.exitFullscreen();
  311. }
  312. });
  313. }
  314. };
  315. $.learunindex = {
  316. load: function () {
  317. $("#content-wrapper").find('.mainContent').height($(window).height() - 158);
  318. $(window).resize(function (e) {
  319. $("#content-wrapper").find('.mainContent').height($(window).height() - 158);
  320. });
  321. $(window).load(function () {
  322. window.setTimeout(function () {
  323. $('#ajax-loader').fadeOut();
  324. Loading(false);
  325. }, 300);
  326. });
  327. },
  328. jsonWhere: function (data, action) {
  329. if (action == null) return;
  330. var reval = new Array();
  331. $(data).each(function (i, v) {
  332. if (action(v)) {
  333. reval.push(v);
  334. }
  335. })
  336. return reval;
  337. },
  338. loadMenu: function () {
  339. var data = authorizeMenuData;
  340. var _html = "";
  341. $.each(data, function (i) {
  342. var row = data[i];
  343. if (row.ParentId == "0") {
  344. _html += '<li><a href="#" data-id="' + row.ModuleId + '"><i class="fa ' + row.Icon + '"></i><span>' + row.FullName + '</span></a><em></em></li>';
  345. }
  346. });
  347. var $ul = $(".sidebar-menu-left ul").html(_html);
  348. $ul.find("li").click(function () {
  349. $ul.find("li.active").removeClass("active");
  350. $(this).addClass("active");
  351. var dataId = $(this).find("a").attr("data-id");
  352. var childNodes = $.learunindex.jsonWhere(data, function (v) { return v.ParentId == dataId });
  353. var _childNodeshtml = "";
  354. $.each(childNodes, function (i) {
  355. var row = childNodes[i];
  356. var subchildNodes = $.learunindex.jsonWhere(data, function (v) { return v.ParentId == row.ModuleId });
  357. if (subchildNodes.length > 0) {
  358. _childNodeshtml += '<li>';
  359. _childNodeshtml += '<a href="#"><i class="fa ' + row.Icon + '"></i><span>' + row.FullName + '</span><i class="fa fa-angle-left pull-right"></i></a>';
  360. _childNodeshtml += '<ul>';
  361. $.each(subchildNodes, function (i) {
  362. var subrow = subchildNodes[i];
  363. _childNodeshtml += '<li><a class="menuItem" data-id="' + subrow.ModuleId + '" href="' + subrow.UrlAddress + '"><i class="fa ' + subrow.Icon + '"></i><span>' + subrow.FullName + '</span></a></li>';
  364. });
  365. _childNodeshtml += '</ul>';
  366. _childNodeshtml += '</li>';
  367. } else {
  368. _childNodeshtml += '<li><a class="menuItem" data-id="' + row.ModuleId + '" href="' + row.UrlAddress + '"><i class="fa ' + row.Icon + '"></i><span>' + row.FullName + '</span></a></li>';
  369. }
  370. });
  371. var $subul = $(".sidebar-menu-right>ul").html(_childNodeshtml);
  372. $subul.find(">li").click(function () {
  373. var e = $(this);
  374. if (e.find("ul>li").length > 0) {
  375. if (e.find("ul").is(":visible")) {
  376. e.find("ul").slideUp(500)
  377. e.find(">a").removeClass("active")
  378. } else {
  379. $subul.find("ul").slideUp(500)
  380. $subul.find(">li>a").removeClass("active");
  381. e.find("ul").slideDown(500);
  382. e.find(">a").addClass("active")
  383. }
  384. }
  385. });
  386. $.learuntab.init();
  387. });
  388. $ul.find("li:first").trigger("click");
  389. //开始菜单
  390. $(".start_menu").click(function () {
  391. if (!$(".sidebar-menu").is(":visible")) {
  392. $(".sidebar-menu").find(".sidebar-menu-right").css("overflow", "auto");
  393. $(".sidebar-menu").show();
  394. $("body").prepend('<div class="sidebar-menu-overlay" style="display: block;"></div>');
  395. $(".sidebar-menu-overlay").click(function () {
  396. $(this).remove();
  397. $(".sidebar-menu").find(".sidebar-menu-right").css("overflow", "hidden");
  398. $(".sidebar-menu").slideUp(300)
  399. })
  400. }
  401. });
  402. },
  403. loadDesktop: function () {
  404. if ($(".slidebox").length > 0) {
  405. var data = [{ "ModuleId": "1", "ParentId": "0", "EnCode": "SysManage", "FullName": "系统管理", "Icon": "fa fa-desktop", "UrlAddress": null, "Target": "expand", "IsMenu": 0, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 1, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": null, "CreateUserId": null, "CreateUserName": null, "ModifyDate": "2015-11-17 11:22:46", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "8", "ParentId": "2", "EnCode": "OrganizeManage", "FullName": "机构管理", "Icon": "fa fa-sitemap", "UrlAddress": "/BaseManage/Organize/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 1, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": null, "CreateUserId": null, "CreateUserName": null, "ModifyDate": "2016-04-29 11:55:28", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "7ae94059-9aa5-48eb-8330-4e2a6565b193", "ParentId": "1", "EnCode": "AreaManage", "FullName": "行政区域", "Icon": "fa fa-leaf", "UrlAddress": "/SystemManage/Area/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 1, "DeleteMark": 0, "EnabledMark": 1, "Description": "行政区域管理", "CreateDate": "2015-11-12 14:38:20", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-04-29 14:05:33", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "34e362f4-c220-4fb7-b3f0-288c83417cb3", "ParentId": "7cec0a0f-7204-4240-b009-312fa0c11cbf", "EnCode": "DataBaseLink", "FullName": "数据库连接", "Icon": "fa fa-plug", "UrlAddress": "/SystemManage/DataBaseLink/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 1, "DeleteMark": 0, "EnabledMark": 1, "Description": "动态链接数据库", "CreateDate": "2015-11-24 09:50:22", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-04-29 14:07:45", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "1b642904-d674-495f-a1e1-4814cc543870", "ParentId": "5", "EnCode": "发起流程", "FullName": "发起流程", "Icon": "fa fa-edit", "UrlAddress": "/FlowManage/FlowLaunch/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 1, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2015-11-23 22:12:27", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-01-12 17:39:01", "ModifyUserId": "0f36148c-719f-41e0-8c8c-16ffbc40d0e0", "ModifyUserName": "佘赐雄" }, { "ModuleId": "a977d91e-77b7-4d60-a7ad-dfbc138f7c0a", "ParentId": "b9f9df92-8ac5-46e2-90ac-68c5c2e034c3", "EnCode": "企业号设置", "FullName": "企业号设置", "Icon": "fa fa-plug", "UrlAddress": "/WeChatManage/Token/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 0, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 1, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2015-12-22 17:20:21", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2015-12-29 19:05:02", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "00ae31cf-b340-4c17-9ee7-6dd08943df02", "ParentId": "458113c6-b0be-4d6f-acce-7524f4bc3e88", "EnCode": "FormCategory", "FullName": "表单类别", "Icon": "fa fa-tags", "UrlAddress": "/SystemManage/DataItemList/Index?ItemCode=FormSort", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 1, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2015-11-27 10:30:47", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2015-12-01 09:42:16", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "16d4e2d5-d154-455f-94f7-63bf80ab26aa", "ParentId": "ad147f6d-613f-4d2d-8c84-b749d0754f3b", "EnCode": "ClientBaseData", "FullName": "基础设置", "Icon": "fa fa fa-book", "UrlAddress": null, "Target": "expand", "IsMenu": 0, "AllowExpand": 1, "IsPublic": 1, "AllowEdit": null, "AllowDelete": null, "SortCode": 1, "DeleteMark": 0, "EnabledMark": 1, "Description": "客户基础资料", "CreateDate": "2016-03-11 11:51:34", "CreateUserId": "0f36148c-719f-41e0-8c8c-16ffbc40d0e0", "CreateUserName": "佘赐雄", "ModifyDate": "2016-03-29 09:41:15", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "92a535c9-4d4b-4500-968d-a142e671c09b", "ParentId": "6", "EnCode": "ReportTemp", "FullName": "报表管理", "Icon": "fa fa-cogs", "UrlAddress": "/ReportManage/Report/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 0, "IsPublic": 1, "AllowEdit": null, "AllowDelete": null, "SortCode": 1, "DeleteMark": 0, "EnabledMark": 1, "Description": "报表模板管理", "CreateDate": "2016-01-13 17:21:17", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-04-29 14:14:56", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "e35d24ce-8a6a-46b9-8b3f-6dc864a8f342", "ParentId": "4", "EnCode": "NewManage", "FullName": "新闻中心", "Icon": "fa fa-feed", "UrlAddress": "/PublicInfoManage/News/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 1, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2015-11-27 09:47:16", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-04-29 14:17:09", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "3b03806d-98d8-40fe-9895-01633119458c", "ParentId": "16d4e2d5-d154-455f-94f7-63bf80ab26aa", "EnCode": "Client_ProductInfo", "FullName": "产品信息", "Icon": "fa fa-shopping-bag", "UrlAddress": "/SystemManage/DataItemList/Index?ItemCode=Client_ProductInfo", "Target": "iframe", "IsMenu": 1, "AllowExpand": 0, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 1, "DeleteMark": 0, "EnabledMark": 1, "Description": "销售产品信息", "CreateDate": "2016-03-11 16:42:57", "CreateUserId": "0f36148c-719f-41e0-8c8c-16ffbc40d0e0", "CreateUserName": "佘赐雄", "ModifyDate": "2016-03-23 16:36:07", "ModifyUserId": "0f36148c-719f-41e0-8c8c-16ffbc40d0e0", "ModifyUserName": "佘赐雄" }, { "ModuleId": "27b6c487-a2d9-4a3a-a40d-dbba27a53d26", "ParentId": "b5cb98f6-fb41-4a0f-bc11-469ff117a411", "EnCode": "FlowMonitor", "FullName": "流程监控", "Icon": "fa fa-eye", "UrlAddress": "/FlowManage/FlowProcess/MonitoringIndex", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 2, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2015-11-23 21:58:17", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-04-26 12:06:13", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "6252983c-52f5-402c-991b-ad19a9cb1f94", "ParentId": "4", "EnCode": "NoticeManage", "FullName": "通知公告", "Icon": "fa fa-volume-up", "UrlAddress": "/PublicInfoManage/Notice/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 2, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2015-11-27 09:47:33", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-04-29 14:17:39", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "66f6301c-1789-4525-a7d2-2b83272aafa6", "ParentId": "ad147f6d-613f-4d2d-8c84-b749d0754f3b", "EnCode": "ClientChance", "FullName": "商机管理", "Icon": "fa fa-binoculars", "UrlAddress": "/CustomerManage/Chance/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 2, "DeleteMark": 0, "EnabledMark": 1, "Description": "商机管理", "CreateDate": "2016-03-11 11:55:16", "CreateUserId": "0f36148c-719f-41e0-8c8c-16ffbc40d0e0", "CreateUserName": "佘赐雄", "ModifyDate": "2016-04-29 14:19:13", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "affacee1-41a3-4c7b-8804-f1c1926babbd", "ParentId": "6", "EnCode": "PurchaseReport", "FullName": "采购报表", "Icon": "fa fa-bar-chart", "UrlAddress": "/ReportManage/ReportDemo/Purchase", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 2, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2016-01-04 16:29:07", "CreateUserId": "0f36148c-719f-41e0-8c8c-16ffbc40d0e0", "CreateUserName": "佘赐雄", "ModifyDate": "2016-04-29 14:15:19", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "6be31cc9-4aee-4279-8435-4b266cec33f0", "ParentId": "16d4e2d5-d154-455f-94f7-63bf80ab26aa", "EnCode": "Client_Trade", "FullName": "客户行业", "Icon": "fa fa-tag", "UrlAddress": "/SystemManage/DataItemList/Index?ItemCode=Client_Trade", "Target": "iframe", "IsMenu": 1, "AllowExpand": 0, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 2, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2016-03-11 16:45:14", "CreateUserId": "0f36148c-719f-41e0-8c8c-16ffbc40d0e0", "CreateUserName": "佘赐雄", "ModifyDate": "2016-03-23 16:36:23", "ModifyUserId": "0f36148c-719f-41e0-8c8c-16ffbc40d0e0", "ModifyUserName": "佘赐雄" }, { "ModuleId": "5cc9d2d9-e097-4b51-9b9e-84ca9f1a0ab5", "ParentId": "b9f9df92-8ac5-46e2-90ac-68c5c2e034c3", "EnCode": "企业号部门", "FullName": "企业号部门", "Icon": "fa fa-sitemap", "UrlAddress": "/WeChatManage/Organize/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 0, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 2, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2015-12-22 17:20:38", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-04-29 14:10:46", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "08dfd779-92d5-4cd8-9982-a76176af0f7c", "ParentId": "458113c6-b0be-4d6f-acce-7524f4bc3e88", "EnCode": "FlowCategory", "FullName": "流程类别", "Icon": "fa fa-tags", "UrlAddress": "/SystemManage/DataItemList/Index?ItemCode=FlowSort", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 2, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2015-11-23 14:42:18", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2015-11-27 10:41:42", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "c4d7ce1f-72de-4651-b495-6c466261e9af", "ParentId": "7cec0a0f-7204-4240-b009-312fa0c11cbf", "EnCode": "DataBaseBackup", "FullName": "数据库备份", "Icon": "fa fa-cloud-download", "UrlAddress": "/SystemManage/DataBaseBackup/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 2, "DeleteMark": 0, "EnabledMark": 1, "Description": "数据备份、数据还原", "CreateDate": "2015-11-24 09:55:52", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-04-29 14:08:22", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "691f3810-a602-4523-8518-ce5856482d48", "ParentId": "5", "EnCode": "草稿流程", "FullName": "草稿流程", "Icon": "fa fa-file-text-o", "UrlAddress": "/FlowManage/FlowRoughdraft/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 2, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2015-11-23 22:13:21", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-03-19 16:15:15", "ModifyUserId": "24a055d6-5924-44c5-be52-3715cdd68011", "ModifyUserName": "陈彬彬" }, { "ModuleId": "9", "ParentId": "2", "EnCode": "DepartmentManage", "FullName": "部门管理", "Icon": "fa fa-th-list", "UrlAddress": "/BaseManage/Department/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 2, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": null, "CreateUserId": null, "CreateUserName": null, "ModifyDate": "2016-04-29 11:57:20", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "2", "ParentId": "0", "EnCode": "BaseManage", "FullName": "单位组织", "Icon": "fa fa-coffee", "UrlAddress": null, "Target": "expand", "IsMenu": 0, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 2, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": null, "CreateUserId": null, "CreateUserName": null, "ModifyDate": "2016-03-11 11:02:06", "ModifyUserId": "0f36148c-719f-41e0-8c8c-16ffbc40d0e0", "ModifyUserName": "佘赐雄" }, { "ModuleId": "4efd37bf-e3ef-4ced-8248-58eba046d78b", "ParentId": "1", "EnCode": "DataItemManage", "FullName": "通用字典", "Icon": "fa fa-book", "UrlAddress": "/SystemManage/DataItemDetail/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 2, "DeleteMark": 0, "EnabledMark": 1, "Description": "通用数据字典", "CreateDate": "2015-11-12 14:37:04", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-04-29 14:06:26", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "5", "ParentId": "0", "EnCode": "FlowManage", "FullName": "工作流程", "Icon": "fa fa-share-alt", "UrlAddress": null, "Target": "expand", "IsMenu": 0, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 3, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": null, "CreateUserId": null, "CreateUserName": null, "ModifyDate": "2016-04-11 10:21:44", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "7adc5a16-54a4-408e-a101-2ddab8117d67", "ParentId": "1", "EnCode": "CodeRule", "FullName": "单据编码", "Icon": "fa fa-barcode", "UrlAddress": "/SystemManage/CodeRule/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 3, "DeleteMark": 0, "EnabledMark": 1, "Description": "自动产生号码", "CreateDate": "2015-11-12 14:47:51", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-05-03 15:56:56", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "11", "ParentId": "2", "EnCode": "RoleManage", "FullName": "角色管理", "Icon": "fa fa-paw", "UrlAddress": "/BaseManage/Role/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 3, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": null, "CreateUserId": null, "CreateUserName": null, "ModifyDate": "2016-05-23 18:12:29", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "a57993fa-5a94-44a8-a330-89196515c1d9", "ParentId": "458113c6-b0be-4d6f-acce-7524f4bc3e88", "EnCode": "FormDesign", "FullName": "表单设计", "Icon": "fa fa-puzzle-piece", "UrlAddress": "/FlowManage/FormDesign/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 3, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2015-11-27 10:29:53", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2015-12-01 09:41:58", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "4d0f2e44-f68f-41fd-a55c-40ac67453ef4", "ParentId": "b9f9df92-8ac5-46e2-90ac-68c5c2e034c3", "EnCode": "企业号成员", "FullName": "企业号成员", "Icon": "fa fa-users", "UrlAddress": "/WeChatManage/User/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 0, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 3, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2015-12-22 17:20:53", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-04-29 14:11:24", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "c30310a7-d0a5-4bf6-8655-c3834a8cc73d", "ParentId": "16d4e2d5-d154-455f-94f7-63bf80ab26aa", "EnCode": "Client_Sort", "FullName": "客户类别", "Icon": "fa fa-tag", "UrlAddress": "/SystemManage/DataItemList/Index?ItemCode=Client_Sort", "Target": "iframe", "IsMenu": 1, "AllowExpand": 0, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 3, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2016-03-11 16:47:39", "CreateUserId": "0f36148c-719f-41e0-8c8c-16ffbc40d0e0", "CreateUserName": "佘赐雄", "ModifyDate": "2016-03-23 16:36:33", "ModifyUserId": "0f36148c-719f-41e0-8c8c-16ffbc40d0e0", "ModifyUserName": "佘赐雄" }, { "ModuleId": "ff1823b5-a966-4e6c-83de-807854f4f0fb", "ParentId": "6", "EnCode": "SalesReport", "FullName": "销售报表", "Icon": "fa fa-line-chart", "UrlAddress": "/ReportManage/ReportDemo/Sales", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 3, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2016-01-04 16:29:46", "CreateUserId": "0f36148c-719f-41e0-8c8c-16ffbc40d0e0", "CreateUserName": "佘赐雄", "ModifyDate": "2016-04-29 14:15:34", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "021a59b0-2589-4f9e-8140-6052177a967c", "ParentId": "5", "EnCode": "我的流程", "FullName": "我的流程", "Icon": "fa fa-file-word-o", "UrlAddress": "/FlowManage/FlowMyProcess/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 3, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2016-03-19 13:32:54", "CreateUserId": "24a055d6-5924-44c5-be52-3715cdd68011", "CreateUserName": "陈彬彬", "ModifyDate": "2016-03-22 20:02:21", "ModifyUserId": "24a055d6-5924-44c5-be52-3715cdd68011", "ModifyUserName": "陈彬彬" }, { "ModuleId": "1d3797f6-5cd2-41bc-b769-27f2513d61a9", "ParentId": "ad147f6d-613f-4d2d-8c84-b749d0754f3b", "EnCode": "ClientInfoManage", "FullName": "客户管理", "Icon": "fa fa-suitcase", "UrlAddress": "/CustomerManage/Customer/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 0, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 3, "DeleteMark": 0, "EnabledMark": 1, "Description": "客户管理", "CreateDate": "2016-03-11 11:57:48", "CreateUserId": "0f36148c-719f-41e0-8c8c-16ffbc40d0e0", "CreateUserName": "佘赐雄", "ModifyDate": "2016-04-29 14:19:05", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "04b88c96-8d99-45ec-956c-444efa630020", "ParentId": "4", "EnCode": "ResourceFileManage", "FullName": "文件资料", "Icon": "fa fa-jsfiddle", "UrlAddress": "/PublicInfoManage/ResourceFile/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 3, "DeleteMark": 0, "EnabledMark": 1, "Description": "文件管理", "CreateDate": "2015-11-27 09:47:48", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-04-21 15:06:21", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "2f820f6e-ae2e-472f-82cc-0129a2a57597", "ParentId": "7cec0a0f-7204-4240-b009-312fa0c11cbf", "EnCode": "DataBaseTable", "FullName": "数据表管理", "Icon": "fa fa-table", "UrlAddress": "/SystemManage/DataBaseTable/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 3, "DeleteMark": 0, "EnabledMark": 1, "Description": "数据库表结构", "CreateDate": "2015-11-24 09:53:42", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-04-29 14:08:55", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "c0544bfd-a557-45fc-a856-a678a1e88bfc", "ParentId": "b5cb98f6-fb41-4a0f-bc11-469ff117a411", "EnCode": "FlowDelegate", "FullName": "流程指派", "Icon": "fa fa-random", "UrlAddress": "/FlowManage/FlowProcess/DesignationIndex", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 3, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2015-11-23 21:58:36", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-04-26 12:06:40", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "901e6122-985d-4c84-8d8c-56560520f6ed", "ParentId": "6", "EnCode": "StorageReport", "FullName": "仓存报表", "Icon": "fa fa-area-chart", "UrlAddress": "/ReportManage/ReportDemo/Store", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 4, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2016-01-04 16:30:25", "CreateUserId": "0f36148c-719f-41e0-8c8c-16ffbc40d0e0", "CreateUserName": "佘赐雄", "ModifyDate": "2016-04-29 14:15:52", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "aed02ee7-322f-47f0-8ad6-ab0a2172628f", "ParentId": "16d4e2d5-d154-455f-94f7-63bf80ab26aa", "EnCode": "Client_Degree", "FullName": "客户程度", "Icon": "fa fa-tag", "UrlAddress": "/SystemManage/DataItemList/Index?ItemCode=Client_Degree", "Target": "iframe", "IsMenu": 1, "AllowExpand": 0, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 4, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2016-03-11 16:49:46", "CreateUserId": "0f36148c-719f-41e0-8c8c-16ffbc40d0e0", "CreateUserName": "佘赐雄", "ModifyDate": "2016-04-06 10:23:36", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "5f1fa264-cc9b-4146-b49e-743e4633bb4c", "ParentId": "ad147f6d-613f-4d2d-8c84-b749d0754f3b", "EnCode": "ClientInvoice", "FullName": "客户开票", "Icon": "fa fa-coffee", "UrlAddress": "/CustomerManage/Invoice/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 0, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 4, "DeleteMark": 0, "EnabledMark": 1, "Description": "开票管理", "CreateDate": "2016-04-01 10:40:18", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-04-29 14:20:23", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "aa844d70-7211-41d9-907a-f9a10f4ac801", "ParentId": "b9f9df92-8ac5-46e2-90ac-68c5c2e034c3", "EnCode": "企业号应用", "FullName": "企业号应用", "Icon": "fa fa-safari", "UrlAddress": "/WeChatManage/App/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 0, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 4, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2015-12-22 17:21:25", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2015-12-25 10:34:44", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "f63a252b-975f-4832-a5be-1ce733bc8ece", "ParentId": "458113c6-b0be-4d6f-acce-7524f4bc3e88", "EnCode": "FlowDesign", "FullName": "流程设计", "Icon": "fa fa-share-alt", "UrlAddress": "/FlowManage/FlowDesign/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 4, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2015-11-23 14:42:43", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2015-11-27 10:41:09", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "0d296398-bc0e-4f38-996a-6e24bc88cc53", "ParentId": "5", "EnCode": "待办流程", "FullName": "待办流程", "Icon": "fa fa-hourglass-half", "UrlAddress": "/FlowManage/FlowBeforeProcessing/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 4, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2015-11-23 22:13:39", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-03-23 18:07:42", "ModifyUserId": "24a055d6-5924-44c5-be52-3715cdd68011", "ModifyUserName": "陈彬彬" }, { "ModuleId": "7cec0a0f-7204-4240-b009-312fa0c11cbf", "ParentId": "1", "EnCode": "DatabaseManage", "FullName": "数据管理", "Icon": "fa fa-database", "UrlAddress": null, "Target": "expand", "IsMenu": 0, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 4, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2015-11-12 15:03:09", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-03-11 12:10:01", "ModifyUserId": "0f36148c-719f-41e0-8c8c-16ffbc40d0e0", "ModifyUserName": "佘赐雄" }, { "ModuleId": "6", "ParentId": "0", "EnCode": "ReportManage", "FullName": "报表中心", "Icon": "fa fa-area-chart", "UrlAddress": null, "Target": "expand", "IsMenu": 0, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 4, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": null, "CreateUserId": null, "CreateUserName": null, "ModifyDate": "2016-04-11 10:21:54", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "4", "ParentId": "0", "EnCode": "CommonInfo", "FullName": "公共信息", "Icon": "fa fa-globe", "UrlAddress": null, "Target": "expand", "IsMenu": 0, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 5, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": null, "CreateUserId": null, "CreateUserName": null, "ModifyDate": "2016-04-11 10:21:59", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "13", "ParentId": "2", "EnCode": "PostManage", "FullName": "岗位管理", "Icon": "fa fa-graduation-cap", "UrlAddress": "/BaseManage/Post/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 5, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": null, "CreateUserId": null, "CreateUserName": null, "ModifyDate": "2016-04-29 11:59:17", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "923f7d65-e307-45f7-8f96-73ecbf23b324", "ParentId": "5", "EnCode": "已办流程", "FullName": "已办流程", "Icon": "fa fa-flag", "UrlAddress": "/FlowManage/FlowAferProcessing/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 5, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2015-11-23 22:14:03", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-03-25 11:39:51", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "52fe82f8-41ba-433e-9351-ef67e5b35217", "ParentId": "16d4e2d5-d154-455f-94f7-63bf80ab26aa", "EnCode": "Client_Level", "FullName": "客户级别", "Icon": "fa fa-tag", "UrlAddress": "/SystemManage/DataItemList/Index?ItemCode=Client_Level", "Target": "iframe", "IsMenu": 1, "AllowExpand": 0, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 5, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2016-03-11 16:52:08", "CreateUserId": "0f36148c-719f-41e0-8c8c-16ffbc40d0e0", "CreateUserName": "佘赐雄", "ModifyDate": "2016-04-06 10:23:29", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "b352f049-4331-4b19-ac22-e379cb30bd55", "ParentId": "ad147f6d-613f-4d2d-8c84-b749d0754f3b", "EnCode": "ClientOrder", "FullName": "客户订单", "Icon": "fa fa-modx", "UrlAddress": "/CustomerManage/Order/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 5, "DeleteMark": 0, "EnabledMark": 1, "Description": "客户订单管理", "CreateDate": "2016-03-11 12:01:30", "CreateUserId": "0f36148c-719f-41e0-8c8c-16ffbc40d0e0", "CreateUserName": "佘赐雄", "ModifyDate": "2016-04-29 14:20:16", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "b9f9df92-8ac5-46e2-90ac-68c5c2e034c3", "ParentId": "1", "EnCode": "WeChatManage", "FullName": "微信管理", "Icon": "fa fa-weixin", "UrlAddress": null, "Target": "expand", "IsMenu": 0, "AllowExpand": 0, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 5, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2015-12-22 16:42:12", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2015-12-22 18:20:30", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "9db71a92-2ecb-496c-839f-7a82bc22905d", "ParentId": "6", "EnCode": "MoneyReport", "FullName": "对账报表", "Icon": "fa fa-pie-chart", "UrlAddress": "/ReportManage/ReportDemo/Reconciliation", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 5, "DeleteMark": 0, "EnabledMark": 1, "Description": "现金银行报表", "CreateDate": "2016-01-04 16:31:03", "CreateUserId": "0f36148c-719f-41e0-8c8c-16ffbc40d0e0", "CreateUserName": "佘赐雄", "ModifyDate": "2016-04-29 14:16:09", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "c6b80ed5-b0cb-4844-ba1a-725d2cb4f935", "ParentId": "4", "EnCode": "EmailManage", "FullName": "邮件中心", "Icon": "fa fa-send", "UrlAddress": "/PublicInfoManage/Email/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 6, "DeleteMark": 0, "EnabledMark": 1, "Description": "邮件管理", "CreateDate": "2015-11-27 09:48:38", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-04-21 15:06:31", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "23713d3a-810f-422d-acd5-39bec28ce47e", "ParentId": "4", "EnCode": "ScheduleManage", "FullName": "日程管理", "Icon": "fa fa-calendar", "UrlAddress": "/PublicInfoManage/Schedule/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 0, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 6, "DeleteMark": 0, "EnabledMark": 1, "Description": "日程管理", "CreateDate": "2016-04-21 14:15:30", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-04-21 16:08:46", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "ad147f6d-613f-4d2d-8c84-b749d0754f3b", "ParentId": "0", "EnCode": "CustomerManage", "FullName": "客户关系", "Icon": "fa fa-briefcase", "UrlAddress": null, "Target": "expand", "IsMenu": 0, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 6, "DeleteMark": 0, "EnabledMark": 1, "Description": "客户关系管理", "CreateDate": "2016-03-11 10:53:05", "CreateUserId": "0f36148c-719f-41e0-8c8c-16ffbc40d0e0", "CreateUserName": "佘赐雄", "ModifyDate": "2016-04-21 16:00:07", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "be9cbe61-265f-4ddd-851e-d5a1cef6011b", "ParentId": "16d4e2d5-d154-455f-94f7-63bf80ab26aa", "EnCode": "Client_ChanceSource", "FullName": "商机来源", "Icon": "fa fa-tag", "UrlAddress": "/SystemManage/DataItemList/Index?ItemCode=Client_ChanceSource", "Target": "iframe", "IsMenu": 1, "AllowExpand": 0, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 6, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2016-03-12 11:01:38", "CreateUserId": "0f36148c-719f-41e0-8c8c-16ffbc40d0e0", "CreateUserName": "佘赐雄", "ModifyDate": "2016-03-23 16:36:58", "ModifyUserId": "0f36148c-719f-41e0-8c8c-16ffbc40d0e0", "ModifyUserName": "佘赐雄" }, { "ModuleId": "535d92e9-e066-406c-b2c2-697150a5bdff", "ParentId": "ad147f6d-613f-4d2d-8c84-b749d0754f3b", "EnCode": "ClienReceivable", "FullName": "收款管理", "Icon": "fa fa-money", "UrlAddress": "/CustomerManage/Receivable/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 0, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 6, "DeleteMark": 0, "EnabledMark": 1, "Description": "收款管理", "CreateDate": "2016-04-06 16:04:16", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-04-29 14:20:56", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "6a67a67f-ef07-41e7-baa5-00bc5f662a76", "ParentId": "5", "EnCode": "工作委托", "FullName": "工作委托", "Icon": "fa fa-coffee", "UrlAddress": "/FlowManage/FlowDelegate/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 6, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2015-11-23 22:14:20", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-03-28 17:34:24", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "12", "ParentId": "2", "EnCode": "JobManage", "FullName": "职位管理", "Icon": "fa fa-briefcase", "UrlAddress": "/BaseManage/Job/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 6, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": null, "CreateUserId": null, "CreateUserName": null, "ModifyDate": "2016-04-29 12:00:32", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "f21fa3a0-c523-4d02-99ca-fd8dd3ae3d59", "ParentId": "1", "EnCode": "SystemLog", "FullName": "系统日志", "Icon": "fa fa-warning", "UrlAddress": "/SystemManage/Log/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 6, "DeleteMark": 0, "EnabledMark": 1, "Description": "登录日志、操作日志。异常日志", "CreateDate": "2015-11-12 15:04:58", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-04-29 14:12:14", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "14", "ParentId": "2", "EnCode": "UserGroupManage", "FullName": "用户组管理", "Icon": "fa fa-group", "UrlAddress": "/BaseManage/UserGroup/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 7, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": null, "CreateUserId": null, "CreateUserName": null, "ModifyDate": "2016-04-29 12:01:17", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "21", "ParentId": "1", "EnCode": "SystemModule", "FullName": "系统功能", "Icon": "fa fa-navicon", "UrlAddress": "/AuthorizeManage/Module/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 0, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 7, "DeleteMark": 0, "EnabledMark": 1, "Description": "系统导航功能", "CreateDate": null, "CreateUserId": null, "CreateUserName": null, "ModifyDate": "2016-04-29 14:13:00", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "1ef31fba-7f0a-46f7-b533-49dd0c2e51e0", "ParentId": "ad147f6d-613f-4d2d-8c84-b749d0754f3b", "EnCode": "ClienReceivableReport", "FullName": "收款报表", "Icon": "fa fa-bar-chart", "UrlAddress": "/CustomerManage/ReceivableReport/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 7, "DeleteMark": 0, "EnabledMark": 1, "Description": "收款报表", "CreateDate": "2016-04-20 09:41:51", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-04-29 14:21:24", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "80620d6f-55bd-492b-9c21-1b04ca268e75", "ParentId": "16d4e2d5-d154-455f-94f7-63bf80ab26aa", "EnCode": "Client_ChancePhase", "FullName": "商机阶段", "Icon": "fa fa-tag", "UrlAddress": "/SystemManage/DataItemList/Index?ItemCode=Client_ChancePhase", "Target": "iframe", "IsMenu": 1, "AllowExpand": 0, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 7, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2016-03-12 11:02:09", "CreateUserId": "0f36148c-719f-41e0-8c8c-16ffbc40d0e0", "CreateUserName": "佘赐雄", "ModifyDate": "2016-03-23 16:37:06", "ModifyUserId": "0f36148c-719f-41e0-8c8c-16ffbc40d0e0", "ModifyUserName": "佘赐雄" }, { "ModuleId": "458113c6-b0be-4d6f-acce-7524f4bc3e88", "ParentId": "5", "EnCode": "流程配置", "FullName": "流程配置", "Icon": "fa fa-wrench", "UrlAddress": null, "Target": "expand", "IsMenu": 0, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 7, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2015-11-27 10:39:01", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-03-19 13:34:52", "ModifyUserId": "24a055d6-5924-44c5-be52-3715cdd68011", "ModifyUserName": "陈彬彬" }, { "ModuleId": "b0261df5-7be0-4c8e-829c-15836e200af0", "ParentId": "1", "EnCode": "SystemForm", "FullName": "系统表单", "Icon": "fa fa-paw", "UrlAddress": "/AuthorizeManage/ModuleForm/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 8, "DeleteMark": 0, "EnabledMark": 1, "Description": "系统功能自定义表单", "CreateDate": "2016-04-11 11:19:06", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-04-29 14:14:02", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "9fc384f5-efb7-439e-9fe1-3e50807e6399", "ParentId": "ad147f6d-613f-4d2d-8c84-b749d0754f3b", "EnCode": "ClienExpenses", "FullName": "支出管理", "Icon": "fa fa-credit-card-alt", "UrlAddress": "/CustomerManage/Expenses/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 0, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 8, "DeleteMark": 0, "EnabledMark": 1, "Description": "支出管理", "CreateDate": "2016-04-20 11:31:56", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-04-29 14:21:50", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "77f13de5-32ad-4226-9e24-f1db507e78cb", "ParentId": "16d4e2d5-d154-455f-94f7-63bf80ab26aa", "EnCode": "Client_PaymentMode", "FullName": "收支方式", "Icon": "fa fa-tag", "UrlAddress": "/SystemManage/DataItemList/Index?ItemCode=Client_PaymentMode", "Target": "iframe", "IsMenu": 1, "AllowExpand": 0, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 8, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2016-03-14 19:49:53", "CreateUserId": "0f36148c-719f-41e0-8c8c-16ffbc40d0e0", "CreateUserName": "佘赐雄", "ModifyDate": "2016-04-20 09:55:52", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "b5cb98f6-fb41-4a0f-bc11-469ff117a411", "ParentId": "5", "EnCode": "FlowManage", "FullName": "流程管理", "Icon": "fa fa-cogs", "UrlAddress": null, "Target": "expand", "IsMenu": 0, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 8, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2015-11-23 10:20:00", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-03-19 13:33:50", "ModifyUserId": "24a055d6-5924-44c5-be52-3715cdd68011", "ModifyUserName": "陈彬彬" }, { "ModuleId": "cfa631fe-e7f8-42b5-911f-7172f178a811", "ParentId": "1", "EnCode": "CodeCreate", "FullName": "快速开发", "Icon": "fa fa-code", "UrlAddress": "/GeneratorManage/Template/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 0, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 8, "DeleteMark": 0, "EnabledMark": 1, "Description": "自动生成代码、自动生成功能", "CreateDate": "2015-11-12 15:21:38", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-04-12 10:52:30", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "10", "ParentId": "2", "EnCode": "UserManage", "FullName": "用户管理", "Icon": "fa fa-user", "UrlAddress": "/BaseManage/User/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 8, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": null, "CreateUserId": null, "CreateUserName": null, "ModifyDate": "2016-04-29 11:51:54", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "dec79ca7-3b54-432a-be1e-c96e7a2c7150", "ParentId": "ad147f6d-613f-4d2d-8c84-b749d0754f3b", "EnCode": "ClienCashBalanceReport", "FullName": "现金报表", "Icon": "fa fa-bar-chart", "UrlAddress": "/CustomerManage/CashBalanceReport/Index", "Target": "iframe", "IsMenu": 1, "AllowExpand": 1, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 9, "DeleteMark": 0, "EnabledMark": 1, "Description": "收支报表", "CreateDate": "2016-04-28 15:12:16", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-05-27 16:29:15", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "ddce0dc1-3345-41b7-9716-22641fbbfaed", "ParentId": "6", "EnCode": "rpt001", "FullName": "销售日报表", "Icon": "fa fa-pie-chart", "UrlAddress": "/ReportManage/Report/ReportPreview?keyValue=a9762855-cd45-4815-a8e1-c8b818f79ad5", "Target": "iframe", "IsMenu": 1, "AllowExpand": 0, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 9, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2016-03-22 16:55:20", "CreateUserId": "eab01522-f4fe-48ce-8db6-76fd7813cdf5", "CreateUserName": "刘晓雷", "ModifyDate": "2016-03-29 16:53:54", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "62af0605-4558-47b1-9530-bc3515036b37", "ParentId": "16d4e2d5-d154-455f-94f7-63bf80ab26aa", "EnCode": "Client_PaymentAccount", "FullName": "收支账户", "Icon": "fa fa-tag", "UrlAddress": "/SystemManage/DataItemList/Index?ItemCode=Client_PaymentAccount", "Target": "iframe", "IsMenu": 1, "AllowExpand": 0, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 9, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2016-04-20 09:54:48", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-04-20 09:55:13", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }, { "ModuleId": "eab4a37f-d976-42b7-9589-489ed0678151", "ParentId": "16d4e2d5-d154-455f-94f7-63bf80ab26aa", "EnCode": "Client_ExpensesType", "FullName": "支出种类", "Icon": "fa fa-tag", "UrlAddress": "/SystemManage/DataItemList/Index?ItemCode=Client_ExpensesType", "Target": "iframe", "IsMenu": 1, "AllowExpand": 0, "IsPublic": 0, "AllowEdit": null, "AllowDelete": null, "SortCode": 10, "DeleteMark": 0, "EnabledMark": 1, "Description": null, "CreateDate": "2016-04-20 15:06:10", "CreateUserId": "100000", "CreateUserName": "超级管理员", "ModifyDate": "2016-04-20 15:06:46", "ModifyUserId": "100000", "ModifyUserName": "超级管理员" }];
  406. var color = ["2e99d4", "fe8977 ", "9dd6d7 ", "b5adab", "8ebdd4", "edd46e", "64cfa7", "FFA300", "708FE3", "D972E3", "56BD4E", "1ABC9C", "2e99d4"]
  407. var _html = "";
  408. $.each(data, function (i) {
  409. var row = data[i];
  410. if (row.Target == "iframe") {
  411. var colorindex = Math.round(Math.random() * 9 + 1);
  412. _html += '<li class="menuItem" data-id="' + row.ModuleId + '" href="' + row.UrlAddress + '">';
  413. _html += ' <div class="icon" style="background: #' + color[colorindex] + ';">';
  414. _html += ' <i class="fa ' + row.Icon + '"></i>';
  415. _html += ' </div>';
  416. _html += ' <div class="icon-text">';
  417. _html += ' <span>' + row.FullName + '</a>';
  418. _html += ' </div>';
  419. _html += '</li>';
  420. }
  421. });
  422. $(".slidebox ul").append(_html);
  423. var ul = $(".slidebox > ul");
  424. var lis = ul.children("li");
  425. lis.each(function (i, dom) {
  426. if (i % 28 == 0) {
  427. ul.before('<ul>');
  428. }
  429. ul.prev("ul").append(dom);
  430. });
  431. ul.remove();
  432. var slideboxCount = Math.ceil($(".slidebox>ul>li").length / 28);
  433. for (var i = 0; i < slideboxCount; i++) {
  434. $(".slidebox-slider ul").prepend('<li><i class="fa fa-circle"></i></li>');
  435. }
  436. $(".slidebox-slider ul li:first").addClass("active");
  437. $(".slidebox-slider ul li").click(function () {
  438. $(".slidebox-slider ul li").removeClass("active");
  439. $(this).addClass("active");
  440. var index = $(this).index();
  441. $(".slidebox").animate({ "left": -$(".slidebox>ul").width() * index }, 1000);
  442. });
  443. $(".slidebox>ul").width($(".slidebox").width());
  444. $(".slidebox").width($(".slidebox").width() * $(".slidebox>ul").length);
  445. }
  446. },
  447. indexOut: function () {
  448. dialogConfirm("注:您确定要安全退出本次登录吗?", function (r) {
  449. if (r) {
  450. Loading(true, "正在安全退出...");
  451. window.setTimeout(function () {
  452. $.ajax({
  453. url: contentPath + "/Login/OutLogin",
  454. type: "post",
  455. dataType: "json",
  456. success: function (data) {
  457. window.location.href = contentPath + "/Login/Index";
  458. }
  459. });
  460. }, 500);
  461. }
  462. });
  463. }
  464. };
  465. })(jQuery);