这是我见过的最垃圾的代码,没有之一

公司有一个进销存的项目,正好这段时间准备看看,结果这个差点亮瞎的我的三观啊


<%@ taglib prefix="au" uri="/WEB-INF/authorityTag.tld" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
(function ($) {
var userName = "";
$.ajax({
type: "post",
dataType: "json",
data: null,
cache: false,
url: "../admin/isLogin.json",
async: false,
success: function (data) {
if (data.error != null && data.error != "") {
alert(data.error);
window.location.href = "../../../admins/login.html";
} else {
userName = data.msg;
//$(".pull-left.info p")[0].innerHTML = userName;
$(".hidden-xs")[0].innerHTML = userName;
}
}
});
if (userName == "") {
window.location.href = "../../../admins/login.html";
}
$.learuntab = {
requestFullScreen: function () {
var de = document.documentElement;
if (de.requestFullscreen) {
de.requestFullscreen();
} else if (de.mozRequestFullScreen) {
de.mozRequestFullScreen();
} else if (de.webkitRequestFullScreen) {
de.webkitRequestFullScreen();
}
},
exitFullscreen: function () {
var de = document;
if (de.exitFullscreen) {
de.exitFullscreen();
} else if (de.mozCancelFullScreen) {
de.mozCancelFullScreen();
} else if (de.webkitCancelFullScreen) {
de.webkitCancelFullScreen();
}
},
refreshTab: function () {
var currentId = $('.page-tabs-content').find('.active').attr(
'data-id');
var target = $('.LRADMS_iframe[data-id="' + currentId + '"]');
var url = target.attr('src');
// $.loading(true);
target.attr('src', url).load(function () {
// $.loading(false);
});
},
activeTab: function () {
var currentId = $(this).data('id');
if (!$(this).hasClass('active')) {
$('.mainContent .LRADMS_iframe').each(function () {
if ($(this).data('id') == currentId) {
$(this).show().siblings('.LRADMS_iframe').hide();
return false;
}
});
$(this).addClass('active').siblings('.menuTab').removeClass(
'active');
$.learuntab.scrollToTab(this);
}
},
closeOtherTabs: function () {
$('.page-tabs-content').children("[data-id]").find('.fa-remove').parents('a').not(".active").each(function () {
$(
'.LRADMS_iframe[data-id="'
+ $(this).data('id') + '"]')
.remove();
$(this).remove();
});
$('.page-tabs-content').css("margin-left", "0");
},
closeTab: function () {
var closeTabId = $(this).parents('.menuTab').data('id');
var currentWidth = $(this).parents('.menuTab').width();
if ($(this).parents('.menuTab').hasClass('active')) {
if ($(this).parents('.menuTab').next('.menuTab').size()) {
var activeId = $(this).parents('.menuTab').next('.menuTab:eq(0)').data('id');
$(this).parents('.menuTab').next('.menuTab:eq(0)').addClass('active');

$('.mainContent .LRADMS_iframe').each(function () {
if ($(this).data('id') == activeId) {
$(this).show().siblings('.LRADMS_iframe').hide();
return false;
}
});
var marginLeftVal = parseInt($('.page-tabs-content').css('margin-left'));
if (marginLeftVal < 0) {
$('.page-tabs-content').animate({
marginLeft: (marginLeftVal + currentWidth) + 'px'
}, "fast");
}
$(this).parents('.menuTab').remove();
$('.mainContent .LRADMS_iframe').each(function () {
if ($(this).data('id') == closeTabId) {
$(this).remove();
return false;
}
});
}
if ($(this).parents('.menuTab').prev('.menuTab').size()) {
var activeId = $(this).parents('.menuTab').prev(
'.menuTab:last').data('id');
$(this).parents('.menuTab').prev('.menuTab:last').addClass(
'active');
$('.mainContent .LRADMS_iframe').each(function () {
if ($(this).data('id') == activeId) {
$(this).show().siblings('.LRADMS_iframe').hide();
return false;
}
});
$(this).parents('.menuTab').remove();
$('.mainContent .LRADMS_iframe').each(function () {
if ($(this).data('id') == closeTabId) {
$(this).remove();
return false;
}
});
}
} else {
$(this).parents('.menuTab').remove();
$('.mainContent .LRADMS_iframe').each(function () {
if ($(this).data('id') == closeTabId) {
$(this).remove();
return false;
}
});
$.learuntab.scrollToTab($('.menuTab.active'));
}
return false;
},
addTab: function () {
$(".navbar-custom-menu>ul>li.open").removeClass("open");
var dataId = $(this).attr('data-id');
if (dataId != "") {
// top.$.cookie('nfine_currentmoduleid', dataId, { path: "/" });
}
var dataUrl = $(this).attr('href');
var menuName = $.trim($(this).text());
var flag = true;
if (dataUrl == undefined || $.trim(dataUrl).length == 0) {
return false;
}
$('.menuTab').each(function () {
if ($(this).data('id') == dataUrl) {
if (!$(this).hasClass('active')) {
$(this).addClass('active').siblings('.menuTab')
.removeClass('active');
$.learuntab.scrollToTab(this);
$('.mainContent .LRADMS_iframe').each(
function () {
if ($(this).data('id') == dataUrl) {
$(this).show().siblings('.LRADMS_iframe').hide();
return false;
}
});
}
flag = false;
return false;
}
});
if (flag) {
var str = '<a href="javascript:;" class="active menuTab" data-id="'
+ dataUrl
+ '">'
+ menuName
+ ' <i class="fa fa-remove"></i></a>';
$('.menuTab').removeClass('active');
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>';
$('.mainContent').find('iframe.LRADMS_iframe').hide();
$('.mainContent').append(str1);
// $.loading(true);
$('.mainContent iframe:visible').load(function () {
// $.loading(false);
});
$('.menuTabs .page-tabs-content').append(str);
$.learuntab.scrollToTab($('.menuTab.active'));
}
return false;
},
scrollTabRight: function () {
var marginLeftVal = Math.abs(parseInt($('.page-tabs-content').css(
'margin-left')));
var tabOuterWidth = $.learuntab.calSumWidth($(".content-tabs").children().not(".menuTabs"));
var visibleWidth = $(".content-tabs").outerWidth(true) - tabOuterWidth;
var scrollVal = 0;
if ($(".page-tabs-content").width() < visibleWidth) {
return false;
} else {
var tabElement = $(".menuTab:first");
var offsetVal = 0;
while ((offsetVal + $(tabElement).outerWidth(true)) <= marginLeftVal) {
offsetVal += $(tabElement).outerWidth(true);
tabElement = $(tabElement).next();
}
offsetVal = 0;
while ((offsetVal + $(tabElement).outerWidth(true)) < (visibleWidth) && tabElement.length > 0) {
offsetVal += $(tabElement).outerWidth(true);
tabElement = $(tabElement).next();
}
scrollVal = $.learuntab.calSumWidth($(tabElement).prevAll());
if (scrollVal > 0) {
$('.page-tabs-content').animate({
marginLeft: 0 - scrollVal + 'px'
}, "fast");
}
}
},
scrollTabLeft: function () {
var marginLeftVal = Math.abs(parseInt($('.page-tabs-content').css('margin-left')));
var tabOuterWidth = $.learuntab.calSumWidth($(".content-tabs").children().not(".menuTabs"));
var visibleWidth = $(".content-tabs").outerWidth(true) - tabOuterWidth;
var scrollVal = 0;
if ($(".page-tabs-content").width() < visibleWidth) {
return false;
} else {
var tabElement = $(".menuTab:first");
var offsetVal = 0;
while ((offsetVal + $(tabElement).outerWidth(true)) <= marginLeftVal) {
offsetVal += $(tabElement).outerWidth(true);
tabElement = $(tabElement).next();
}
offsetVal = 0;
if ($.learuntab.calSumWidth($(tabElement).prevAll()) > visibleWidth) {
while ((offsetVal + $(tabElement).outerWidth(true)) < (visibleWidth) && tabElement.length > 0) {
offsetVal += $(tabElement).outerWidth(true);
tabElement = $(tabElement).prev();
}
scrollVal = $.learuntab.calSumWidth($(tabElement).prevAll());
}
}
$('.page-tabs-content').animate({
marginLeft: 0 - scrollVal + 'px'
}, "fast");
},
scrollToTab: function (element) {
var marginLeftVal = $.learuntab.calSumWidth($(element).prevAll()), marginRightVal = $.learuntab
.calSumWidth($(element).nextAll());
var tabOuterWidth = $.learuntab.calSumWidth($(".content-tabs")
.children().not(".menuTabs"));
var visibleWidth = $(".content-tabs").outerWidth(true)
- tabOuterWidth;
var scrollVal = 0;
if ($(".page-tabs-content").outerWidth() < visibleWidth) {
scrollVal = 0;
} else if (marginRightVal <= (visibleWidth - $(element).outerWidth(true) - $(element).next().outerWidth(true))) {
if ((visibleWidth - $(element).next().outerWidth(true)) > marginRightVal) {
scrollVal = marginLeftVal;
var tabElement = element;
while ((scrollVal - $(tabElement).outerWidth()) > ($(".page-tabs-content").outerWidth() - visibleWidth)) {
scrollVal -= $(tabElement).prev().outerWidth();
tabElement = $(tabElement).prev();
}
}
} else if (marginLeftVal > (visibleWidth - $(element).outerWidth(true) - $(element).prev().outerWidth(true))) {
scrollVal = marginLeftVal - $(element).prev().outerWidth(true);
}
$('.page-tabs-content').animate({
marginLeft: 0 - scrollVal + 'px'
}, "fast");
},
calSumWidth: function (element) {
var width = 0;
$(element).each(function () {
width += $(this).outerWidth(true);
});
return width;
},
init: function () {
$('.menuItem').on('click', $.learuntab.addTab);
$('.menuTabs').on('click', '.menuTab i', $.learuntab.closeTab);
$('.menuTabs').on('click', '.menuTab', $.learuntab.activeTab);
$('.tabLeft').on('click', $.learuntab.scrollTabLeft);
$('.tabRight').on('click', $.learuntab.scrollTabRight);
$('.tabReload').on('click', $.learuntab.refreshTab);
$('.tabCloseCurrent').on('click', function () {
$('.page-tabs-content').find('.active i').trigger("click");
});
$('.outBtn').on('click', function () {
$.ajax({
type: "POST",
dataType: "json",
data: null,
cache: false,
url: "../admin/out.json",
async: false,
success: function (data) {
if (data.error != null && data.error != "") {
alert(data.error);
} else {
window.location.href = "../../../admins/login.html";
}
}
});
});
$('.tabCloseAll').on(
'click',
function () {
$('.page-tabs-content').children("[data-id]").find('.fa-remove').each(function () {
$('.LRADMS_iframe[data-id="' + $(this).data('id') + '"]').remove();
$(this).parents('a').remove();
});
$('.page-tabs-content').children("[data-id]:first").each(function () {
$('.LRADMS_iframe[data-id="' + $(this).data('id') + '"]').show();
$(this).addClass("active");
});
$('.page-tabs-content').css("margin-left", "0");
});
$('.tabCloseOther').on('click', $.learuntab.closeOtherTabs);
$('.fullscreen').on('click', function () {
if (!$(this).attr('fullscreen')) {
$(this).attr('fullscreen', 'true');
$.learuntab.requestFullScreen();
} else {
$(this).removeAttr('fullscreen')
$.learuntab.exitFullscreen();
}
});
}
};
$.learunindex = {
load: function () {
$("body").removeClass("hold-transition")
$("#content-wrapper").find('.mainContent').height(
$(window).height() - 100);
$(window).resize(
function (e) {
$("#content-wrapper").find('.mainContent').height(
$(window).height() - 100);
});
$(".sidebar-toggle").click(function () {
if (!$("body").hasClass("sidebar-collapse")) {
$("body").addClass("sidebar-collapse");
} else {
$("body").removeClass("sidebar-collapse");
}
})
$(window).load(function () {
window.setTimeout(function () {
$('#ajax-loader').fadeOut();
}, 300);
});
},
jsonWhere: function (data, action) {
if (action == null)
return;
var reval = new Array();
$(data).each(function (i, v) {
if (action(v)) {
reval.push(v);
}
})
return reval;
},
loadMenu: function () {
var data = [
<au:requireResource name="基础资料">{
    "F_ModuleId": "1",
    "F_ParentId": "0",
    "F_EnCode": "SysManage",
    "F_FullName": "基础资料",
    "F_Icon": "fa fa-desktop",
    "F_UrlAddress": null,
    "F_Target": "expand",
    "F_IsMenu": 0,
    "F_AllowExpand": 1,
    "F_IsPublic": 0,
    "F_AllowEdit": null,
    "F_AllowDelete": null,
    "F_SortCode": 1,
    "F_DeleteMark": 0,
    "F_EnabledMark": 1,
    "F_Description": null,
    "F_CreateDate": null,
    "F_CreateUserId": null,
    "F_CreateUserName": null,
    "F_ModifyDate": "2016-10-12 14:05:33",
    "F_ModifyUserId": "System",
    "F_ModifyUserName": "超级管理员"
    }, {
    "F_ModuleId": "100001",
    "F_ParentId": "1",
    "F_EnCode": "Welcome",
    "F_FullName": "欢迎首页",
    "F_Icon": "fa fa-leaf",
    "F_UrlAddress": "default.jsp",
    "F_Target": "iframe",
    "F_IsMenu": 1,
    "F_AllowExpand": 1,
    "F_IsPublic": 0,
    "F_AllowEdit": null,
    "F_AllowDelete": null,
    "F_SortCode": 1,
    "F_DeleteMark": 0,
    "F_EnabledMark": 1,
    "F_Description": "欢迎首页",
    "F_CreateDate": "2016-10-12 14:05:33",
    "F_CreateUserId": "System",
    "F_CreateUserName": "超级管理员",
    "F_ModifyDate": "2016-10-12 14:05:33",
    "F_ModifyUserId": "System",
    "F_ModifyUserName": "超级管理员"
    }, <au:requireResource name="部门职员">{
        "F_ModuleId": "100002",
        "F_ParentId": "1",
        "F_EnCode": "AdminManage",
        "F_FullName": "部门职员",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "sys/admin.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "部门职员",
        "F_CreateDate": "2016-10-12 14:05:33",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="供应商管理">{
        "F_ModuleId": "100003",
        "F_ParentId": "1",
        "F_EnCode": "SupplierManage",
        "F_FullName": "供应商管理",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "sys/supplier.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "供应商管理",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="代码定义">{
        "F_ModuleId": "100004",
        "F_ParentId": "1",
        "F_EnCode": "SupplierManage",
        "F_FullName": "代码定义",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "sys/baseParame.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "代码定义",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="仓库管理">{
        "F_ModuleId": "100005",
        "F_ParentId": "1",
        "F_EnCode": "warehouseManage",
        "F_FullName": "仓库管理",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "sys/warehouse.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "仓库管理",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="仓库权限">{
        "F_ModuleId": "1000051",
        "F_ParentId": "1",
        "F_EnCode": "warehouseManage",
        "F_FullName": "仓库权限",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "auto/AdminXWarehouse.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "仓库权限",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="物料管理">{
        "F_ModuleId": "100006",
        "F_ParentId": "1",
        "F_EnCode": "goodsManage",
        "F_FullName": "物料管理",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "sys/goods.json",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "物料管理",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="估价单管理">{
        "F_ModuleId": "100006",
        "F_ParentId": "1",
        "F_EnCode": "goodsManage",
        "F_FullName": "估价单管理",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "sys/Evaluation.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "估价单管理",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="会计区间">{
        "F_ModuleId": "100007",
        "F_ParentId": "1",
        "F_EnCode": "sectionManage",
        "F_FullName": "会计区间",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "sys/section.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "会计区间",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="权限管理">{
        "F_ModuleId": "100008",
        "F_ParentId": "1",
        "F_EnCode": "resourceManage",
        "F_FullName": "权限管理",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "sys/resource.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "权限管理",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="亩均药量配置">{
        "F_ModuleId": "100009",
        "F_ParentId": "1",
        "F_EnCode": "MedicineConfig",
        "F_FullName": "亩均药量配置",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "limit/MedicineConfig.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "亩均药量配置",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="农户购买区域配置">{
        "F_ModuleId": "100010",
        "F_ParentId": "1",
        "F_EnCode": "AreaConfig",
        "F_FullName": "农户购买区域配置",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "limit/AreaConfig.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "农户购买区域配置",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="农户限额">{
        "F_ModuleId": "100011",
        "F_ParentId": "1",
        "F_EnCode": "FamerLimit",
        "F_FullName": "农户限额",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "limit/FamerLimit.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "农户限额",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="配送点限额">{
        "F_ModuleId": "100012",
        "F_ParentId": "1",
        "F_EnCode": "DeptLimit",
        "F_FullName": "配送点限额",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "limit/DeptLimit.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "配送点限额",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="通知公告">{
        "F_ModuleId": "100012",
        "F_ParentId": "1",
        "F_EnCode": "Notice",
        "F_FullName": "通知公告",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "sys/Notice.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "通知公告",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="农情信息">{
        "F_ModuleId": "100012",
        "F_ParentId": "1",
        "F_EnCode": "AgriculturalInfo",
        "F_FullName": "农情信息",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "sys/AgriculturalInfo.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "农情信息",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="配送大户修改">{
        "F_ModuleId": "100013",
        "F_ParentId": "1",
        "F_EnCode": "psdhxg",
        "F_FullName": "配送大户修改",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "sys/psdhxg.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "配送大户修改",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="本区农户">{
        "F_ModuleId": "100013",
        "F_ParentId": "1",
        "F_EnCode": "psdhxg",
        "F_FullName": "本区农户",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "limit/LocalArea.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "本区农户",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="客户管理">{
        "F_ModuleId": "100013",
        "F_ParentId": "1",
        "F_EnCode": "psdhxg",
        "F_FullName": "客户管理",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "sys/Customer.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "客户管理",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="基础物料">{
        "F_ModuleId": "100014",
        "F_ParentId": "1",
        "F_EnCode": "psdhxg",
        "F_FullName": "基础物料",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "sys/Materiel.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "基础物料",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="单机Bom">{
        "F_ModuleId": "100015",
        "F_ParentId": "1",
        "F_EnCode": "psdhxg",
        "F_FullName": "单机Bom",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "sys/Singlebom.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "单机Bom",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="员工管理">{
        "F_ModuleId": "100016",
        "F_ParentId": "1",
        "F_EnCode": "psdhxg",
        "F_FullName": "员工管理",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "sys/Staff.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "员工管理",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="客户资料">{
        "F_ModuleId": "100017",
        "F_ParentId": "1",
        "F_EnCode": "psdhxg",
        "F_FullName": "客户资料",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "sys/Customerinformation.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "客户资料",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="供应商资料">{
        "F_ModuleId": "100018",
        "F_ParentId": "1",
        "F_EnCode": "psdhxg",
        "F_FullName": "供应商资料",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "sys/Supplierinformation.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "客户资料",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="岗位信息管理">{
        "F_ModuleId": "100019",
        "F_ParentId": "1",
        "F_EnCode": "psdhxg",
        "F_FullName": "岗位信息管理",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "sys/Information.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "客户资料",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="技能等级管理">{
        "F_ModuleId": "100020",
        "F_ParentId": "1",
        "F_EnCode": "psdhxg",
        "F_FullName": "技能等级管理",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "sys/Skillgl.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "客户资料",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource></au:requireResource><au:requireResource name="商户管理">{
    "F_ModuleId": "2",
    "F_ParentId": "0",
    "F_EnCode": "sellerManage",
    "F_FullName": "商户管理",
    "F_Icon": "fa fa-desktop",
    "F_UrlAddress": null,
    "F_Target": "expand",
    "F_IsMenu": 0,
    "F_AllowExpand": 1,
    "F_IsPublic": 0,
    "F_AllowEdit": null,
    "F_AllowDelete": null,
    "F_SortCode": 1,
    "F_DeleteMark": 0,
    "F_EnabledMark": 1,
    "F_Description": null,
    "F_CreateDate": null,
    "F_CreateUserId": null,
    "F_CreateUserName": null,
    "F_ModifyDate": "2016-10-12 14:05:33",
    "F_ModifyUserId": "System",
    "F_ModifyUserName": "超级管理员"
    }, <au:requireResource name="商户资料">{
        "F_ModuleId": "200001",
        "F_ParentId": "2",
        "F_EnCode": "mySellerManage",
        "F_FullName": "商户资料",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "sell/seller.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "商户资料",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource></au:requireResource><au:requireResource name="领料管理">{
    "F_ModuleId": "3",
    "F_ParentId": "0",
    "F_EnCode": "FarmerManage",
    "F_FullName": "领料管理",
    "F_Icon": "fa fa-desktop",
    "F_UrlAddress": null,
    "F_Target": "expand",
    "F_IsMenu": 0,
    "F_AllowExpand": 1,
    "F_IsPublic": 0,
    "F_AllowEdit": null,
    "F_AllowDelete": null,
    "F_SortCode": 1,
    "F_DeleteMark": 0,
    "F_EnabledMark": 1,
    "F_Description": null,
    "F_CreateDate": null,
    "F_CreateUserId": null,
    "F_CreateUserName": null,
    "F_ModifyDate": "2016-10-12 14:05:33",
    "F_ModifyUserId": "System",
    "F_ModifyUserName": "超级管理员"
    }, <au:requireResource name="员工资料">{
        "F_ModuleId": "300001",
        "F_ParentId": "3",
        "F_EnCode": "myFarmerManage",
        "F_FullName": "员工资料",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "farm/farmer.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "员工资料",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="本工领料">{
        "F_ModuleId": "300008",
        "F_ParentId": "3",
        "F_EnCode": "myFarmerManage",
        "F_FullName": "本工领料",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "farm/picking.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "本工领料",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="外协领料">{
        "F_ModuleId": "300008",
        "F_ParentId": "3",
        "F_EnCode": "myFarmerManage",
        "F_FullName": "外协领料",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "farm/wpicking.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "外协领料",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource>
    <au:requireResource name="领料退货">{
        "F_ModuleId": "300008",
        "F_ParentId": "3",
        "F_EnCode": "myFarmerManage",
        "F_FullName": "领料退货",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "farm/llth.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "领料退货",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource></au:requireResource><au:requireResource name="采购单管理">{
    "F_ModuleId": "11",
    "F_ParentId": "0",
    "F_EnCode": "cgdglManage",
    "F_FullName": "采购单管理",
    "F_Icon": "fa fa-desktop",
    "F_UrlAddress": null,
    "F_Target": "expand",
    "F_IsMenu": 0,
    "F_AllowExpand": 1,
    "F_IsPublic": 0,
    "F_AllowEdit": null,
    "F_AllowDelete": null,
    "F_SortCode": 1,
    "F_DeleteMark": 0,
    "F_EnabledMark": 1,
    "F_Description": null,
    "F_CreateDate": null,
    "F_CreateUserId": null,
    "F_CreateUserName": null,
    "F_ModifyDate": "2016-10-12 14:05:33",
    "F_ModifyUserId": "System",
    "F_ModifyUserName": "超级管理员"
    },<au:requireResource name="采购单">{
        "F_ModuleId": "1100001",
        "F_ParentId": "11",
        "F_EnCode": "cgdglcgdglManage",
        "F_FullName": "采购单",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/dhgl.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "采购单",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="采购入库">{
        "F_ModuleId": "1100002",
        "F_ParentId": "11",
        "F_EnCode": "cgrklcgdglManage",
        "F_FullName": "采购入库",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/cgrk.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "采购入库",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        },</au:requireResource>
    <au:requireResource name="采购退单">{
        "F_ModuleId": "1100003",
        "F_ParentId": "11",
        "F_EnCode": "cgjdManage",
        "F_FullName": "采购退单",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/cgtd.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "采购退单",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource>
</au:requireResource><au:requireResource name="生产管理">{
    "F_ModuleId": "10",
    "F_ParentId": "0",
    "F_EnCode": "FarmerManage",
    "F_FullName": "生产管理",
    "F_Icon": "fa fa-desktop",
    "F_UrlAddress": null,
    "F_Target": "expand",
    "F_IsMenu": 0,
    "F_AllowExpand": 1,
    "F_IsPublic": 0,
    "F_AllowEdit": null,
    "F_AllowDelete": null,
    "F_SortCode": 1,
    "F_DeleteMark": 0,
    "F_EnabledMark": 1,
    "F_Description": null,
    "F_CreateDate": null,
    "F_CreateUserId": null,
    "F_CreateUserName": null,
    "F_ModifyDate": "2016-10-12 14:05:33",
    "F_ModifyUserId": "System",
    "F_ModifyUserName": "超级管理员"
    },<au:requireResource name="本工生产">{
        "F_ModuleId": "1000001",
        "F_ParentId": "10",
        "F_EnCode": "myFarmerManage",
        "F_FullName": "本工生产",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "farm/bgsc.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "本工领料",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="外协生产">{
        "F_ModuleId": "1000002",
        "F_ParentId": "10",
        "F_EnCode": "myFarmerManage",
        "F_FullName": "外协生产",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "farm/wxsc.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "外协生产",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="盐城农户资料">{
        "F_ModuleId": "300002",
        "F_ParentId": "3",
        "F_EnCode": "myFarmerManage",
        "F_FullName": "农户资料",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "farm/farmer_yancheng.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "农户资料",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource></au:requireResource><au:requireResource name="采购管理">{
    "F_ModuleId": "4",
    "F_ParentId": "0",
    "F_EnCode": "PurchaseManage",
    "F_FullName": "采购管理",
    "F_Icon": "fa fa-desktop",
    "F_UrlAddress": null,
    "F_Target": "expand",
    "F_IsMenu": 0,
    "F_AllowExpand": 1,
    "F_IsPublic": 0,
    "F_AllowEdit": null,
    "F_AllowDelete": null,
    "F_SortCode": 1,
    "F_DeleteMark": 0,
    "F_EnabledMark": 1,
    "F_Description": null,
    "F_CreateDate": null,
    "F_CreateUserId": null,
    "F_CreateUserName": null,
    "F_ModifyDate": "2016-10-12 14:05:33",
    "F_ModifyUserId": "System",
    "F_ModifyUserName": "超级管理员"
    }, <au:requireResource name="要货单">{
        "F_ModuleId": "400001",
        "F_ParentId": "4",
        "F_EnCode": "yhdManage",
        "F_FullName": "要货单",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/yhd.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "要货单",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="采购进单">{
        "F_ModuleId": "400002",
        "F_ParentId": "4",
        "F_EnCode": "cgjdManage",
        "F_FullName": "采购进单",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/cgjd.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "采购进单",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="采购外协">{
        "F_ModuleId": "400002",
        "F_ParentId": "4",
        "F_EnCode": "cgjdManage",
        "F_FullName": "采购外协",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/cgwx.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "采购外协",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="采购退单">{
        "F_ModuleId": "400003",
        "F_ParentId": "4",
        "F_EnCode": "cgjdManage",
        "F_FullName": "采购退单",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/cgtd.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "采购退单",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="吴中计划单">{
        "F_ModuleId": "400004",
        "F_ParentId": "4",
        "F_EnCode": "jhdManage",
        "F_FullName": "预采购单",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/jhd_wuzhong.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "预采购单",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="吴中采购进单">{
        "F_ModuleId": "400005",
        "F_ParentId": "4",
        "F_EnCode": "cgjdManage",
        "F_FullName": "采购进单",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/cgjd_wuzhong.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "采购进单",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource></au:requireResource><au:requireResource name="销售管理">{
    "F_ModuleId": "5",
    "F_ParentId": "0",
    "F_EnCode": "xsManage",
    "F_FullName": "销售管理",
    "F_Icon": "fa fa-desktop",
    "F_UrlAddress": null,
    "F_Target": "expand",
    "F_IsMenu": 0,
    "F_AllowExpand": 1,
    "F_IsPublic": 0,
    "F_AllowEdit": null,
    "F_AllowDelete": null,
    "F_SortCode": 1,
    "F_DeleteMark": 0,
    "F_EnabledMark": 1,
    "F_Description": null,
    "F_CreateDate": null,
    "F_CreateUserId": null,
    "F_CreateUserName": null,
    "F_ModifyDate": "2016-10-12 14:05:33",
    "F_ModifyUserId": "System",
    "F_ModifyUserName": "超级管理员"
    }, <au:requireResource name="欠款收款">{
        "F_ModuleId": "500001",
        "F_ParentId": "5",
        "F_EnCode": "qkskManage",
        "F_FullName": "欠款收款",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/qksk.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "欠款收款",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="销售">{
        "F_ModuleId": "500001",
        "F_ParentId": "5",
        "F_EnCode": "xsdManage",
        "F_FullName": "销售",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/xsd.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "销售",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="销售退货">{
        "F_ModuleId": "500002",
        "F_ParentId": "5",
        "F_EnCode": "xsthdManage",
        "F_FullName": "销售退货单",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/xsthd.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "销售退货单",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="销售订单">{
        "F_ModuleId": "500003",
        "F_ParentId": "5",
        "F_EnCode": "xsddManage",
        "F_FullName": "销售订单",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/xsdd.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "销售订单",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource></au:requireResource><au:requireResource name="配送管理">{
    "F_ModuleId": "6",
    "F_ParentId": "0",
    "F_EnCode": "psManage",
    "F_FullName": "配送管理",
    "F_Icon": "fa fa-desktop",
    "F_UrlAddress": null,
    "F_Target": "expand",
    "F_IsMenu": 0,
    "F_AllowExpand": 1,
    "F_IsPublic": 0,
    "F_AllowEdit": null,
    "F_AllowDelete": null,
    "F_SortCode": 1,
    "F_DeleteMark": 0,
    "F_EnabledMark": 1,
    "F_Description": null,
    "F_CreateDate": null,
    "F_CreateUserId": null,
    "F_CreateUserName": null,
    "F_ModifyDate": "2016-10-12 14:05:33",
    "F_ModifyUserId": "System",
    "F_ModifyUserName": "超级管理员"
    }, <au:requireResource name="配送单">{
        "F_ModuleId": "600001",
        "F_ParentId": "6",
        "F_EnCode": "psdManage",
        "F_FullName": "配送单",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/psd.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "配送单",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="盐城配送单">{
        "F_ModuleId": "600006",
        "F_ParentId": "6",
        "F_EnCode": "psdManage",
        "F_FullName": "配送单",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/psd_yancheng.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "配送单",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="退货单">{
        "F_ModuleId": "600002",
        "F_ParentId": "6",
        "F_EnCode": "thdManage",
        "F_FullName": "退货单",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/psthd.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "退货单",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="仓库调拨单">{
        "F_ModuleId": "600003",
        "F_ParentId": "6",
        "F_EnCode": "thdManage",
        "F_FullName": "仓库调拨单",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/ckdbd.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "仓库调拨单",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="吴中预出库单">{
        "F_ModuleId": "600004",
        "F_ParentId": "6",
        "F_EnCode": "yckdManage",
        "F_FullName": "预出库单",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/yckd_wuzhong.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "预出库单",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="吴中出库单">{
        "F_ModuleId": "600005",
        "F_ParentId": "6",
        "F_EnCode": "ckdManage",
        "F_FullName": "出库单",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/ckd_wuzhong.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "出库单",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource></au:requireResource><au:requireResource name="调拨管理">{
    "F_ModuleId": "10",
    "F_ParentId": "0",
    "F_EnCode": "dbManage",
    "F_FullName": "调拨管理",
    "F_Icon": "fa fa-desktop",
    "F_UrlAddress": null,
    "F_Target": "expand",
    "F_IsMenu": 0,
    "F_AllowExpand": 1,
    "F_IsPublic": 0,
    "F_AllowEdit": null,
    "F_AllowDelete": null,
    "F_SortCode": 1,
    "F_DeleteMark": 0,
    "F_EnabledMark": 1,
    "F_Description": null,
    "F_CreateDate": null,
    "F_CreateUserId": null,
    "F_CreateUserName": null,
    "F_ModifyDate": "2016-10-12 14:05:33",
    "F_ModifyUserId": "System",
    "F_ModifyUserName": "超级管理员"
    }, <au:requireResource name="调拨出库">{
        "F_ModuleId": "1000001",
        "F_ParentId": "10",
        "F_EnCode": "psdManage",
        "F_FullName": "调拨出库",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/dcd.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "调拨出库",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="调拨收货">{
        "F_ModuleId": "1000002",
        "F_ParentId": "10",
        "F_EnCode": "thdManage",
        "F_FullName": "调拨收货",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/drd.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "调拨收货",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource></au:requireResource><au:requireResource name="库存管理">{
    "F_ModuleId": "7",
    "F_ParentId": "0",
    "F_EnCode": "kcManage",
    "F_FullName": "库存管理",
    "F_Icon": "fa fa-desktop",
    "F_UrlAddress": null,
    "F_Target": "expand",
    "F_IsMenu": 0,
    "F_AllowExpand": 1,
    "F_IsPublic": 0,
    "F_AllowEdit": null,
    "F_AllowDelete": null,
    "F_SortCode": 1,
    "F_DeleteMark": 0,
    "F_EnabledMark": 1,
    "F_Description": null,
    "F_CreateDate": null,
    "F_CreateUserId": null,
    "F_CreateUserName": null,
    "F_ModifyDate": "2016-10-12 14:05:33",
    "F_ModifyUserId": "System",
    "F_ModifyUserName": "超级管理员"
    },<au:requireResource name="装车单">{
        "F_ModuleId": "700001",
        "F_ParentId": "7",
        "F_EnCode": "yhdManage",
        "F_FullName": "装车单",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/zcd.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "装车单",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="发货清单">{
        "F_ModuleId": "700002",
        "F_ParentId": "7",
        "F_EnCode": "yhdManage",
        "F_FullName": "发货清单",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/fhqd.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "发货清单",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="盘盈入库">{
        "F_ModuleId": "700003",
        "F_ParentId": "7",
        "F_EnCode": "yhdManage",
        "F_FullName": "盘盈入库",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/pyrk.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "盘盈入库",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="盘亏出库">{
        "F_ModuleId": "700004",
        "F_ParentId": "7",
        "F_EnCode": "pkrkManage",
        "F_FullName": "盘亏出库",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/pkck.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "盘亏入库",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="装卸单">{
        "F_ModuleId": "700003",
        "F_ParentId": "7",
        "F_EnCode": "handingOrderManage",
        "F_FullName": "装卸单",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/HandingOrder.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "装卸单",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource>
    <au:requireResource name="装车退货单">{
        "F_ModuleId": "700006",
        "F_ParentId": "7",
        "F_EnCode": "handingOrderManage",
        "F_FullName": "装车退货单",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/zcth.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "装车退货单",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource></au:requireResource><au:requireResource name="报废管理">{
    "F_ModuleId": "12",
    "F_ParentId": "0",
    "F_EnCode": "bfManage",
    "F_FullName": "报废管理",
    "F_Icon": "fa fa-desktop",
    "F_UrlAddress": null,
    "F_Target": "expand",
    "F_IsMenu": 0,
    "F_AllowExpand": 1,
    "F_IsPublic": 0,
    "F_AllowEdit": null,
    "F_AllowDelete": null,
    "F_SortCode": 1,
    "F_DeleteMark": 0,
    "F_EnabledMark": 1,
    "F_Description": null,
    "F_CreateDate": null,
    "F_CreateUserId": null,
    "F_CreateUserName": null,
    "F_ModifyDate": "2016-10-12 14:05:33",
    "F_ModifyUserId": "System",
    "F_ModifyUserName": "超级管理员"
    },<au:requireResource name="报废单">{
        "F_ModuleId": "1200001",
        "F_ParentId": "12",
        "F_EnCode": "bfdManage",
        "F_FullName": "报废单",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/bfd.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "报废单",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource></au:requireResource><au:requireResource name="售后管理">{
    "F_ModuleId": "20",
    "F_ParentId": "0",
    "F_EnCode": "bfManage",
    "F_FullName": "售后管理",
    "F_Icon": "fa fa-desktop",
    "F_UrlAddress": null,
    "F_Target": "expand",
    "F_IsMenu": 0,
    "F_AllowExpand": 1,
    "F_IsPublic": 0,
    "F_AllowEdit": null,
    "F_AllowDelete": null,
    "F_SortCode": 1,
    "F_DeleteMark": 0,
    "F_EnabledMark": 1,
    "F_Description": null,
    "F_CreateDate": null,
    "F_CreateUserId": null,
    "F_CreateUserName": null,
    "F_ModifyDate": "2016-10-12 14:05:33",
    "F_ModifyUserId": "System",
    "F_ModifyUserName": "超级管理员"
    },<au:requireResource name="问题管理">{
        "F_ModuleId": "2000001",
        "F_ParentId": "20",
        "F_EnCode": "bfdManage",
        "F_FullName": "问题管理",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/Wtgl.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "问题管理",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        },</au:requireResource><au:requireResource name="工单管理">{
        "F_ModuleId": "2000002",
        "F_ParentId": "20",
        "F_EnCode": "bfdManage",
        "F_FullName": "工单管理",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/Gdgl.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "工单管理",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        },</au:requireResource><au:requireResource name="评价管理">{
        "F_ModuleId": "2000003",
        "F_ParentId": "20",
        "F_EnCode": "bfdManage",
        "F_FullName": "评价管理",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/EvaluateGdgl.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "评价管理",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        },</au:requireResource><au:requireResource name="注册用户">{
        "F_ModuleId": "2000004",
        "F_ParentId": "20",
        "F_EnCode": "bfdManage",
        "F_FullName": "注册用户",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/WeixinUser.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "注册用户",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        },</au:requireResource><au:requireResource name="客户管理">{
        "F_ModuleId": "2000005",
        "F_ParentId": "20",
        "F_EnCode": "bfdManage",
        "F_FullName": "客户管理",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/Client.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "客户管理",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        },</au:requireResource><au:requireResource name="系统设置">{
        "F_ModuleId": "2000005",
        "F_ParentId": "20",
        "F_EnCode": "bfdManage",
        "F_FullName": "系统设置",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/xtsz.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "系统设置",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        },</au:requireResource></au:requireResource><au:requireResource name="财务管理">{
    "F_ModuleId": "8",
    "F_ParentId": "0",
    "F_EnCode": "PurchaseManage",
    "F_FullName": "财务管理",
    "F_Icon": "fa fa-desktop",
    "F_UrlAddress": null,
    "F_Target": "expand",
    "F_IsMenu": 0,
    "F_AllowExpand": 1,
    "F_IsPublic": 0,
    "F_AllowEdit": null,
    "F_AllowDelete": null,
    "F_SortCode": 1,
    "F_DeleteMark": 0,
    "F_EnabledMark": 1,
    "F_Description": null,
    "F_CreateDate": null,
    "F_CreateUserId": null,
    "F_CreateUserName": null,
    "F_ModifyDate": "2016-10-12 14:05:33",
    "F_ModifyUserId": "System",
    "F_ModifyUserName": "超级管理员"
    }, <au:requireResource name="收款单">{
        "F_ModuleId": "800002",
        "F_ParentId": "8",
        "F_EnCode": "skdManage",
        "F_FullName": "收款单",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/skd.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "收款单",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="付款单">{
        "F_ModuleId": "800003",
        "F_ParentId": "8",
        "F_EnCode": "cgjdManage",
        "F_FullName": "付款单",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/fkd.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "付款单",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="发票管理">{
        "F_ModuleId": "800004",
        "F_ParentId": "8",
        "F_EnCode": "billManage",
        "F_FullName": "发票管理",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/Bill.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "发票管理",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="用友凭证">{
        "F_ModuleId": "800004",
        "F_ParentId": "8",
        "F_EnCode": "billManage",
        "F_FullName": "用友凭证",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/yypz.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "用友凭证",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="吴中预付款付款">{
        "F_ModuleId": "800005",
        "F_ParentId": "8",
        "F_EnCode": "yfkfkManage",
        "F_FullName": "预付款付款",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/yfkfk_wuzhong.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "预付款付款",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="吴中预收款收款">{
        "F_ModuleId": "800006",
        "F_ParentId": "8",
        "F_EnCode": "yskskManage",
        "F_FullName": "预收款收款",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "business/ysksk_wuzhong.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "预收款收款",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource></au:requireResource><au:requireResource name="回收管理">{
    "F_ModuleId": "11",
    "F_ParentId": "0",
    "F_EnCode": "RecoveryManage",
    "F_FullName": "回收管理",
    "F_Icon": "fa fa-desktop",
    "F_UrlAddress": null,
    "F_Target": "expand",
    "F_IsMenu": 0,
    "F_AllowExpand": 1,
    "F_IsPublic": 0,
    "F_AllowEdit": null,
    "F_AllowDelete": null,
    "F_SortCode": 1,
    "F_DeleteMark": 0,
    "F_EnabledMark": 1,
    "F_Description": null,
    "F_CreateDate": null,
    "F_CreateUserId": null,
    "F_CreateUserName": null,
    "F_ModifyDate": "2016-10-12 14:05:33",
    "F_ModifyUserId": "System",
    "F_ModifyUserName": "超级管理员"
    }, <au:requireResource name="回收申请">{
        "F_ModuleId": "1100001",
        "F_ParentId": "11",
        "F_EnCode": "RecycleApplyManage",
        "F_FullName": "回收接收单",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "recycle/RecycleApply.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "回收申请",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="回收材料信息">{
        "F_ModuleId": "1100002",
        "F_ParentId": "11",
        "F_EnCode": "RecycleMateriaManage",
        "F_FullName": "回收材料信息",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "recycle/RecycleMateria.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "回收材料信息",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="回收单">{
        "F_ModuleId": "1100003",
        "F_ParentId": "11",
        "F_EnCode": "RecycleOrderManage",
        "F_FullName": "回收结算单",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "recycle/RecycleOrder.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "回收单",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="出库单">{
        "F_ModuleId": "1100004",
        "F_ParentId": "11",
        "F_EnCode": "OutboundOrderManage",
        "F_FullName": "出库单",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "recycle/OutboundOrder.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "出库单",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="大件出库单">{
        "F_ModuleId": "1100005",
        "F_ParentId": "11",
        "F_EnCode": "BigOutboundOrderManage",
        "F_FullName": "大件出库单",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "recycle/BigOutboundOrder.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "大件出库单",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="农户回收">{
        "F_ModuleId": "1100006",
        "F_ParentId": "11",
        "F_EnCode": "FarmerRecycleManage",
        "F_FullName": "农户回收",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "recycle/FarmerRecycle.jsp",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "农户回收",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="库位管理">{
        "F_ModuleId": "18",
        "F_ParentId": "0",
        "F_EnCode": "FarmerManage",
        "F_FullName": "库位管理",
        "F_Icon": "fa fa-desktop",
        "F_UrlAddress": null,
        "F_Target": "expand",
        "F_IsMenu": 0,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": null,
        "F_CreateDate": null,
        "F_CreateUserId": null,
        "F_CreateUserName": null,
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        },</au:requireResource><au:requireResource name="货架管理">{
        "F_ModuleId": "19",
        "F_ParentId": "0",
        "F_EnCode": "FarmerManage",
        "F_FullName": "货架管理",
        "F_Icon": "fa fa-desktop",
        "F_UrlAddress": null,
        "F_Target": "expand",
        "F_IsMenu": 0,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": null,
        "F_CreateDate": null,
        "F_CreateUserId": null,
        "F_CreateUserName": null,
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        },</au:requireResource>

</au:requireResource><au:requireResource name="报表中心">{
    "F_ModuleId": "9",
    "F_ParentId": "0",
    "F_EnCode": "PurchaseManage",
    "F_FullName": "报表中心",
    "F_Icon": "fa fa-desktop",
    "F_UrlAddress": null,
    "F_Target": "expand",
    "F_IsMenu": 0,
    "F_AllowExpand": 1,
    "F_IsPublic": 0,
    "F_AllowEdit": null,
    "F_AllowDelete": null,
    "F_SortCode": 1,
    "F_DeleteMark": 0,
    "F_EnabledMark": 1,
    "F_Description": null,
    "F_CreateDate": null,
    "F_CreateUserId": null,
    "F_CreateUserName": null,
    "F_ModifyDate": "2016-10-12 14:05:33",
    "F_ModifyUserId": "System",
    "F_ModifyUserName": "超级管理员"
    }, <au:requireResource name="进货汇总表">{
        "F_ModuleId": "900002",
        "F_ParentId": "9",
        "F_EnCode": "jhhzbManage",
        "F_FullName": "进货汇总表",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/jhhzb.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "进货汇总表",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="配送明细表">{
        "F_ModuleId": "900003",
        "F_ParentId": "9",
        "F_EnCode": "pshzbManage",
        "F_FullName": "配送明细表",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/psmxb.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "配送明细表",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="进货明细表">{
        "F_ModuleId": "900004",
        "F_ParentId": "9",
        "F_EnCode": "jhmxbManage",
        "F_FullName": "进货明细表",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/jhmxb.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "进货明细表",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="配送汇总表(员工)">{
        "F_ModuleId": "900005",
        "F_ParentId": "9",
        "F_EnCode": "jhmxbManage",
        "F_FullName": "配送汇总表(员工)",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/pshzbkh.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "进货明细表",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="配送汇总表(商品)">{
        "F_ModuleId": "900006",
        "F_ParentId": "9",
        "F_EnCode": "jhmxbManage",
        "F_FullName": "配送汇总表(商品)",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/pshzbsp.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "配送汇总表",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="配送明细表(商品)">{
        "F_ModuleId": "900007",
        "F_ParentId": "9",
        "F_EnCode": "jhmxbManage",
        "F_FullName": "配送明细表(商品)",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/psmxbsp.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "配送汇总表",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="配送明细表(商户)">{
        "F_ModuleId": "900008",
        "F_ParentId": "9",
        "F_EnCode": "jhmxbManage",
        "F_FullName": "配送明细表(商户)",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/psmxbsh.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "配送明细表",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        },</au:requireResource><au:requireResource name="配送明细表商户(中心)">{
        "F_ModuleId": "900008",
        "F_ParentId": "9",
        "F_EnCode": "jhmxbManage",
        "F_FullName": "配送明细表商户(中心)",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/psmxbshzx.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "配送明细表商户(中心)",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="仓库库存表">{
        "F_ModuleId": "900009",
        "F_ParentId": "9",
        "F_EnCode": "jhmxbManage",
        "F_FullName": "仓库库存表",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/ckkcb.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "仓库库存表",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="配送站库存表">{
        "F_ModuleId": "900010",
        "F_ParentId": "9",
        "F_EnCode": "jhmxbManage",
        "F_FullName": "配送站库存表",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/pszkcb.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "配送站库存表",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="销售明细表">{
        "F_ModuleId": "900010",
        "F_ParentId": "9",
        "F_EnCode": "jhmxbManage",
        "F_FullName": "销售明细表",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/xsmxb.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "销售明细表",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="总部进销存报表">{
        "F_ModuleId": "900011",
        "F_ParentId": "9",
        "F_EnCode": "zbjxcManage",
        "F_FullName": "总部进销存报表",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/zbjxc.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "总部进销存报表",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="分公司进销存报表">{
        "F_ModuleId": "900011",
        "F_ParentId": "9",
        "F_EnCode": "zbjxcManage",
        "F_FullName": "分公司进销存报表",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/fgsjxc.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "分公司进销存报表",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="配送点进销存报表">{
        "F_ModuleId": "900012",
        "F_ParentId": "9",
        "F_EnCode": "psdjxcManage",
        "F_FullName": "配送点进销存报表",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/psdjxc.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "配送点进销存报表",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="应收总账">{
        "F_ModuleId": "900013",
        "F_ParentId": "9",
        "F_EnCode": "yszzManage",
        "F_FullName": "应收总账",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/yszz.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "应收总账",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="应收明细">{
        "F_ModuleId": "900014",
        "F_ParentId": "9",
        "F_EnCode": "ysmxManage",
        "F_FullName": "应收明细",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/ysmx.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "应收明细",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="应付账款总账">{
        "F_ModuleId": "900009",
        "F_ParentId": "9",
        "F_EnCode": "jhmxbManage",
        "F_FullName": "应付账款总账",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/yfzkzz.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "应付账款总账",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="应付明细">{
        "F_ModuleId": "900014",
        "F_ParentId": "9",
        "F_EnCode": "yfmxManage",
        "F_FullName": "应付明细",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/yfmx.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "应付明细",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        },</au:requireResource><au:requireResource name="销售汇总表(商户)">{
        "F_ModuleId": "900015",
        "F_ParentId": "9",
        "F_EnCode": "yfmxManage",
        "F_FullName": "销售汇总表(商户)",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/xshzbsh.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }, </au:requireResource><au:requireResource name="销售明细表(商户)">{
        "F_ModuleId": "900016",
        "F_ParentId": "9",
        "F_EnCode": "yfmxManage",
        "F_FullName": "销售明细表(商户)",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/xsmxbsh.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        },</au:requireResource><au:requireResource name="区域田亩明细表">{
        "F_ModuleId": "900018",
        "F_ParentId": "9",
        "F_EnCode": "yfmxManage",
        "F_FullName": "区域田亩明细表",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/qytmmxb.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        },</au:requireResource><au:requireResource name="配送金额汇总表">{
        "F_ModuleId": "900016",
        "F_ParentId": "9",
        "F_EnCode": "yfmxManage",
        "F_FullName": "配送金额汇总表",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/psjehzb.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        },</au:requireResource><au:requireResource name="计件工资汇总表">{
        "F_ModuleId": "900017",
        "F_ParentId": "9",
        "F_EnCode": "yfmxManage",
        "F_FullName": "计件工资汇总表",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/jjgzhzb.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        },</au:requireResource><au:requireResource name="计件工资明细表">{
        "F_ModuleId": "900018",
        "F_ParentId": "9",
        "F_EnCode": "yfmxManage",
        "F_FullName": "计件工资明细表",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/jjgzmxb.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        },</au:requireResource><au:requireResource name="生产报表">{
        "F_ModuleId": "900019",
        "F_ParentId": "9",
        "F_EnCode": "yfmxManage",
        "F_FullName": "生产报表",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/scbb.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        },</au:requireResource><au:requireResource name="领料报表">{
        "F_ModuleId": "900020",
        "F_ParentId": "9",
        "F_EnCode": "yfmxManage",
        "F_FullName": "领料报表",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/llbb.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        },</au:requireResource><au:requireResource name="生产汇总表">{
        "F_ModuleId": "900021",
        "F_ParentId": "9",
        "F_EnCode": "yfmxManage",
        "F_FullName": "生产汇总表",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/schzb.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        },</au:requireResource><au:requireResource name="领料汇总表">{
        "F_ModuleId": "900022",
        "F_ParentId": "9",
        "F_EnCode": "yfmxManage",
        "F_FullName": "领料汇总表",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/llhzb.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        },</au:requireResource><au:requireResource name="生产明细表">{
        "F_ModuleId": "900023",
        "F_ParentId": "9",
        "F_EnCode": "yfmxManage",
        "F_FullName": "生产明细表",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/scmxb.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        },</au:requireResource><au:requireResource name="领料明细表">{
        "F_ModuleId": "900024",
        "F_ParentId": "9",
        "F_EnCode": "yfmxManage",
        "F_FullName": "领料明细表",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/llmxb.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        },</au:requireResource><au:requireResource name="采购汇总表">{
        "F_ModuleId": "900025",
        "F_ParentId": "9",
        "F_EnCode": "yfmxManage",
        "F_FullName": "采购汇总表",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/cghzb.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        },</au:requireResource><au:requireResource name="采购明细表">{
        "F_ModuleId": "900026",
        "F_ParentId": "9",
        "F_EnCode": "yfmxManage",
        "F_FullName": "采购明细表",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/cgmxb.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        },</au:requireResource><au:requireResource name="入库明细表">{
        "F_ModuleId": "900027",
        "F_ParentId": "9",
        "F_EnCode": "yfmxManage",
        "F_FullName": "入库明细表",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/rkmxb.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        },</au:requireResource><au:requireResource name="出库明细表">{
        "F_ModuleId": "900028",
        "F_ParentId": "9",
        "F_EnCode": "yfmxManage",
        "F_FullName": "出库明细表",
        "F_Icon": "fa fa-leaf",
        "F_UrlAddress": "report/ckmxb.html",
        "F_Target": "iframe",
        "F_IsMenu": 1,
        "F_AllowExpand": 1,
        "F_IsPublic": 0,
        "F_AllowEdit": null,
        "F_AllowDelete": null,
        "F_SortCode": 1,
        "F_DeleteMark": 0,
        "F_EnabledMark": 1,
        "F_Description": "",
        "F_CreateDate": "2016-10-12 14:38:20",
        "F_CreateUserId": "System",
        "F_CreateUserName": "超级管理员",
        "F_ModifyDate": "2016-10-12 14:05:33",
        "F_ModifyUserId": "System",
        "F_ModifyUserName": "超级管理员"
        }</au:requireResource></au:requireResource>];
var _html = "";
$.each(data, function (i) {
var row = data[i];
if (row.F_ParentId == "0") {
if (i == 0) {
_html += '<li class="treeview active">';
} else {
_html += '<li class="treeview">';
}
_html += '<a href="#">'
_html += '<i class="'
+ row.F_Icon
+ '"></i><span>'
+ row.F_FullName
+ '</span><i class="fa fa-angle-left pull-right"></i>'
_html += '</a>'
var childNodes = $.learunindex.jsonWhere(
data,
function (v) {
return v.F_ParentId == row.F_ModuleId
});
if (childNodes.length > 0) {
_html += '<ul class="treeview-menu">';
$.each(childNodes, function (i) {
var subrow = childNodes[i];
var subchildNodes = $.learunindex.jsonWhere(
data,
function (v) {
return v.F_ParentId == subrow.F_ModuleId
});
_html += '<li>';
if (subchildNodes.length > 0) {
_html += '<a href="#"><i class="'
+ subrow.F_Icon
+ '"></i>'
+ subrow.F_FullName
+ '';
_html += '<i class="fa fa-angle-left pull-right"></i></a>';
_html += '<ul class="treeview-menu">';
$.each(subchildNodes, function (i) {
var subchildNodesrow = subchildNodes[i];
_html += '<li><a class="menuItem" data-id="'
+ subrow.F_ModuleId
+ '" href="'
+ subrow.F_UrlAddress
+ '"><i class="'
+ subchildNodesrow.F_Icon
+ '"></i>'
+ subchildNodesrow.F_FullName
+ '</a></li>';
});
_html += '</ul>';

} else {
_html += '<a class="menuItem" data-id="'
+ subrow.F_ModuleId
+ '" href="'
+ subrow.F_UrlAddress
+ '"><i class="'
+ subrow.F_Icon
+ '"></i>'
+ subrow.F_FullName
+ '</a>';
}
_html += '</li>';
});
_html += '</ul>';
}
_html += '</li>'
}
});
$("#sidebar-menu").append(_html);
$("#sidebar-menu li a").click(function () {
var d = $(this), e = d.next();
if (e.is(".treeview-menu") && e.is(":visible")) {
e.slideUp(500, function () {
e.removeClass("menu-open")
}), e.parent("li").removeClass("active")
} else if (e.is(".treeview-menu")
&& !e.is(":visible")) {
var f = d.parents("ul").first(), g = f.find("ul:visible").slideUp(500);
g.removeClass("menu-open");
var h = d.parent("li");
e.slideDown(500, function () {
e.addClass("menu-open"),
f.find("li.active").removeClass("active"),
h.addClass("active");

var _height1 = $(window).height() - $("#sidebar-menu >li.active").position().top - 41;
var _height2 = $("#sidebar-menu li > ul.menu-open").height() + 10
if (_height2 > _height1) {
$("#sidebar-menu >li > ul.menu-open").css({
overflow: "auto",
height: _height1
})
}
})
}
e.is(".treeview-menu");
});
}
};
$(function () {
$.learunindex.load();
$.learunindex.loadMenu();
$.learuntab.init();
});
})(jQuery);

有这么写js的吗?
从数据库中找出来,遍历它不香吗?
这个谁这么牛逼?
写出这么恶心的吗?
而且访问起来超级慢

猜你喜欢

转载自blog.csdn.net/xiaorui51/article/details/108446272