@@ -183,19 +184,17 @@
-
+
-
-
-
+
+
+
{{ scope.row.TBRpts }}
@@ -208,8 +207,6 @@
{
@@ -365,80 +366,70 @@ watch(selectYear, (newYearID) => {
});
-// 树形节点的映射字段
-const treeProps = {
- label: 'text',
- children: 'children'
-};
-
// region 下拉框
-
-
const handleYearChange = (checkedYear) => {
console.log("年份" + selectYear.value + " 月份" + selectMonth.value + " 单位" + selectOrg.value + " task" + task.value)
getData();
}
-
-const handleMonthChange = (checkenMonth) => {
+const handleMonthChange = (checkedMonth) => {
console.log("年份" + selectYear.value + " 月份" + selectMonth.value + " 单位" + selectOrg.value + " task" + task.value)
getData();
}
-
// 组织机构选项改变时
const handleOrgChange = async (checkedOrg) => {
- console.log("年份" + selectYear.value + " 月份" + selectMonth.value + " 单位" + selectOrg.value + " task" + task.value)
try {
- // 使用 await 等待异步操作完成
- const res = await GetOffLineStatisticsSetList(selectOrg.value);
- console.log(res);
- content.value = res;
- console.log(content.value[0]);
- console.log(content.value[0].ID);
+ // 使用 await 等待异步操作完成 因为要等返回选中第一个 task 之后才能发送正确的请求
+ content.value = await GetOffLineStatisticsSetList(selectOrg.value);
task.value = content.value[0].ID;
+ // 找到对应单位在地图上的位置
+ const targetName = mapDataList.value.find(item => item.value === checkedOrg).name;
+ const chart = echarts.getInstanceByDom(document.querySelector('.map-option'));
+ if (chart) {
+ chart.dispatchAction({type: 'highlight', name: targetName,});
+ }else {
+ alert("没有找到")
+ }
+ console.log("年份" + selectYear.value + " 月份" + selectMonth.value + " 单位" + selectOrg.value + " task" + task.value)
} catch (error) {
console.error("Error fetching data:", error);
}
await getData();
};
-
// 任务选项改变时
const handleTaskChange = (checkedTask) => {
console.log("年份" + selectYear.value + " 月份" + selectMonth.value + " 单位" + selectOrg.value + " task" + task.value)
getData();
}
-
-
// 点击地图
const handleChartClick = async (params) => {
if (params.componentType === 'series') {
- const clickedData = mapDataList.value.find(item => item.name.includes(params.name.substring(0, 2)));
- console.log("地区:" + params.name + " id:" + clickedData.value + " 年:" + selectYear.value + " 月:" + selectMonth.value)
- selectOrg.value = clickedData.value
- try {
- // 使用 await 等待异步操作完成
- const res = await GetOffLineStatisticsSetList(clickedData.value);
- console.log(res);
- content.value = res;
- console.log(content.value[0]);
- console.log(content.value[0].ID);
- task.value = content.value[0].ID;
- } catch (error) {
- console.error("Error fetching data:", error);
+ const targetName = params.name === '长沙县' ? '长沙县公安局' : params.name.substring(0, 2);
+ const clickedData = mapDataList.value.find(item => item.name.includes(targetName));
+ if (clickedData) {
+ selectOrg.value = clickedData.value;
+ console.log(`地区:${params.name} id:${selectOrg.value} 年:${selectYear.value} 月:${selectMonth.value}`);
+ try {
+ content.value = await GetOffLineStatisticsSetList(selectOrg.value);
+ task.value = content.value[0].ID;
+ } catch (error) {
+ console.error("Error fetching data:", error);
+ }
+ } else {
+ console.error("没有找到匹配的数据项");
}
- alert(`Clicked on ${params.name}, Value: ${clickedData ? clickedData.value : '无数据'}`);
}
await getData();
};
-
// endregion
-const mapDataList = ref([]);
+
echarts.registerMap("changsha", changshaMap);
const option = ref({
geo: {
map: "changsha",
},
visualMap: {
+ show: false,
type: "piecewise",
bottom: 10,
pieces: [
@@ -667,19 +658,9 @@ const option3 = ref({
});
-// region 表格数据
-const tableData = ref([]) // 业务满意率
-const tableData1 = ref([]) // 综合满意度排名
-const tableData2 = ref([])
-const tableData3 = ref([])
-const tableData4 = ref([]) // 单项调查情况
-// endregion
-
// region 初始化
onMounted(async () => {
-
-
-// 年
+ // 年
const resYears = await GetMyPeriod();
years.value = resYears.map(item => ({
ID: item.ID,
@@ -697,7 +678,7 @@ onMounted(async () => {
SonPeriodName: item.SonPeriodName,
PeriodID: item.PeriodID,
}));
-
+ // 从返回的全部月份中筛选出对应年份的月份,添加一个 ‘全年’ 或者 ‘半年度’ value 为 -1
if (tempMonths.value.length > 0) {
const temp = years.value.filter(item => item.ID === selectYear.value)
if (temp.length > 0 && temp[0].PeriodName.includes("半")) {
@@ -724,18 +705,15 @@ onMounted(async () => {
console.log(content.value[0]);
task.value = content.value[0].ID;
}
-
// 获取数据
- await getData();
+ // await getData();
});
-
async function getData() {
-
- // 调查情况 taskID没有调对
+ // 调查情况
GetDCQK(selectYear.value, selectMonth.value, selectOrg.value, task.value).then((res) => {
reviewOk.value = res
});
@@ -747,38 +725,38 @@ async function getData() {
option1.value.series[0].data = dcmyd.value[0].lstson.slice(-6).map(item => item.FinalRP);
});
- // 业务满意率 可以
+ // 业务满意率
GetZRSJXF(selectYear.value, selectMonth.value, selectOrg.value, task.value).then((res) => {
let temp = res.lstShen
temp = temp.filter(item => item.Name !== null);
tableData.value = temp
});
- // 综合满意度排名 可以
+ // 综合满意度排名
GetZHMYLPM(selectYear.value, selectMonth.value).then((res) => {
tableData1.value = res[0].lstCity
let temp = res[0].lstSheng;
+ // 返回数据数组是连着的 这里需要分组
const group2 = temp.filter(item => item.SetName === "(省)县市考评");
const group3 = temp.filter(item => item.SetName === "(省)区");
tableData2.value = group2
tableData3.value = group3
});
- // 不满意样本趋势 也是任务ID的问题 任务id传错返回就是空
+ // 不满意样本趋势
GetBMYYBQS(selectYear.value, selectOrg.value, task.value).then((res) => {
bmyybqs.value = res;
option2.value.xAxis.data = bmyybqs.value.map(item => item.SonPeriodName);
option2.value.series[0].data = bmyybqs.value.map(item => item.QACount);
-
});
- // 单项分析 可以
+ // 单项分析
GetDXFX(selectYear.value, selectMonth.value, selectOrg.value, task.value).then((res) => {
dxfx.value = res;
option3.value.xAxis.data = dxfx.value[0].lstson.map(item => item.MasterName);
- option3.value.series[0].data = dxfx.value[0].lstson.map(item => item.FinalRP);
- option3.value.series[1].data = dxfx.value[1].lstson.map(item => item.FinalRP);
- option3.value.series[2].data = dxfx.value[2].lstson.map(item => item.FinalRP);
+ option3.value.series[0].data = dxfx.value[0].lstson.map(item => item.FinalRP); // 本周期
+ option3.value.series[1].data = dxfx.value[1].lstson.map(item => item.FinalRP); // 上一期
+ option3.value.series[2].data = dxfx.value[2].lstson.map(item => item.FinalRP); // 去年同期
});
// 单项调查情况
@@ -788,7 +766,7 @@ async function getData() {
tableData4.value = text
});
- // 地图数据 只用传 periodid
+ // 地图数据
GetDITU(selectYear.value).then((res) => {
tempMap.value = res
mapDataList.value = tempMap.value.map(org => {
@@ -796,14 +774,12650 @@ async function getData() {
})
option.value.series.data = mapDataList.value
});
+
}
// endregion
-
// region 数据
+setTimeout(() => {
+ reviewOk.value = [{
+ LevelType: "省",
+ dczl: 1410919,
+ jtl: "67.84%",
+ yxhf: "490980",
+ yxl: "51.3%",
+ mys: "462939",
+ jbmys: "21688",
+ bmys: "6353",
+ State2: 466175,
+ State3: 490980
+ }]
+ // 调查满意度
+ dcmyd.value = [
+ {
+ Bak: "满意度",
+ FinalRP: 95.3,
+ lstson: [
+ {
+ "State3": 43486,
+ "FinalRP": 94.37,
+ "PeriodSonID": "37",
+ "SonSerialNo": 1,
+ "SonPeriodName": "1月"
+ },
+ {
+ "State3": 28974,
+ "FinalRP": 94.12,
+ "PeriodSonID": "38",
+ "SonSerialNo": 2,
+ "SonPeriodName": "2月"
+ },
+ {
+ "State3": 36326,
+ "FinalRP": 94.68,
+ "PeriodSonID": "39",
+ "SonSerialNo": 3,
+ "SonPeriodName": "3月"
+ },
+ {
+ "State3": 47753,
+ "FinalRP": 96.11,
+ "PeriodSonID": "40",
+ "SonSerialNo": 4,
+ "SonPeriodName": "4月"
+ },
+ {
+ "State3": 55153,
+ "FinalRP": 95.89,
+ "PeriodSonID": "41",
+ "SonSerialNo": 5,
+ "SonPeriodName": "5月"
+ },
+ {
+ "State3": 50433,
+ "FinalRP": 95.29,
+ "PeriodSonID": "42",
+ "SonSerialNo": 6,
+ "SonPeriodName": "6月"
+ },
+ {
+ "State3": 63952,
+ "FinalRP": 95.77,
+ "PeriodSonID": "43",
+ "SonSerialNo": 7,
+ "SonPeriodName": "7月"
+ },
+ {
+ "State3": 53520,
+ "FinalRP": 94.94,
+ "PeriodSonID": "44",
+ "SonSerialNo": 8,
+ "SonPeriodName": "8月"
+ },
+ {
+ "State3": 48500,
+ "FinalRP": 95.81,
+ "PeriodSonID": "45",
+ "SonSerialNo": 9,
+ "SonPeriodName": "9月"
+ },
+ {
+ "State3": 45397,
+ "FinalRP": 95.64,
+ "PeriodSonID": "46",
+ "SonSerialNo": 10,
+ "SonPeriodName": "10月"
+ },
+ {
+ "State3": 17486,
+ "FinalRP": 95.77,
+ "PeriodSonID": "47",
+ "SonSerialNo": 11,
+ "SonPeriodName": "11月"
+ },
+ {
+ "State3": 0,
+ "FinalRP": 0,
+ "PeriodSonID": "48",
+ "SonSerialNo": 12,
+ "SonPeriodName": "12月"
+ }
+ ]
+ },
+ {
+ "Bak": "去年同期",
+ "FinalRP": 97.23,
+ "lstson": [
+ {
+ "State3": 43486,
+ "FinalRP": 96.46,
+ "PeriodSonID": "37",
+ "SonSerialNo": 1,
+ "SonPeriodName": "1月"
+ },
+ {
+ "State3": 28974,
+ "FinalRP": 97.27,
+ "PeriodSonID": "38",
+ "SonSerialNo": 2,
+ "SonPeriodName": "2月"
+ },
+ {
+ "State3": 36326,
+ "FinalRP": 97.15,
+ "PeriodSonID": "39",
+ "SonSerialNo": 3,
+ "SonPeriodName": "3月"
+ },
+ {
+ "State3": 47753,
+ "FinalRP": 97.26,
+ "PeriodSonID": "40",
+ "SonSerialNo": 4,
+ "SonPeriodName": "4月"
+ },
+ {
+ "State3": 55153,
+ "FinalRP": 97.18,
+ "PeriodSonID": "41",
+ "SonSerialNo": 5,
+ "SonPeriodName": "5月"
+ },
+ {
+ "State3": 50433,
+ "FinalRP": 97.4,
+ "PeriodSonID": "42",
+ "SonSerialNo": 6,
+ "SonPeriodName": "6月"
+ },
+ {
+ "State3": 63952,
+ "FinalRP": 97.07,
+ "PeriodSonID": "43",
+ "SonSerialNo": 7,
+ "SonPeriodName": "7月"
+ },
+ {
+ "State3": 53520,
+ "FinalRP": 97.19,
+ "PeriodSonID": "44",
+ "SonSerialNo": 8,
+ "SonPeriodName": "8月"
+ },
+ {
+ "State3": 48500,
+ "FinalRP": 97.36,
+ "PeriodSonID": "45",
+ "SonSerialNo": 9,
+ "SonPeriodName": "9月"
+ },
+ {
+ "State3": 45397,
+ "FinalRP": 97.2,
+ "PeriodSonID": "46",
+ "SonSerialNo": 10,
+ "SonPeriodName": "10月"
+ },
+ {
+ "State3": 17486,
+ "FinalRP": 97.49,
+ "PeriodSonID": "47",
+ "SonSerialNo": 11,
+ "SonPeriodName": "11月"
+ },
+ {
+ "State3": 0,
+ "FinalRP": 97.83,
+ "PeriodSonID": "48",
+ "SonSerialNo": 12,
+ "SonPeriodName": "12月"
+ }
+ ]
+ },
+ {
+ Bak: "上一期",
+ FinalRP: 0,
+ lstson: [
+ {
+ "State3": 43486,
+ "FinalRP": 0,
+ "PeriodSonID": "37",
+ "SonSerialNo": 1,
+ "SonPeriodName": "1月"
+ },
+ {
+ "State3": 28974,
+ "FinalRP": 94.37,
+ "PeriodSonID": "38",
+ "SonSerialNo": 2,
+ "SonPeriodName": "2月"
+ },
+ {
+ "State3": 36326,
+ "FinalRP": 94.12,
+ "PeriodSonID": "39",
+ "SonSerialNo": 3,
+ "SonPeriodName": "3月"
+ },
+ {
+ "State3": 47753,
+ "FinalRP": 94.68,
+ "PeriodSonID": "40",
+ "SonSerialNo": 4,
+ "SonPeriodName": "4月"
+ },
+ {
+ "State3": 55153,
+ "FinalRP": 96.11,
+ "PeriodSonID": "41",
+ "SonSerialNo": 5,
+ "SonPeriodName": "5月"
+ },
+ {
+ "State3": 50433,
+ "FinalRP": 95.89,
+ "PeriodSonID": "42",
+ "SonSerialNo": 6,
+ "SonPeriodName": "6月"
+ },
+ {
+ "State3": 63952,
+ "FinalRP": 95.29,
+ "PeriodSonID": "43",
+ "SonSerialNo": 7,
+ "SonPeriodName": "7月"
+ },
+ {
+ "State3": 53520,
+ "FinalRP": 95.77,
+ "PeriodSonID": "44",
+ "SonSerialNo": 8,
+ "SonPeriodName": "8月"
+ },
+ {
+ "State3": 48500,
+ "FinalRP": 94.94,
+ "PeriodSonID": "45",
+ "SonSerialNo": 9,
+ "SonPeriodName": "9月"
+ },
+ {
+ "State3": 45397,
+ "FinalRP": 95.81,
+ "PeriodSonID": "46",
+ "SonSerialNo": 10,
+ "SonPeriodName": "10月"
+ },
+ {
+ "State3": 17486,
+ "FinalRP": 95.64,
+ "PeriodSonID": "47",
+ "SonSerialNo": 11,
+ "SonPeriodName": "11月"
+ },
+ {
+ "State3": 0,
+ "FinalRP": 95.77,
+ "PeriodSonID": "48",
+ "SonSerialNo": 12,
+ "SonPeriodName": "12月"
+ }
+ ]
+ }
+ ]
+ option1.value.xAxis.data = dcmyd.value[0].lstson.slice(-6).map(item => item.SonPeriodName);
+ option1.value.series[0].data = dcmyd.value[0].lstson.slice(-6).map(item => item.FinalRP);
+ // console.log(dcmyd.value[0].lstson.slice(-6).map(item => item.SonPeriodName));
+ // 不满意趋势
+ bmyybqs.value = [
+ {
+ "PeriodID": "6",
+ "PeriodName": "2024年全年",
+ "PeriodSonID": "37",
+ "SonSerialNo": 1,
+ "SonPeriodName": "1月",
+ "QACount": 956,
+ "State3": "43486"
+ },
+ {
+ "PeriodID": "6",
+ "PeriodName": "2024年全年",
+ "PeriodSonID": "38",
+ "SonSerialNo": 2,
+ "SonPeriodName": "2月",
+ "QACount": 531,
+ "State3": "28974"
+ },
+ {
+ "PeriodID": "6",
+ "PeriodName": "2024年全年",
+ "PeriodSonID": "39",
+ "SonSerialNo": 3,
+ "SonPeriodName": "3月",
+ "QACount": 692,
+ "State3": "36326"
+ },
+ {
+ "PeriodID": "6",
+ "PeriodName": "2024年全年",
+ "PeriodSonID": "40",
+ "SonSerialNo": 4,
+ "SonPeriodName": "4月",
+ "QACount": 483,
+ "State3": "47753"
+ },
+ {
+ "PeriodID": "6",
+ "PeriodName": "2024年全年",
+ "PeriodSonID": "41",
+ "SonSerialNo": 5,
+ "SonPeriodName": "5月",
+ "QACount": 606,
+ "State3": "55153"
+ },
+ {
+ "PeriodID": "6",
+ "PeriodName": "2024年全年",
+ "PeriodSonID": "42",
+ "SonSerialNo": 6,
+ "SonPeriodName": "6月",
+ "QACount": 606,
+ "State3": "50433"
+ },
+ {
+ "PeriodID": "6",
+ "PeriodName": "2024年全年",
+ "PeriodSonID": "43",
+ "SonSerialNo": 7,
+ "SonPeriodName": "7月",
+ "QACount": 650,
+ "State3": "63952"
+ },
+ {
+ "PeriodID": "6",
+ "PeriodName": "2024年全年",
+ "PeriodSonID": "44",
+ "SonSerialNo": 8,
+ "SonPeriodName": "8月",
+ "QACount": 605,
+ "State3": "53520"
+ },
+ {
+ "PeriodID": "6",
+ "PeriodName": "2024年全年",
+ "PeriodSonID": "45",
+ "SonSerialNo": 9,
+ "SonPeriodName": "9月",
+ "QACount": 511,
+ "State3": "48500"
+ },
+ {
+ "PeriodID": "6",
+ "PeriodName": "2024年全年",
+ "PeriodSonID": "46",
+ "SonSerialNo": 10,
+ "SonPeriodName": "10月",
+ "QACount": 557,
+ "State3": "45397"
+ },
+ {
+ "PeriodID": "6",
+ "PeriodName": "2024年全年",
+ "PeriodSonID": "47",
+ "SonSerialNo": 11,
+ "SonPeriodName": "11月",
+ "QACount": 156,
+ "State3": "17486"
+ },
+ {
+ "PeriodID": "6",
+ "PeriodName": "2024年全年",
+ "PeriodSonID": "48",
+ "SonSerialNo": 12,
+ "SonPeriodName": "12月",
+ "QACount": 0,
+ "State3": "0"
+ }
+ ];
+ option2.value.xAxis.data = bmyybqs.value.slice(-6).map(item => item.SonPeriodName);
+ option2.value.series[0].data = bmyybqs.value.slice(-6).map(item => item.QACount);
+
+ // 单项分析
+ dxfx.value = [
+ {
+ "Bak": "本周期",
+ "lstson": [
+ {
+ "MasterID": "33",
+ "MasterName": "省驾考(自动)",
+ "FinalRP": "9.9536"
+ },
+ {
+ "MasterID": "35",
+ "MasterName": "省车辆上户(自动)",
+ "FinalRP": "9.9301"
+ },
+ {
+ "MasterID": "36",
+ "MasterName": "省身份证办理(自动)",
+ "FinalRP": "9.9502"
+ },
+ {
+ "MasterID": "37",
+ "MasterName": "省110接处警(自动)",
+ "FinalRP": "18.7852"
+ },
+ {
+ "MasterID": "38",
+ "MasterName": "省122接处警(自动)",
+ "FinalRP": "14.4708"
+ },
+ {
+ "MasterID": "92",
+ "MasterName": "省户政(自动)",
+ "FinalRP": "9.9580"
+ },
+ {
+ "MasterID": "93",
+ "MasterName": "省案件当事人2020(自动)",
+ "FinalRP": "22.2535"
+ }
+ ]
+ },
+ {
+ "Bak": "上一期",
+ "lstson": [
+ {
+ "MasterID": "33",
+ "MasterName": "省驾考(自动)",
+ "FinalRP": "9.0000"
+ },
+ {
+ "MasterID": "35",
+ "MasterName": "省车辆上户(自动)",
+ "FinalRP": "0.0000"
+ },
+ {
+ "MasterID": "36",
+ "MasterName": "省身份证办理(自动)",
+ "FinalRP": "0.0000"
+ },
+ {
+ "MasterID": "37",
+ "MasterName": "省110接处警(自动)",
+ "FinalRP": "0.0000"
+ },
+ {
+ "MasterID": "38",
+ "MasterName": "省122接处警(自动)",
+ "FinalRP": "0.0000"
+ },
+ {
+ "MasterID": "92",
+ "MasterName": "省户政(自动)",
+ "FinalRP": "0.0000"
+ },
+ {
+ "MasterID": "93",
+ "MasterName": "省案件当事人2020(自动)",
+ "FinalRP": "0.0000"
+ }
+ ]
+ },
+ {
+ "Bak": "去年同期",
+ "lstson": [
+ {
+ "MasterID": "33",
+ "MasterName": "省驾考(自动)",
+ "FinalRP": "9.9366"
+ },
+ {
+ "MasterID": "35",
+ "MasterName": "省车辆上户(自动)",
+ "FinalRP": "9.9212"
+ },
+ {
+ "MasterID": "36",
+ "MasterName": "省身份证办理(自动)",
+ "FinalRP": "9.9483"
+ },
+ {
+ "MasterID": "37",
+ "MasterName": "省110接处警(自动)",
+ "FinalRP": "19.3654"
+ },
+ {
+ "MasterID": "38",
+ "MasterName": "省122接处警(自动)",
+ "FinalRP": "14.6298"
+ },
+ {
+ "MasterID": "92",
+ "MasterName": "省户政(自动)",
+ "FinalRP": "9.9482"
+ },
+ {
+ "MasterID": "93",
+ "MasterName": "省案件当事人2020(自动)",
+ "FinalRP": "23.4803"
+ }
+ ]
+ }
+ ];
+ option3.value.xAxis.data = dxfx.value[0].lstson.map(item => item.MasterName);
+ option3.value.series[0].data = dxfx.value[0].lstson.map(item => item.FinalRP);
+ option3.value.series[1].data = dxfx.value[1].lstson.map(item => item.FinalRP);
+ option3.value.series[2].data = dxfx.value[2].lstson.map(item => item.FinalRP);
+ // 业务满意率
+ let tempTable = [
+ {
+ "MasterID": "37",
+ "Name": "110",
+ "MasterName": "省110接处警(自动)",
+ "zMasterID": null,
+ "zMasterName": null,
+ "zdcl": null,
+ "Allzdcl": null,
+ "zbmys": null,
+ "Allzbmys": null,
+ "Allyzh": null,
+ "yzh": null,
+ "Allwzh": null,
+ "wzh": null,
+ "sdcl": "108317",
+ "sbmys": "1308",
+ "smyl": "18.79",
+ "smyltb": "-0.58",
+ "State3": 35920,
+ "DissatisfiedNum": 1308,
+ "SatisfiedNum": 31117,
+ "BasicallySatisfiedNum": 3495
+ },
+ {
+ "MasterID": "38",
+ "Name": "122",
+ "MasterName": "省122接处警(自动)",
+ "zMasterID": null,
+ "zMasterName": null,
+ "zdcl": null,
+ "Allzdcl": null,
+ "zbmys": null,
+ "Allzbmys": null,
+ "Allyzh": null,
+ "yzh": null,
+ "Allwzh": null,
+ "wzh": null,
+ "sdcl": "520208",
+ "sbmys": "3425",
+ "smyl": "14.47",
+ "smyltb": "-0.16",
+ "State3": 188505,
+ "DissatisfiedNum": 3425,
+ "SatisfiedNum": 172181,
+ "BasicallySatisfiedNum": 12899
+ },
+ {
+ "MasterID": "93",
+ "Name": "案件",
+ "MasterName": "省案件当事人2020(自动)",
+ "zMasterID": null,
+ "zMasterName": null,
+ "zdcl": null,
+ "Allzdcl": null,
+ "zbmys": null,
+ "Allzbmys": null,
+ "Allyzh": null,
+ "yzh": null,
+ "Allwzh": null,
+ "wzh": null,
+ "sdcl": "46383",
+ "sbmys": "1044",
+ "smyl": "22.25",
+ "smyltb": "-1.23",
+ "State3": 14336,
+ "DissatisfiedNum": 1044,
+ "SatisfiedNum": 11168,
+ "BasicallySatisfiedNum": 2124
+ },
+ {
+ "MasterID": "35",
+ "Name": "车辆上户",
+ "MasterName": "省车辆上户(自动)",
+ "zMasterID": null,
+ "zMasterName": null,
+ "zdcl": null,
+ "Allzdcl": null,
+ "zbmys": null,
+ "Allzbmys": null,
+ "Allyzh": null,
+ "yzh": null,
+ "Allwzh": null,
+ "wzh": null,
+ "sdcl": "285177",
+ "sbmys": "261",
+ "smyl": "9.93",
+ "smyltb": "0.01",
+ "State3": 85379,
+ "DissatisfiedNum": 261,
+ "SatisfiedNum": 83776,
+ "BasicallySatisfiedNum": 1342
+ },
+ {
+ "MasterID": "33",
+ "Name": "驾考",
+ "MasterName": "省驾考(自动)",
+ "zMasterID": null,
+ "zMasterName": null,
+ "zdcl": null,
+ "Allzdcl": null,
+ "zbmys": null,
+ "Allzbmys": null,
+ "Allyzh": null,
+ "yzh": null,
+ "Allwzh": null,
+ "wzh": null,
+ "sdcl": "194532",
+ "sbmys": "141",
+ "smyl": "9.95",
+ "smyltb": "0.02",
+ "State3": 83910,
+ "DissatisfiedNum": 141,
+ "SatisfiedNum": 82775,
+ "BasicallySatisfiedNum": 994
+ },
+ {
+ "MasterID": "92",
+ "Name": "户口",
+ "MasterName": "省户政(自动)",
+ "zMasterID": null,
+ "zMasterName": null,
+ "zdcl": null,
+ "Allzdcl": null,
+ "zbmys": null,
+ "Allzbmys": null,
+ "Allyzh": null,
+ "yzh": null,
+ "Allwzh": null,
+ "wzh": null,
+ "sdcl": "119882",
+ "sbmys": "97",
+ "smyl": "9.96",
+ "smyltb": "0.01",
+ "State3": 38943,
+ "DissatisfiedNum": 97,
+ "SatisfiedNum": 38580,
+ "BasicallySatisfiedNum": 266
+ },
+ {
+ "MasterID": "36",
+ "Name": "身份证",
+ "MasterName": "省身份证办理(自动)",
+ "zMasterID": null,
+ "zMasterName": null,
+ "zdcl": null,
+ "Allzdcl": null,
+ "zbmys": null,
+ "Allzbmys": null,
+ "Allyzh": null,
+ "yzh": null,
+ "Allwzh": null,
+ "wzh": null,
+ "sdcl": "136420",
+ "sbmys": "77",
+ "smyl": "9.95",
+ "smyltb": "0.00",
+ "State3": 43987,
+ "DissatisfiedNum": 77,
+ "SatisfiedNum": 43342,
+ "BasicallySatisfiedNum": 568
+ },
+ {
+ "MasterID": "0",
+ "Name": null,
+ "MasterName": "(省)全市",
+ "zMasterID": null,
+ "zMasterName": null,
+ "zdcl": null,
+ "Allzdcl": null,
+ "zbmys": null,
+ "Allzbmys": null,
+ "Allyzh": null,
+ "yzh": null,
+ "Allwzh": null,
+ "wzh": null,
+ "sdcl": "1410919",
+ "sbmys": "6353",
+ "smyl": "95.30",
+ "smyltb": "-1.93",
+ "State3": 490980,
+ "DissatisfiedNum": 6353,
+ "SatisfiedNum": 462939,
+ "BasicallySatisfiedNum": 21688
+ }
+ ]
+ tempTable = tempTable.filter(item => item.Name !== null)
+ // if (tempTable.length > 0 && tempTable[tempTable.length - 1].MasterID==="0") {
+ // tempTable[tempTable.length - 1].Name = "总计"; // 将最后一个对象的 Name 属性设置为 "总计"
+ // }
+
+ tableData.value = tempTable
+
+ // 综合满意度排名
+ tableData1.value = [
+ {
+ "OrganizeID": "4301",
+ "OrganizeName": "湖南省长沙市公安局",
+ "FinalRP": "95.30",
+ "TBRp": "97.23",
+ "TBRpts": "-1.93",
+ "SetName": "(省)全市",
+ "MydRanking": "1",
+ "State3": 490980
+ },
+ ] // 省局
+ let temp = [
+ {
+ "OrganizeID": null,
+ "OrganizeName": "(省)县市考评",
+ "FinalRP": "满意度",
+ "TBRp": null,
+ "TBRpts": null,
+ "SetName": null,
+ "MydRanking": "排名",
+ "State3": 0
+ },
+ {
+ "OrganizeID": "430124",
+ "OrganizeName": "宁乡市公安局",
+ "FinalRP": "95.94",
+ "TBRp": "97.64",
+ "TBRpts": "-1.70",
+ "SetName": "(省)县市考评",
+ "MydRanking": "1",
+ "State3": 25511
+ },
+ {
+ "OrganizeID": "430112",
+ "OrganizeName": "望城分局",
+ "FinalRP": "95.54",
+ "TBRp": "97.55",
+ "TBRpts": "-2.01",
+ "SetName": "(省)县市考评",
+ "MydRanking": "2",
+ "State3": 22472
+ },
+ {
+ "OrganizeID": "430181",
+ "OrganizeName": "浏阳市公安局",
+ "FinalRP": "95.11",
+ "TBRp": "97.32",
+ "TBRpts": "-2.21",
+ "SetName": "(省)县市考评",
+ "MydRanking": "3",
+ "State3": 29790
+ },
+ {
+ "OrganizeID": "430121",
+ "OrganizeName": "长沙县公安局",
+ "FinalRP": "94.59",
+ "TBRp": "96.87",
+ "TBRpts": "-2.28",
+ "SetName": "(省)县市考评",
+ "MydRanking": "4",
+ "State3": 38369
+ },
+ {
+ "OrganizeID": null,
+ "OrganizeName": "(省)区",
+ "FinalRP": "满意度",
+ "TBRp": null,
+ "TBRpts": null,
+ "SetName": null,
+ "MydRanking": "排名",
+ "State3": 0
+ },
+ {
+ "OrganizeID": "430197",
+ "OrganizeName": "公共交通治安管理分局",
+ "FinalRP": "95.45",
+ "TBRp": "93.18",
+ "TBRpts": "2.27",
+ "SetName": "(省)区",
+ "MydRanking": "1",
+ "State3": 301
+ },
+ {
+ "OrganizeID": "430102",
+ "OrganizeName": "芙蓉分局",
+ "FinalRP": "94.64",
+ "TBRp": "97.31",
+ "TBRpts": "-2.67",
+ "SetName": "(省)区",
+ "MydRanking": "2",
+ "State3": 7543
+ },
+ {
+ "OrganizeID": "430199",
+ "OrganizeName": "高新区分局",
+ "FinalRP": "94.35",
+ "TBRp": "97.10",
+ "TBRpts": "-2.75",
+ "SetName": "(省)区",
+ "MydRanking": "3",
+ "State3": 5267
+ },
+ {
+ "OrganizeID": "430105",
+ "OrganizeName": "开福分局",
+ "FinalRP": "94.15",
+ "TBRp": "97.05",
+ "TBRpts": "-2.90",
+ "SetName": "(省)区",
+ "MydRanking": "4",
+ "State3": 10019
+ },
+ {
+ "OrganizeID": "430103",
+ "OrganizeName": "天心分局",
+ "FinalRP": "93.93",
+ "TBRp": "97.55",
+ "TBRpts": "-3.62",
+ "SetName": "(省)区",
+ "MydRanking": "5",
+ "State3": 16279
+ },
+ {
+ "OrganizeID": "430111",
+ "OrganizeName": "雨花分局",
+ "FinalRP": "93.43",
+ "TBRp": "95.78",
+ "TBRpts": "-2.35",
+ "SetName": "(省)区",
+ "MydRanking": "6",
+ "State3": 20850
+ },
+ {
+ "OrganizeID": "430104",
+ "OrganizeName": "岳麓分局",
+ "FinalRP": "92.92",
+ "TBRp": "95.96",
+ "TBRpts": "-3.04",
+ "SetName": "(省)区",
+ "MydRanking": "7",
+ "State3": 27422
+ },
+ {
+ "OrganizeID": "430100",
+ "OrganizeName": "长沙市直属",
+ "FinalRP": "91.05",
+ "TBRp": "97.17",
+ "TBRpts": "-6.12",
+ "SetName": "(省)区",
+ "MydRanking": "8",
+ "State3": 674
+ }
+ ]
+ const group2 = temp.filter(item => item.SetName === "(省)县市考评");
+ const group3 = temp.filter(item => item.SetName === "(省)区");
+ tableData2.value = group2
+ tableData3.value = group3
+
+ // 单项调查情况
+ let text = [
+ {
+ "Name": "110",
+ "MasterID": "37",
+ "dxyw": null,
+ "sdcl": "108317",
+ "bmyzs": "1308",
+ "rcmzs": "0",
+ "tgs": "0",
+ "wsqs": "1347",
+ "LastDayVisitCount": 0,
+ "LastDayQACount": 3,
+ "State3": 35920
+ },
+ {
+ "Name": "122",
+ "MasterID": "38",
+ "dxyw": null,
+ "sdcl": "520208",
+ "bmyzs": "3425",
+ "rcmzs": "0",
+ "tgs": "0",
+ "wsqs": "3360",
+ "LastDayVisitCount": 0,
+ "LastDayQACount": 8,
+ "State3": 188505
+ },
+ {
+ "Name": "案件",
+ "MasterID": "93",
+ "dxyw": null,
+ "sdcl": "46383",
+ "bmyzs": "1044",
+ "rcmzs": "0",
+ "tgs": "0",
+ "wsqs": "1000",
+ "LastDayVisitCount": 0,
+ "LastDayQACount": 3,
+ "State3": 14336
+ },
+ {
+ "Name": "车辆上户",
+ "MasterID": "35",
+ "dxyw": null,
+ "sdcl": "285177",
+ "bmyzs": "261",
+ "rcmzs": "0",
+ "tgs": "0",
+ "wsqs": "243",
+ "LastDayVisitCount": 0,
+ "LastDayQACount": 0,
+ "State3": 85379
+ },
+ {
+ "Name": "驾考",
+ "MasterID": "33",
+ "dxyw": null,
+ "sdcl": "194532",
+ "bmyzs": "141",
+ "rcmzs": "0",
+ "tgs": "0",
+ "wsqs": "332",
+ "LastDayVisitCount": 0,
+ "LastDayQACount": 0,
+ "State3": 83910
+ },
+ {
+ "Name": "户口",
+ "MasterID": "92",
+ "dxyw": null,
+ "sdcl": "119882",
+ "bmyzs": "97",
+ "rcmzs": "0",
+ "tgs": "0",
+ "wsqs": "89",
+ "LastDayVisitCount": 0,
+ "LastDayQACount": 0,
+ "State3": 38943
+ },
+ {
+ "Name": "身份证",
+ "MasterID": "36",
+ "dxyw": null,
+ "sdcl": "136420",
+ "bmyzs": "77",
+ "rcmzs": "0",
+ "tgs": "0",
+ "wsqs": "76",
+ "LastDayVisitCount": 0,
+ "LastDayQACount": 0,
+ "State3": 43987
+ },
+ {
+ "Name": null,
+ "MasterID": "0",
+ "dxyw": null,
+ "sdcl": "1410919",
+ "bmyzs": "6353",
+ "rcmzs": "0",
+ "tgs": "0",
+ "wsqs": "6447",
+ "LastDayVisitCount": 0,
+ "LastDayQACount": 14,
+ "State3": 490980
+ }
+ ]
+ text = text.filter(item => item.Name !== null)
+ tableData4.value = text
+
+ // 年份
+ let tempYear = [
+ {
+ "ID": 6,
+ "PeriodName": "2024年全年",
+ "SerialNo": 1001,
+ "StartTime": "2024-01-01 00:00:00",
+ "EndTime": "2024-12-31 23:59:59"
+ },
+ {
+ "ID": 3,
+ "PeriodName": "2023年全年",
+ "SerialNo": 1000,
+ "StartTime": "2023-1-1",
+ "EndTime": "2023-12-31 23:59:59"
+ },
+ {
+ "ID": 5,
+ "PeriodName": "2024年下半年",
+ "SerialNo": 4,
+ "StartTime": "2024-07-01 00:00:00",
+ "EndTime": "2024-12-31 23:59:59"
+ },
+ {
+ "ID": 4,
+ "PeriodName": "2024年上半年",
+ "SerialNo": 3,
+ "StartTime": "2024-01-01 00:00:00",
+ "EndTime": "2024-06-30 23:59:59"
+ },
+ {
+ "ID": 2,
+ "PeriodName": "2023年下半年",
+ "SerialNo": 2,
+ "StartTime": "2023-7-1",
+ "EndTime": "2023-12-31 23:59:59"
+ },
+ {
+ "ID": 1,
+ "PeriodName": "2023年上半年",
+ "SerialNo": 1,
+ "StartTime": "2023-1-1",
+ "EndTime": "2023-6-30 23:59:59"
+ }
+ ]
+ years.value = tempYear.map(item => ({
+ ID: item.ID,
+ PeriodName: item.PeriodName
+ }));
+ if (years.value.length > 0) {
+ selectYear.value = years.value[0].ID; // 选择第一个年份
+ }
+
+ // console.log(years.value);
+ // 月份
+ let month = [
+ {
+ "ID": 1,
+ "SonPeriodName": "1月",
+ "SerialNo": 1,
+ "PeriodID": 1,
+ "StartTime": "2023-1-01",
+ "EndTime": "2023-1-31 23:59:59"
+ },
+ {
+ "ID": 7,
+ "SonPeriodName": "7月",
+ "SerialNo": 1,
+ "PeriodID": 2,
+ "StartTime": "2023-7-01",
+ "EndTime": "2023-7-31 23:59:59"
+ },
+ {
+ "ID": 13,
+ "SonPeriodName": "1月",
+ "SerialNo": 1,
+ "PeriodID": 3,
+ "StartTime": "2023-1-01",
+ "EndTime": "2023-1-31 23:59:59"
+ },
+ {
+ "ID": 25,
+ "SonPeriodName": "1月",
+ "SerialNo": 1,
+ "PeriodID": 4,
+ "StartTime": "2024-1-01 00:00:00",
+ "EndTime": "2024-1-31 23:59:59"
+ },
+ {
+ "ID": 37,
+ "SonPeriodName": "1月",
+ "SerialNo": 1,
+ "PeriodID": 6,
+ "StartTime": "2024-1-01 00:00:00",
+ "EndTime": "2024-1-31 23:59:59"
+ },
+ {
+ "ID": 38,
+ "SonPeriodName": "2月",
+ "SerialNo": 2,
+ "PeriodID": 6,
+ "StartTime": "2024-2-01 00:00:00",
+ "EndTime": "2024-2-29 23:59:59"
+ },
+ {
+ "ID": 26,
+ "SonPeriodName": "2月",
+ "SerialNo": 2,
+ "PeriodID": 4,
+ "StartTime": "2024-2-01 00:00:00",
+ "EndTime": "2024-2-29 23:59:59"
+ },
+ {
+ "ID": 14,
+ "SonPeriodName": "2月",
+ "SerialNo": 2,
+ "PeriodID": 3,
+ "StartTime": "2023-2-01",
+ "EndTime": "2023-2-28 23:59:59"
+ },
+ {
+ "ID": 8,
+ "SonPeriodName": "8月",
+ "SerialNo": 2,
+ "PeriodID": 2,
+ "StartTime": "2023-8-01",
+ "EndTime": "2023-8-31 23:59:59"
+ },
+ {
+ "ID": 2,
+ "SonPeriodName": "2月",
+ "SerialNo": 2,
+ "PeriodID": 1,
+ "StartTime": "2023-2-01",
+ "EndTime": "2023-2-28 23:59:59"
+ },
+ {
+ "ID": 3,
+ "SonPeriodName": "3月",
+ "SerialNo": 3,
+ "PeriodID": 1,
+ "StartTime": "2023-3-01",
+ "EndTime": "2023-3-31 23:59:59"
+ },
+ {
+ "ID": 9,
+ "SonPeriodName": "9月",
+ "SerialNo": 3,
+ "PeriodID": 2,
+ "StartTime": "2023-9-01",
+ "EndTime": "2023-9-30 23:59:59"
+ },
+ {
+ "ID": 15,
+ "SonPeriodName": "3月",
+ "SerialNo": 3,
+ "PeriodID": 3,
+ "StartTime": "2023-3-01",
+ "EndTime": "2023-3-31 23:59:59"
+ },
+ {
+ "ID": 27,
+ "SonPeriodName": "3月",
+ "SerialNo": 3,
+ "PeriodID": 4,
+ "StartTime": "2024-3-01 00:00:00",
+ "EndTime": "2024-3-31 23:59:59"
+ },
+ {
+ "ID": 39,
+ "SonPeriodName": "3月",
+ "SerialNo": 3,
+ "PeriodID": 6,
+ "StartTime": "2024-3-01 00:00:00",
+ "EndTime": "2024-3-31 23:59:59"
+ },
+ {
+ "ID": 40,
+ "SonPeriodName": "4月",
+ "SerialNo": 4,
+ "PeriodID": 6,
+ "StartTime": "2024-4-01 00:00:00",
+ "EndTime": "2024-4-30 23:59:59"
+ },
+ {
+ "ID": 28,
+ "SonPeriodName": "4月",
+ "SerialNo": 4,
+ "PeriodID": 4,
+ "StartTime": "2024-4-01 00:00:00",
+ "EndTime": "2024-4-30 23:59:59"
+ },
+ {
+ "ID": 16,
+ "SonPeriodName": "4月",
+ "SerialNo": 4,
+ "PeriodID": 3,
+ "StartTime": "2023-4-01",
+ "EndTime": "2023-4-30 23:59:59"
+ },
+ {
+ "ID": 10,
+ "SonPeriodName": "10月",
+ "SerialNo": 4,
+ "PeriodID": 2,
+ "StartTime": "2023-10-01",
+ "EndTime": "2023-10-31 23:59:59"
+ },
+ {
+ "ID": 4,
+ "SonPeriodName": "4月",
+ "SerialNo": 4,
+ "PeriodID": 1,
+ "StartTime": "2023-4-01",
+ "EndTime": "2023-4-30 23:59:59"
+ },
+ {
+ "ID": 5,
+ "SonPeriodName": "5月",
+ "SerialNo": 5,
+ "PeriodID": 1,
+ "StartTime": "2023-5-01",
+ "EndTime": "2023-5-31 23:59:59"
+ },
+ {
+ "ID": 11,
+ "SonPeriodName": "11月",
+ "SerialNo": 5,
+ "PeriodID": 2,
+ "StartTime": "2023-11-01",
+ "EndTime": "2023-11-30 23:59:59"
+ },
+ {
+ "ID": 17,
+ "SonPeriodName": "5月",
+ "SerialNo": 5,
+ "PeriodID": 3,
+ "StartTime": "2023-5-01",
+ "EndTime": "2023-5-31 23:59:59"
+ },
+ {
+ "ID": 29,
+ "SonPeriodName": "5月",
+ "SerialNo": 5,
+ "PeriodID": 4,
+ "StartTime": "2024-5-01 00:00:00",
+ "EndTime": "2024-5-31 23:59:59"
+ },
+ {
+ "ID": 41,
+ "SonPeriodName": "5月",
+ "SerialNo": 5,
+ "PeriodID": 6,
+ "StartTime": "2024-5-01 00:00:00",
+ "EndTime": "2024-5-31 23:59:59"
+ },
+ {
+ "ID": 42,
+ "SonPeriodName": "6月",
+ "SerialNo": 6,
+ "PeriodID": 6,
+ "StartTime": "2024-6-01 00:00:00",
+ "EndTime": "2024-6-30 23:59:59"
+ },
+ {
+ "ID": 30,
+ "SonPeriodName": "6月",
+ "SerialNo": 6,
+ "PeriodID": 4,
+ "StartTime": "2024-6-01 00:00:00",
+ "EndTime": "2024-6-30 23:59:59"
+ },
+ {
+ "ID": 18,
+ "SonPeriodName": "6月",
+ "SerialNo": 6,
+ "PeriodID": 3,
+ "StartTime": "2023-6-01",
+ "EndTime": "2023-6-30 23:59:59"
+ },
+ {
+ "ID": 12,
+ "SonPeriodName": "12月",
+ "SerialNo": 6,
+ "PeriodID": 2,
+ "StartTime": "2023-12-01",
+ "EndTime": "2023-12-31 23:59:59"
+ },
+ {
+ "ID": 6,
+ "SonPeriodName": "6月",
+ "SerialNo": 6,
+ "PeriodID": 1,
+ "StartTime": "2023-6-01",
+ "EndTime": "2023-6-30 23:59:59"
+ },
+ {
+ "ID": 19,
+ "SonPeriodName": "7月",
+ "SerialNo": 7,
+ "PeriodID": 3,
+ "StartTime": "2023-7-01",
+ "EndTime": "2023-7-31 23:59:59"
+ },
+ {
+ "ID": 31,
+ "SonPeriodName": "7月",
+ "SerialNo": 7,
+ "PeriodID": 5,
+ "StartTime": "2024-7-01 00:00:00",
+ "EndTime": "2024-7-31 23:59:59"
+ },
+ {
+ "ID": 43,
+ "SonPeriodName": "7月",
+ "SerialNo": 7,
+ "PeriodID": 6,
+ "StartTime": "2024-7-01 00:00:00",
+ "EndTime": "2024-7-31 23:59:59"
+ },
+ {
+ "ID": 44,
+ "SonPeriodName": "8月",
+ "SerialNo": 8,
+ "PeriodID": 6,
+ "StartTime": "2024-8-01 00:00:00",
+ "EndTime": "2024-8-31 23:59:59"
+ },
+ {
+ "ID": 32,
+ "SonPeriodName": "8月",
+ "SerialNo": 8,
+ "PeriodID": 5,
+ "StartTime": "2024-8-01 00:00:00",
+ "EndTime": "2024-8-31 23:59:59"
+ },
+ {
+ "ID": 20,
+ "SonPeriodName": "8月",
+ "SerialNo": 8,
+ "PeriodID": 3,
+ "StartTime": "2023-8-01",
+ "EndTime": "2023-8-31 23:59:59"
+ },
+ {
+ "ID": 21,
+ "SonPeriodName": "9月",
+ "SerialNo": 9,
+ "PeriodID": 3,
+ "StartTime": "2023-9-01",
+ "EndTime": "2023-9-30 23:59:59"
+ },
+ {
+ "ID": 33,
+ "SonPeriodName": "9月",
+ "SerialNo": 9,
+ "PeriodID": 5,
+ "StartTime": "2024-9-01 00:00:00",
+ "EndTime": "2024-9-30 23:59:59"
+ },
+ {
+ "ID": 45,
+ "SonPeriodName": "9月",
+ "SerialNo": 9,
+ "PeriodID": 6,
+ "StartTime": "2024-9-01 00:00:00",
+ "EndTime": "2024-9-30 23:59:59"
+ },
+ {
+ "ID": 46,
+ "SonPeriodName": "10月",
+ "SerialNo": 10,
+ "PeriodID": 6,
+ "StartTime": "2024-10-01 00:00:00",
+ "EndTime": "2024-10-31 23:59:59"
+ },
+ {
+ "ID": 34,
+ "SonPeriodName": "10月",
+ "SerialNo": 10,
+ "PeriodID": 5,
+ "StartTime": "2024-10-01 00:00:00",
+ "EndTime": "2024-10-31 23:59:59"
+ },
+ {
+ "ID": 22,
+ "SonPeriodName": "10月",
+ "SerialNo": 10,
+ "PeriodID": 3,
+ "StartTime": "2023-10-01",
+ "EndTime": "2023-10-31 23:59:59"
+ },
+ {
+ "ID": 23,
+ "SonPeriodName": "11月",
+ "SerialNo": 11,
+ "PeriodID": 3,
+ "StartTime": "2023-11-01",
+ "EndTime": "2023-11-30 23:59:59"
+ },
+ {
+ "ID": 35,
+ "SonPeriodName": "11月",
+ "SerialNo": 11,
+ "PeriodID": 5,
+ "StartTime": "2024-11-01 00:00:00",
+ "EndTime": "2024-11-30 23:59:59"
+ },
+ {
+ "ID": 47,
+ "SonPeriodName": "11月",
+ "SerialNo": 11,
+ "PeriodID": 6,
+ "StartTime": "2024-11-01 00:00:00",
+ "EndTime": "2024-11-30 23:59:59"
+ },
+ {
+ "ID": 48,
+ "SonPeriodName": "12月",
+ "SerialNo": 12,
+ "PeriodID": 6,
+ "StartTime": "2024-12-01 00:00:00",
+ "EndTime": "2024-12-31 23:59:59"
+ },
+ {
+ "ID": 36,
+ "SonPeriodName": "12月",
+ "SerialNo": 12,
+ "PeriodID": 5,
+ "StartTime": "2024-12-01 00:00:00",
+ "EndTime": "2024-12-31 23:59:59"
+ },
+ {
+ "ID": 24,
+ "SonPeriodName": "12月",
+ "SerialNo": 12,
+ "PeriodID": 3,
+ "StartTime": "2023-12-01",
+ "EndTime": "2023-12-31 23:59:59"
+ }
+ ]
+ tempMonths.value = month.map((item) => {
+ return {
+ ID: item.ID,
+ SonPeriodName: item.SonPeriodName,
+ PeriodID: item.PeriodID,
+ }
+ })
+
+ if (tempMonths.value.length > 0) {
+ console.log(tempMonths.value)
+ selectMonth.value = -1; // 选择第一个月份
+ }
+
+
+ tempMap.value = [
+ {
+ "OrganizeID": "430100",
+ "OrganizeName": "长沙市直属",
+ "lstNeed": [
+ {
+ "OrganizeID": "430100",
+ "OrganizeName": "长沙市直属",
+ "MasterID": 93,
+ "MasterName": "省案件当事人2020(自动)",
+ "FinalRP": "32.54",
+ "SetName": "(省)区",
+ "TBRp": -4.85,
+ "HBRp": 32.54,
+ "QACount": 2
+ },
+ {
+ "OrganizeID": "430100",
+ "OrganizeName": "长沙市直属",
+ "MasterID": 92,
+ "MasterName": "省户政(自动)",
+ "FinalRP": "0.00",
+ "SetName": "(省)区",
+ "TBRp": 0,
+ "HBRp": 0,
+ "QACount": 0
+ },
+ {
+ "OrganizeID": "430100",
+ "OrganizeName": "长沙市直属",
+ "MasterID": 37,
+ "MasterName": "省110接处警(自动)",
+ "FinalRP": "29.20",
+ "SetName": "(省)区",
+ "TBRp": -0.33,
+ "HBRp": 29.2,
+ "QACount": 22
+ },
+ {
+ "OrganizeID": "430100",
+ "OrganizeName": "长沙市直属",
+ "MasterID": 36,
+ "MasterName": "省身份证办理(自动)",
+ "FinalRP": "15.30",
+ "SetName": "(省)区",
+ "TBRp": -0.01,
+ "HBRp": 15.3,
+ "QACount": 0
+ }
+ ]
+ },
+ {
+ "OrganizeID": "430102",
+ "OrganizeName": "湖南省长沙市公安局芙蓉分局",
+ "lstNeed": [
+ {
+ "OrganizeID": "430102",
+ "OrganizeName": "湖南省长沙市公安局芙蓉分局",
+ "MasterID": 92,
+ "MasterName": "省户政(自动)",
+ "FinalRP": "15.32",
+ "SetName": "(省)区",
+ "TBRp": 0.04,
+ "HBRp": 15.32,
+ "QACount": 6
+ },
+ {
+ "OrganizeID": "430102",
+ "OrganizeName": "湖南省长沙市公安局芙蓉分局",
+ "MasterID": 93,
+ "MasterName": "省案件当事人2020(自动)",
+ "FinalRP": "34.87",
+ "SetName": "(省)区",
+ "TBRp": -2.02,
+ "HBRp": 34.87,
+ "QACount": 67
+ },
+ {
+ "OrganizeID": "430102",
+ "OrganizeName": "湖南省长沙市公安局芙蓉分局",
+ "MasterID": 36,
+ "MasterName": "省身份证办理(自动)",
+ "FinalRP": "15.28",
+ "SetName": "(省)区",
+ "TBRp": 0.01,
+ "HBRp": 15.28,
+ "QACount": 3
+ },
+ {
+ "OrganizeID": "430102",
+ "OrganizeName": "湖南省长沙市公安局芙蓉分局",
+ "MasterID": 37,
+ "MasterName": "省110接处警(自动)",
+ "FinalRP": "29.17",
+ "SetName": "(省)区",
+ "TBRp": -0.69,
+ "HBRp": 29.17,
+ "QACount": 87
+ }
+ ]
+ },
+ {
+ "OrganizeID": "430103",
+ "OrganizeName": "湖南省长沙市公安局天心分局",
+ "lstNeed": [
+ {
+ "OrganizeID": "430103",
+ "OrganizeName": "湖南省长沙市公安局天心分局",
+ "MasterID": 92,
+ "MasterName": "省户政(自动)",
+ "FinalRP": "15.31",
+ "SetName": "(省)区",
+ "TBRp": 0,
+ "HBRp": 15.31,
+ "QACount": 16
+ },
+ {
+ "OrganizeID": "430103",
+ "OrganizeName": "湖南省长沙市公安局天心分局",
+ "MasterID": 93,
+ "MasterName": "省案件当事人2020(自动)",
+ "FinalRP": "34.48",
+ "SetName": "(省)区",
+ "TBRp": -2.6,
+ "HBRp": 34.48,
+ "QACount": 120
+ },
+ {
+ "OrganizeID": "430103",
+ "OrganizeName": "湖南省长沙市公安局天心分局",
+ "MasterID": 36,
+ "MasterName": "省身份证办理(自动)",
+ "FinalRP": "15.32",
+ "SetName": "(省)区",
+ "TBRp": 0,
+ "HBRp": 15.32,
+ "QACount": 8
+ },
+ {
+ "OrganizeID": "430103",
+ "OrganizeName": "湖南省长沙市公安局天心分局",
+ "MasterID": 37,
+ "MasterName": "省110接处警(自动)",
+ "FinalRP": "28.82",
+ "SetName": "(省)区",
+ "TBRp": -1.01,
+ "HBRp": 28.82,
+ "QACount": 172
+ }
+ ]
+ },
+ {
+ "OrganizeID": "430104",
+ "OrganizeName": "湖南省长沙市公安局岳麓分局",
+ "lstNeed": [
+ {
+ "OrganizeID": "430104",
+ "OrganizeName": "湖南省长沙市公安局岳麓分局",
+ "MasterID": 36,
+ "MasterName": "省身份证办理(自动)",
+ "FinalRP": "15.31",
+ "SetName": "(省)区",
+ "TBRp": 0.01,
+ "HBRp": 15.31,
+ "QACount": 19
+ },
+ {
+ "OrganizeID": "430104",
+ "OrganizeName": "湖南省长沙市公安局岳麓分局",
+ "MasterID": 37,
+ "MasterName": "省110接处警(自动)",
+ "FinalRP": "28.87",
+ "SetName": "(省)区",
+ "TBRp": -0.99,
+ "HBRp": 28.87,
+ "QACount": 278
+ },
+ {
+ "OrganizeID": "430104",
+ "OrganizeName": "湖南省长沙市公安局岳麓分局",
+ "MasterID": 92,
+ "MasterName": "省户政(自动)",
+ "FinalRP": "15.30",
+ "SetName": "(省)区",
+ "TBRp": 0.02,
+ "HBRp": 15.3,
+ "QACount": 23
+ },
+ {
+ "OrganizeID": "430104",
+ "OrganizeName": "湖南省长沙市公安局岳麓分局",
+ "MasterID": 93,
+ "MasterName": "省案件当事人2020(自动)",
+ "FinalRP": "33.44",
+ "SetName": "(省)区",
+ "TBRp": -2.07,
+ "HBRp": 33.44,
+ "QACount": 210
+ }
+ ]
+ },
+ {
+ "OrganizeID": "430105",
+ "OrganizeName": "湖南省长沙市公安局开福分局",
+ "lstNeed": [
+ {
+ "OrganizeID": "430105",
+ "OrganizeName": "湖南省长沙市公安局开福分局",
+ "MasterID": 92,
+ "MasterName": "省户政(自动)",
+ "FinalRP": "15.30",
+ "SetName": "(省)区",
+ "TBRp": 0,
+ "HBRp": 15.3,
+ "QACount": 11
+ },
+ {
+ "OrganizeID": "430105",
+ "OrganizeName": "湖南省长沙市公安局开福分局",
+ "MasterID": 93,
+ "MasterName": "省案件当事人2020(自动)",
+ "FinalRP": "34.81",
+ "SetName": "(省)区",
+ "TBRp": -1.69,
+ "HBRp": 34.81,
+ "QACount": 95
+ },
+ {
+ "OrganizeID": "430105",
+ "OrganizeName": "湖南省长沙市公安局开福分局",
+ "MasterID": 36,
+ "MasterName": "省身份证办理(自动)",
+ "FinalRP": "15.21",
+ "SetName": "(省)区",
+ "TBRp": -0.08,
+ "HBRp": 15.21,
+ "QACount": 10
+ },
+ {
+ "OrganizeID": "430105",
+ "OrganizeName": "湖南省长沙市公安局开福分局",
+ "MasterID": 37,
+ "MasterName": "省110接处警(自动)",
+ "FinalRP": "28.82",
+ "SetName": "(省)区",
+ "TBRp": -1.13,
+ "HBRp": 28.82,
+ "QACount": 136
+ }
+ ]
+ },
+ {
+ "OrganizeID": "430111",
+ "OrganizeName": "湖南省长沙市公安局雨花分局",
+ "lstNeed": [
+ {
+ "OrganizeID": "430111",
+ "OrganizeName": "湖南省长沙市公安局雨花分局",
+ "MasterID": 93,
+ "MasterName": "省案件当事人2020(自动)",
+ "FinalRP": "33.93",
+ "SetName": "(省)区",
+ "TBRp": -1.41,
+ "HBRp": 33.93,
+ "QACount": 237
+ },
+ {
+ "OrganizeID": "430111",
+ "OrganizeName": "湖南省长沙市公安局雨花分局",
+ "MasterID": 92,
+ "MasterName": "省户政(自动)",
+ "FinalRP": "15.30",
+ "SetName": "(省)区",
+ "TBRp": 0.01,
+ "HBRp": 15.3,
+ "QACount": 16
+ },
+ {
+ "OrganizeID": "430111",
+ "OrganizeName": "湖南省长沙市公安局雨花分局",
+ "MasterID": 36,
+ "MasterName": "省身份证办理(自动)",
+ "FinalRP": "15.31",
+ "SetName": "(省)区",
+ "TBRp": 0.02,
+ "HBRp": 15.31,
+ "QACount": 9
+ },
+ {
+ "OrganizeID": "430111",
+ "OrganizeName": "湖南省长沙市公安局雨花分局",
+ "MasterID": 37,
+ "MasterName": "省110接处警(自动)",
+ "FinalRP": "28.88",
+ "SetName": "(省)区",
+ "TBRp": -0.97,
+ "HBRp": 28.88,
+ "QACount": 250
+ }
+ ]
+ },
+ {
+ "OrganizeID": "430112",
+ "OrganizeName": "湖南省长沙市公安局望城分局",
+ "lstNeed": [
+ {
+ "OrganizeID": "430112",
+ "OrganizeName": "湖南省长沙市公安局望城分局",
+ "MasterID": 92,
+ "MasterName": "省户政(自动)",
+ "FinalRP": "9.98",
+ "SetName": "(省)县市考评",
+ "TBRp": 0.02,
+ "HBRp": 9.98,
+ "QACount": 3
+ },
+ {
+ "OrganizeID": "430112",
+ "OrganizeName": "湖南省长沙市公安局望城分局",
+ "MasterID": 93,
+ "MasterName": "省案件当事人2020(自动)",
+ "FinalRP": "22.33",
+ "SetName": "(省)县市考评",
+ "TBRp": -1.43,
+ "HBRp": 22.33,
+ "QACount": 51
+ },
+ {
+ "OrganizeID": "430112",
+ "OrganizeName": "湖南省长沙市公安局望城分局",
+ "MasterID": 36,
+ "MasterName": "省身份证办理(自动)",
+ "FinalRP": "9.96",
+ "SetName": "(省)县市考评",
+ "TBRp": 0,
+ "HBRp": 9.96,
+ "QACount": 1
+ },
+ {
+ "OrganizeID": "430112",
+ "OrganizeName": "湖南省长沙市公安局望城分局",
+ "MasterID": 35,
+ "MasterName": "省车辆上户(自动)",
+ "FinalRP": "9.94",
+ "SetName": "(省)县市考评",
+ "TBRp": 0.01,
+ "HBRp": 9.94,
+ "QACount": 12
+ },
+ {
+ "OrganizeID": "430112",
+ "OrganizeName": "湖南省长沙市公安局望城分局",
+ "MasterID": 38,
+ "MasterName": "省122接处警(自动)",
+ "FinalRP": "14.46",
+ "SetName": "(省)县市考评",
+ "TBRp": -0.11,
+ "HBRp": 14.46,
+ "QACount": 174
+ },
+ {
+ "OrganizeID": "430112",
+ "OrganizeName": "湖南省长沙市公安局望城分局",
+ "MasterID": 37,
+ "MasterName": "省110接处警(自动)",
+ "FinalRP": "18.88",
+ "SetName": "(省)县市考评",
+ "TBRp": -0.48,
+ "HBRp": 18.88,
+ "QACount": 49
+ },
+ {
+ "OrganizeID": "430112",
+ "OrganizeName": "湖南省长沙市公安局望城分局",
+ "MasterID": 33,
+ "MasterName": "省驾考(自动)",
+ "FinalRP": "10.00",
+ "SetName": "(省)县市考评",
+ "TBRp": 0,
+ "HBRp": 10,
+ "QACount": 0
+ }
+ ]
+ },
+ {
+ "OrganizeID": "430121",
+ "OrganizeName": "湖南省长沙市公安局长沙县公安局",
+ "lstNeed": [
+ {
+ "OrganizeID": "430121",
+ "OrganizeName": "湖南省长沙市公安局长沙县公安局",
+ "MasterID": 38,
+ "MasterName": "省122接处警(自动)",
+ "FinalRP": "14.38",
+ "SetName": "(省)县市考评",
+ "TBRp": -0.24,
+ "HBRp": 14.38,
+ "QACount": 466
+ },
+ {
+ "OrganizeID": "430121",
+ "OrganizeName": "湖南省长沙市公安局长沙县公安局",
+ "MasterID": 35,
+ "MasterName": "省车辆上户(自动)",
+ "FinalRP": "9.95",
+ "SetName": "(省)县市考评",
+ "TBRp": 0.01,
+ "HBRp": 9.95,
+ "QACount": 3
+ },
+ {
+ "OrganizeID": "430121",
+ "OrganizeName": "湖南省长沙市公安局长沙县公安局",
+ "MasterID": 33,
+ "MasterName": "省驾考(自动)",
+ "FinalRP": "0.00",
+ "SetName": "(省)县市考评",
+ "TBRp": -9.94,
+ "HBRp": 0,
+ "QACount": 0
+ },
+ {
+ "OrganizeID": "430121",
+ "OrganizeName": "湖南省长沙市公安局长沙县公安局",
+ "MasterID": 92,
+ "MasterName": "省户政(自动)",
+ "FinalRP": "9.97",
+ "SetName": "(省)县市考评",
+ "TBRp": 0.02,
+ "HBRp": 9.97,
+ "QACount": 5
+ },
+ {
+ "OrganizeID": "430121",
+ "OrganizeName": "湖南省长沙市公安局长沙县公安局",
+ "MasterID": 37,
+ "MasterName": "省110接处警(自动)",
+ "FinalRP": "18.71",
+ "SetName": "(省)县市考评",
+ "TBRp": -0.48,
+ "HBRp": 18.71,
+ "QACount": 129
+ },
+ {
+ "OrganizeID": "430121",
+ "OrganizeName": "湖南省长沙市公安局长沙县公安局",
+ "MasterID": 36,
+ "MasterName": "省身份证办理(自动)",
+ "FinalRP": "9.94",
+ "SetName": "(省)县市考评",
+ "TBRp": -0.01,
+ "HBRp": 9.94,
+ "QACount": 13
+ },
+ {
+ "OrganizeID": "430121",
+ "OrganizeName": "湖南省长沙市公安局长沙县公安局",
+ "MasterID": 93,
+ "MasterName": "省案件当事人2020(自动)",
+ "FinalRP": "22.17",
+ "SetName": "(省)县市考评",
+ "TBRp": -1.11,
+ "HBRp": 22.17,
+ "QACount": 82
+ }
+ ]
+ },
+ {
+ "OrganizeID": "430124",
+ "OrganizeName": "湖南省长沙市公安局宁乡市公安局",
+ "lstNeed": [
+ {
+ "OrganizeID": "430124",
+ "OrganizeName": "湖南省长沙市公安局宁乡市公安局",
+ "MasterID": 33,
+ "MasterName": "省驾考(自动)",
+ "FinalRP": "9.94",
+ "SetName": "(省)县市考评",
+ "TBRp": 0.03,
+ "HBRp": 9.94,
+ "QACount": 0
+ },
+ {
+ "OrganizeID": "430124",
+ "OrganizeName": "湖南省长沙市公安局宁乡市公安局",
+ "MasterID": 35,
+ "MasterName": "省车辆上户(自动)",
+ "FinalRP": "9.92",
+ "SetName": "(省)县市考评",
+ "TBRp": 0,
+ "HBRp": 9.92,
+ "QACount": 12
+ },
+ {
+ "OrganizeID": "430124",
+ "OrganizeName": "湖南省长沙市公安局宁乡市公安局",
+ "MasterID": 92,
+ "MasterName": "省户政(自动)",
+ "FinalRP": "9.97",
+ "SetName": "(省)县市考评",
+ "TBRp": 0,
+ "HBRp": 9.97,
+ "QACount": 5
+ },
+ {
+ "OrganizeID": "430124",
+ "OrganizeName": "湖南省长沙市公安局宁乡市公安局",
+ "MasterID": 38,
+ "MasterName": "省122接处警(自动)",
+ "FinalRP": "14.59",
+ "SetName": "(省)县市考评",
+ "TBRp": -0.09,
+ "HBRp": 14.59,
+ "QACount": 163
+ },
+ {
+ "OrganizeID": "430124",
+ "OrganizeName": "湖南省长沙市公安局宁乡市公安局",
+ "MasterID": 37,
+ "MasterName": "省110接处警(自动)",
+ "FinalRP": "18.87",
+ "SetName": "(省)县市考评",
+ "TBRp": -0.53,
+ "HBRp": 18.87,
+ "QACount": 43
+ },
+ {
+ "OrganizeID": "430124",
+ "OrganizeName": "湖南省长沙市公安局宁乡市公安局",
+ "MasterID": 36,
+ "MasterName": "省身份证办理(自动)",
+ "FinalRP": "9.96",
+ "SetName": "(省)县市考评",
+ "TBRp": 0,
+ "HBRp": 9.96,
+ "QACount": 2
+ },
+ {
+ "OrganizeID": "430124",
+ "OrganizeName": "湖南省长沙市公安局宁乡市公安局",
+ "MasterID": 93,
+ "MasterName": "省案件当事人2020(自动)",
+ "FinalRP": "22.69",
+ "SetName": "(省)县市考评",
+ "TBRp": -1.12,
+ "HBRp": 22.69,
+ "QACount": 39
+ }
+ ]
+ },
+ {
+ "OrganizeID": "430181",
+ "OrganizeName": "湖南省长沙市公安局浏阳市公安局",
+ "lstNeed": [
+ {
+ "OrganizeID": "430181",
+ "OrganizeName": "湖南省长沙市公安局浏阳市公安局",
+ "MasterID": 35,
+ "MasterName": "省车辆上户(自动)",
+ "FinalRP": "9.92",
+ "SetName": "(省)县市考评",
+ "TBRp": -0.01,
+ "HBRp": 9.92,
+ "QACount": 14
+ },
+ {
+ "OrganizeID": "430181",
+ "OrganizeName": "湖南省长沙市公安局浏阳市公安局",
+ "MasterID": 33,
+ "MasterName": "省驾考(自动)",
+ "FinalRP": "10.00",
+ "SetName": "(省)县市考评",
+ "TBRp": 0,
+ "HBRp": 10,
+ "QACount": 0
+ },
+ {
+ "OrganizeID": "430181",
+ "OrganizeName": "湖南省长沙市公安局浏阳市公安局",
+ "MasterID": 37,
+ "MasterName": "省110接处警(自动)",
+ "FinalRP": "18.71",
+ "SetName": "(省)县市考评",
+ "TBRp": -0.43,
+ "HBRp": 18.71,
+ "QACount": 78
+ },
+ {
+ "OrganizeID": "430181",
+ "OrganizeName": "湖南省长沙市公安局浏阳市公安局",
+ "MasterID": 92,
+ "MasterName": "省户政(自动)",
+ "FinalRP": "9.97",
+ "SetName": "(省)县市考评",
+ "TBRp": 0.01,
+ "HBRp": 9.97,
+ "QACount": 7
+ },
+ {
+ "OrganizeID": "430181",
+ "OrganizeName": "湖南省长沙市公安局浏阳市公安局",
+ "MasterID": 38,
+ "MasterName": "省122接处警(自动)",
+ "FinalRP": "14.41",
+ "SetName": "(省)县市考评",
+ "TBRp": -0.22,
+ "HBRp": 14.41,
+ "QACount": 211
+ },
+ {
+ "OrganizeID": "430181",
+ "OrganizeName": "湖南省长沙市公安局浏阳市公安局",
+ "MasterID": 36,
+ "MasterName": "省身份证办理(自动)",
+ "FinalRP": "9.96",
+ "SetName": "(省)县市考评",
+ "TBRp": 0.01,
+ "HBRp": 9.96,
+ "QACount": 10
+ },
+ {
+ "OrganizeID": "430181",
+ "OrganizeName": "湖南省长沙市公安局浏阳市公安局",
+ "MasterID": 93,
+ "MasterName": "省案件当事人2020(自动)",
+ "FinalRP": "22.14",
+ "SetName": "(省)县市考评",
+ "TBRp": -1.58,
+ "HBRp": 22.14,
+ "QACount": 83
+ }
+ ]
+ },
+ {
+ "OrganizeID": "430197",
+ "OrganizeName": "湖南省长沙市公安局公共交通治安管理分局",
+ "lstNeed": [
+ {
+ "OrganizeID": "430197",
+ "OrganizeName": "湖南省长沙市公安局公共交通治安管理分局",
+ "MasterID": 37,
+ "MasterName": "省110接处警(自动)",
+ "FinalRP": "28.64",
+ "SetName": "(省)区",
+ "TBRp": -0.87,
+ "HBRp": 28.64,
+ "QACount": 11
+ },
+ {
+ "OrganizeID": "430197",
+ "OrganizeName": "湖南省长沙市公安局公共交通治安管理分局",
+ "MasterID": 93,
+ "MasterName": "省案件当事人2020(自动)",
+ "FinalRP": "37.44",
+ "SetName": "(省)区",
+ "TBRp": 2.44,
+ "HBRp": 37.44,
+ "QACount": 0
+ },
+ {
+ "OrganizeID": "430197",
+ "OrganizeName": "湖南省长沙市公安局公共交通治安管理分局",
+ "MasterID": 92,
+ "MasterName": "省户政(自动)",
+ "FinalRP": "0.00",
+ "SetName": "(省)区",
+ "TBRp": 0,
+ "HBRp": 0,
+ "QACount": 0
+ },
+ {
+ "OrganizeID": "430197",
+ "OrganizeName": "湖南省长沙市公安局公共交通治安管理分局",
+ "MasterID": 36,
+ "MasterName": "省身份证办理(自动)",
+ "FinalRP": "0.00",
+ "SetName": "(省)区",
+ "TBRp": 0,
+ "HBRp": 0,
+ "QACount": 0
+ }
+ ]
+ },
+ {
+ "OrganizeID": "430199",
+ "OrganizeName": "湖南省长沙市公安局高新区分局",
+ "lstNeed": [
+ {
+ "OrganizeID": "430199",
+ "OrganizeName": "湖南省长沙市公安局高新区分局",
+ "MasterID": 93,
+ "MasterName": "省案件当事人2020(自动)",
+ "FinalRP": "34.69",
+ "SetName": "(省)区",
+ "TBRp": -1.83,
+ "HBRp": 34.69,
+ "QACount": 58
+ },
+ {
+ "OrganizeID": "430199",
+ "OrganizeName": "湖南省长沙市公安局高新区分局",
+ "MasterID": 92,
+ "MasterName": "省户政(自动)",
+ "FinalRP": "15.33",
+ "SetName": "(省)区",
+ "TBRp": 0.03,
+ "HBRp": 15.33,
+ "QACount": 5
+ },
+ {
+ "OrganizeID": "430199",
+ "OrganizeName": "湖南省长沙市公安局高新区分局",
+ "MasterID": 37,
+ "MasterName": "省110接处警(自动)",
+ "FinalRP": "29.03",
+ "SetName": "(省)区",
+ "TBRp": -0.89,
+ "HBRp": 29.03,
+ "QACount": 53
+ },
+ {
+ "OrganizeID": "430199",
+ "OrganizeName": "湖南省长沙市公安局高新区分局",
+ "MasterID": 36,
+ "MasterName": "省身份证办理(自动)",
+ "FinalRP": "15.29",
+ "SetName": "(省)区",
+ "TBRp": -0.06,
+ "HBRp": 15.29,
+ "QACount": 2
+ }
+ ]
+ }
+ ]
+ mapDataList.value = tempMap.value.map(org => {
+ return {name: org.OrganizeName, value: org.OrganizeID};
+ })
+ option.value.series.data = mapDataList.value
+
+ // 组织机构
+ let tempOrgs =
+ [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301",
+ "text": "湖南省长沙市公安局",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": null,
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430100",
+ "text": "长沙市直属",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "4301",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010000",
+ "text": "车辆分所",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "430100",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301000004",
+ "text": "直属分所",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "43010000",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430100000400",
+ "text": "支队车管所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "4301000004",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430100000441",
+ "text": "中南分所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "4301000004",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430100000442",
+ "text": "城南分所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "4301000004",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430100000443",
+ "text": "城北分所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "4301000004",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430100000444",
+ "text": "城西分所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "4301000004",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430100000445",
+ "text": "万家丽分所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "4301000004",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430100000468",
+ "text": "潇湘分所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "4301000004",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430100000469",
+ "text": "城东分所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "4301000004",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010002",
+ "text": "湖南省长沙市公安局经济犯罪侦查支队",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "430100",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301000212",
+ "text": "湖南省长沙市公安局经济犯罪侦查支队法制大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43010002",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010003",
+ "text": "湖南省长沙市公安局治安管理支队",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "430100",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301000312",
+ "text": "湖南省长沙市公安局治安管理支队法制大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43010003",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010005",
+ "text": "湖南省长沙市公安局刑事侦查支队",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "430100",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301000512",
+ "text": "湖南省长沙市公安局刑事侦查支队法制大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43010005",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010006",
+ "text": "湖南省长沙市公安局人口与出入境管理支队",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "430100",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301000612",
+ "text": "湖南省长沙市公安局人口与出入境管理支队法制大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43010006",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010008",
+ "text": "湖南省长沙市公安局警令部",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "430100",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301000802",
+ "text": "湖南省长沙市公安局警令部110指挥中心",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43010008",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010009",
+ "text": "长沙市公安局人口管理处",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430100",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010014",
+ "text": "湖南省长沙市公安局特勤局",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430100",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010017",
+ "text": "交通警察支队",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "430100",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301001702",
+ "text": "湖南省长沙市公安局交通警察支队指挥中心",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43010017",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301001738",
+ "text": "城区直属考场",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "43010017",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430100173801",
+ "text": "宁乡城投考场",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "4301001738",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430100173802",
+ "text": "宁乡考场",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "4301001738",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430100173803",
+ "text": "浏阳考场",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "4301001738",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430100173804",
+ "text": "青竹湖中心考场",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "4301001738",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430100173805",
+ "text": "星沙考场",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "4301001738",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430100173806",
+ "text": "麓谷考场",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "4301001738",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430100173807",
+ "text": "张公岭考场",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "4301001738",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430100173808",
+ "text": "大托考场",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "4301001738",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430100173809",
+ "text": "南托摩托车考场",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "4301001738",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430100173810",
+ "text": "树木岭摩托车考场",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "4301001738",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430100173811",
+ "text": "开元摩托车考场",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "4301001738",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430100173812",
+ "text": "莲花摩托车考场",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "4301001738",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301001740",
+ "text": "交通警察支队机动车驾驶人考试中心",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43010017",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301001741",
+ "text": "交通警察支队芙蓉大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43010017",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301001742",
+ "text": "交通警察支队天心大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43010017",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301001743",
+ "text": "交通警察支队岳麓大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43010017",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301001744",
+ "text": "交通警察支队开福大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43010017",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301001745",
+ "text": "交通警察支队雨花大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43010017",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301001746",
+ "text": "交通警察支队环城公路管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43010017",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301001747",
+ "text": "长沙市公安局交警支队经开区交通警察大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43010017",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301001751",
+ "text": "交通警察支队高新区大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43010017",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301001756",
+ "text": "交通警察支队122处警大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43010017",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301001757",
+ "text": "交通警察支队特别勤务大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43010017",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010029",
+ "text": "长沙市公安局110报警中心",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430100",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010040",
+ "text": "长沙市公安局后勤服务中心",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430100",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010080",
+ "text": "湖南省长沙市公安局知识产权犯罪侦查支队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430100",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010095",
+ "text": "湖南省长沙市公安局特巡警支队",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "430100",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301009512",
+ "text": "湖南省长沙市公安局特巡警支队法制大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43010095",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430100M0",
+ "text": "湖南省长沙市公安局黄花机场分局",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430100",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430100W0",
+ "text": "外省机构",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430100",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430100X1",
+ "text": "长沙市公安局湖南消防总队培训基地",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430100",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430102",
+ "text": "芙蓉分局",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "4301",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010202",
+ "text": "芙蓉分局经济犯罪侦查大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430102",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010203",
+ "text": "芙蓉分局第一治安管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430102",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010204",
+ "text": "芙蓉分局第二治安管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430102",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010205",
+ "text": "芙蓉分局刑事侦查大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430102",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010206",
+ "text": "芙蓉分局人口与出入境管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430102",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010207",
+ "text": "芙蓉分局消防大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430102",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010209",
+ "text": "长沙市芙蓉分局户政管理科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430102",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010218",
+ "text": "湖南省长沙市公安局芙蓉分局法制大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430102",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010229",
+ "text": "湖南省长沙市公安局芙蓉分局指挥中心(办公室)",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430102",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010232",
+ "text": "湖南省长沙市公安局芙蓉分局纪委(监察室)",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430102",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010245",
+ "text": "韭菜园派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430102",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010246",
+ "text": "文艺路派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430102",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010247",
+ "text": "蓉园派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430102",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010248",
+ "text": "朝阳街派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430102",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010249",
+ "text": "五里牌派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430102",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010250",
+ "text": "火星派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430102",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010251",
+ "text": "东屯渡派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430102",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010252",
+ "text": "马王堆派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430102",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010253",
+ "text": "马坡岭派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430102",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010255",
+ "text": "东湖派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430102",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010261",
+ "text": "定王台派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430102",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010262",
+ "text": "湘湖派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430102",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010263",
+ "text": "荷花园派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430102",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010264",
+ "text": "东岸派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430102",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010295",
+ "text": "芙蓉分局第三治安管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430102",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010298",
+ "text": "芙蓉分局巡警大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430102",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430102X0",
+ "text": "长沙市公安局芙蓉分局芙蓉区大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430102",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430103",
+ "text": "天心分局",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "4301",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010302",
+ "text": "天心分局经济犯罪侦查大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010303",
+ "text": "天心分局第一治安管理大队",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301030341",
+ "text": "长沙市天心分局第一治安管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43010303",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301030342",
+ "text": "长沙市天心分局第二治安管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43010303",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010304",
+ "text": "天心分局第二治安管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010305",
+ "text": "天心分局刑事侦查大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010306",
+ "text": "天心分局人口与出入境管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010309",
+ "text": "长沙市天心分局户政管理科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010318",
+ "text": "湖南省长沙市公安局天心分局法制大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010329",
+ "text": "天心分局指挥中心",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010331",
+ "text": "天心分局办公室",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301033102",
+ "text": "长沙市天心分局指挥中心",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43010331",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010332",
+ "text": "天心分局监察室",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010333",
+ "text": "长沙市天心分局监察室",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010342",
+ "text": "城南路派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010344",
+ "text": "裕南街派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010345",
+ "text": "金盆岭派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010346",
+ "text": "新开铺派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010347",
+ "text": "大托铺派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010348",
+ "text": "青园派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010349",
+ "text": "桂花坪派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010350",
+ "text": "坡子街派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010351",
+ "text": "暮云派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010352",
+ "text": "文源派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010353",
+ "text": "黑石铺派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010354",
+ "text": "先锋派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010355",
+ "text": "南托派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010356",
+ "text": "赤岭路派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010383",
+ "text": "天心分局工会",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010384",
+ "text": "天心分局团委",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010395",
+ "text": "天心分局第三治安管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010398",
+ "text": "天心分局巡警大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430103X0",
+ "text": "长沙市公安局天心分局天心区大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430104",
+ "text": "岳麓分局",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "4301",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010402",
+ "text": "岳麓分局经济犯罪侦查大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010403",
+ "text": "岳麓分局第一治安管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010404",
+ "text": "岳麓分局第二治安管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010405",
+ "text": "岳麓分局刑事侦查大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010406",
+ "text": "岳麓分局人口与出入境管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010409",
+ "text": "长沙市岳麓分局户政管理科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010418",
+ "text": "湖南省长沙市公安局岳麓分局法制大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010429",
+ "text": "岳麓分局指挥中心",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010431",
+ "text": "长沙市岳麓分局办公室",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010432",
+ "text": "岳麓分局纪委",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010433",
+ "text": "岳麓分局监察室",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010435",
+ "text": "岳麓分局政治工作办公室",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010441",
+ "text": "岳麓派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010442",
+ "text": "桔子洲派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010443",
+ "text": "望月湖派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010444",
+ "text": "银盆岭派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010445",
+ "text": "观沙岭派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010446",
+ "text": "西湖派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010447",
+ "text": "望岳派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010448",
+ "text": "望城坡派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010449",
+ "text": "天顶派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010450",
+ "text": "金星派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010451",
+ "text": "坪塘派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010452",
+ "text": "含浦派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010453",
+ "text": "莲花派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010454",
+ "text": "咸嘉湖派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010455",
+ "text": "雨敞坪派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010456",
+ "text": "梅溪湖派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010457",
+ "text": "白箬铺派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010480",
+ "text": "岳麓分局高支队长潭西大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010495",
+ "text": "岳麓分局第三治安管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010498",
+ "text": "岳麓分局巡警大队",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301049835",
+ "text": "岳麓分局巡警大队岳麓片区",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43010498",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301049836",
+ "text": "岳麓分局巡警大队西湖片区",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43010498",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301049837",
+ "text": "岳麓分局巡警大队望城坡片区",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43010498",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430104G6",
+ "text": "长沙市公安局岳麓分局高警局长沙支队白箬大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430104GA",
+ "text": "长沙市公安局岳麓分局高警局长沙支队道林大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430104X0",
+ "text": "岳麓分局消防支队岳麓区大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430104",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430105",
+ "text": "开福分局",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "4301",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010502",
+ "text": "开福分局经济犯罪侦查大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010503",
+ "text": "开福分局第一治安管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010504",
+ "text": "开福分局第二治安管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010505",
+ "text": "开福分局刑事犯罪侦查大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010506",
+ "text": "开福分局人口与出入境管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010509",
+ "text": "长沙市开福分局户政科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010511",
+ "text": "湖南省长沙市公安局开福分局网络安全保卫大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010518",
+ "text": "湖南省长沙市公安局开福分局法制大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010529",
+ "text": "开福分局指挥中心(办公室)",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010531",
+ "text": "长沙市开福分局办公室",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010532",
+ "text": "开福分局纪委(监察室)",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010535",
+ "text": "开福分局政治工作办公室",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010538",
+ "text": "长沙市开福分局机关党总支部",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010541",
+ "text": "湘雅路派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010542",
+ "text": "望麓园派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010543",
+ "text": "伍家岭派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010544",
+ "text": "东风路派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010545",
+ "text": "清水塘派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010546",
+ "text": "新河派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010547",
+ "text": "四方坪派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010548",
+ "text": "青竹湖派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010549",
+ "text": "通泰街派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010550",
+ "text": "洪山桥派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010551",
+ "text": "捞刀河派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010552",
+ "text": "新港派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010553",
+ "text": "芙蓉北路派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010554",
+ "text": "德雅路派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010555",
+ "text": "沙坪派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010595",
+ "text": "开福分局第三治安管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43010598",
+ "text": "开福分局巡警大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430105X0",
+ "text": "长沙市公安局开福分局开福区大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430105X1",
+ "text": "长沙市公安局开福分局开福区大队培训基地",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430105X2",
+ "text": "长沙市公安局开福分局开福区大队特勤大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430105",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430111",
+ "text": "雨花分局",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "4301",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011102",
+ "text": "雨花分局经济犯罪侦查大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011103",
+ "text": "雨花分局第一治安管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011104",
+ "text": "雨花分局第二治安管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011105",
+ "text": "雨花分局刑事侦查大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011106",
+ "text": "雨花分局人口与出入境管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011109",
+ "text": "长沙市雨花分局户政科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011111",
+ "text": "雨花分局网络安全保卫大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011114",
+ "text": "雨花分局警卫科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011118",
+ "text": "雨花分局法制大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011120",
+ "text": "雨花分局后勤保障科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011121",
+ "text": "雨花分局禁毒大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011125",
+ "text": "雨花分局城市管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011128",
+ "text": "雨花分局单位内部安全保卫大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011129",
+ "text": "雨花分局指挥中心",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011131",
+ "text": "长沙市雨花分局办公室",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011133",
+ "text": "雨花分局纪委(监察室、督察大队)",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011135",
+ "text": "雨花分局政治工作办公室",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011141",
+ "text": "雨花亭派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011142",
+ "text": "左家塘派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011143",
+ "text": "侯家塘派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011144",
+ "text": "东塘派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011145",
+ "text": "砂子塘派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011146",
+ "text": "洞井派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011147",
+ "text": "圭塘派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011148",
+ "text": "高桥派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011149",
+ "text": "黎托派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011150",
+ "text": "同升派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011152",
+ "text": "跳马派出所",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301115244",
+ "text": "雨花分局跳马派出所其他队室 ",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43011152",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011161",
+ "text": "井湾子派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011162",
+ "text": "东山派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011195",
+ "text": "雨花分局第三治安管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011198",
+ "text": "雨花分局巡警大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430111X0",
+ "text": "长沙市公安局雨花分局雨花区大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430111",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430112",
+ "text": "望城分局",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "4301",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011202",
+ "text": "望城分局经济犯罪侦查大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011203",
+ "text": "望城分局治安管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011205",
+ "text": "望城分局刑事侦查大队",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301120514",
+ "text": "望城分局刑事侦查大队刑事科学技术室(刑事情报研究室)",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43011205",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011206",
+ "text": "望城分局人口与出入境管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011211",
+ "text": "望城分局网络安全大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011214",
+ "text": "望城分局警卫科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011217",
+ "text": "望城分局交通警察大队",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301121735",
+ "text": "望城分局交通警察大队交警大队车辆管理所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43011217",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301121736",
+ "text": "望城分局交通警察大队交警大队秩序科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43011217",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011218",
+ "text": "望城分局法制大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011220",
+ "text": "望城分局警务保障室",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011221",
+ "text": "望城分局禁毒大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011228",
+ "text": "望城分局单位内部安全保卫大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011231",
+ "text": "望城分局指挥中心(办公室)",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011232",
+ "text": "望城分局警务督察大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011235",
+ "text": "望城分局政治工作办公室",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011241",
+ "text": "高塘岭派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011242",
+ "text": "同兴派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011243",
+ "text": "乌山派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011245",
+ "text": "大泽湖派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011247",
+ "text": "桥驿派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011248",
+ "text": "丁字湾派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011249",
+ "text": "铜官派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011250",
+ "text": "茶亭派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011251",
+ "text": "格塘派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011252",
+ "text": "靖港派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011253",
+ "text": "乔口派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011254",
+ "text": "新康派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011255",
+ "text": "水上派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011256",
+ "text": "月亮岛派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011257",
+ "text": "白沙洲派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011287",
+ "text": "望城分局食品药品环境犯罪侦查大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011288",
+ "text": "望城分局望城区森林公安局",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43011295",
+ "text": "望城分局巡逻警察大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430112G0",
+ "text": "望城分局高警局长沙支队望城大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430112",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430121",
+ "text": "长沙县公安局",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "4301",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012102",
+ "text": "长沙县公安局经济犯罪侦查大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012103",
+ "text": "长沙县公安局治安管理大队",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301210301",
+ "text": "长沙县公安局治安管理大队公安局治安巡防队管理工作办公室",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43012103",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012105",
+ "text": "长沙县公安局刑事侦查大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012106",
+ "text": "长沙县公安局人口与出入境管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012109",
+ "text": "长沙县公安局户政管理科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012111",
+ "text": "长沙县公安局网络安全保卫大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012114",
+ "text": "长沙县公安局警卫科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012117",
+ "text": "长沙县公安局交通警察大队",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301211701",
+ "text": "长沙县公安局交通警察大队办公室",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43012117",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301211712",
+ "text": "长沙县公安局交通警察大队法制科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43012117",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301211735",
+ "text": "长沙县公安局交通警察大队处罚室",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43012117",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301211736",
+ "text": "长沙县公安局交通警察大队车管所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43012117",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012118",
+ "text": "湖南省长沙市公安局长沙县公安局法制科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012129",
+ "text": "长沙县公安局指挥中心",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012131",
+ "text": "长沙县公安局办公室",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012132",
+ "text": "长沙县公安局督察大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012133",
+ "text": "长沙县公安局纪委",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012135",
+ "text": "长沙县公安局政治工作办公室",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012141",
+ "text": "星沙派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012142",
+ "text": "安沙派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012143",
+ "text": "黄花派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012144",
+ "text": "春华派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012145",
+ "text": "江背派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012146",
+ "text": "金井派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012148",
+ "text": "路口派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012149",
+ "text": "高桥派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012150",
+ "text": "果园派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012151",
+ "text": "福临派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012152",
+ "text": "开慧派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012154",
+ "text": "青山铺派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012155",
+ "text": "北山派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012156",
+ "text": "榔梨派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012157",
+ "text": "黄兴派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012161",
+ "text": "新安派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012162",
+ "text": "湘龙派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012163",
+ "text": "泉塘派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012165",
+ "text": "长龙派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012178",
+ "text": "长沙县公安局高支队长永大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012179",
+ "text": "长沙县公安局高支队长潭大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012180",
+ "text": "长沙县公安局高支队临长大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012186",
+ "text": "长沙县公安局食品药品环境犯罪侦查大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012188",
+ "text": "长沙县公安局森林公安局",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012193",
+ "text": "湖南省长沙县拘留所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012195",
+ "text": "长沙县公安局治安巡防队管理工作办公室 ",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012198",
+ "text": "长沙县公安局巡逻警察大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430121G0",
+ "text": "长沙市公安局长沙县公安局高警局长沙支队星沙大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430121G1",
+ "text": "长沙市公安局长沙县公安局高警局长沙支队榔梨大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430121G2",
+ "text": "长沙市公安局长沙县公安局长潭大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430121G3",
+ "text": "长沙市公安局长沙县公安局高警局长沙支队水渡河大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430121X0",
+ "text": "长沙县公安局长沙县大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430121",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430124",
+ "text": "宁乡市公安局",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "4301",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012402",
+ "text": "宁乡市公安局经济犯罪侦查大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012403",
+ "text": "宁乡市公安局治安管理大队",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301240329",
+ "text": "宁乡市公安局治安管理大队执勤室",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43012403",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012405",
+ "text": "宁乡市公安局刑事侦查大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012406",
+ "text": "宁乡市公安局人口与出入境管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012409",
+ "text": "宁乡县公安局户政科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012411",
+ "text": "宁乡市公安局网络安全保卫大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012414",
+ "text": "宁乡市公安局警卫科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012417",
+ "text": "宁乡市公安局交通警察大队",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301241735",
+ "text": "宁乡市公安局交通警察大队车管所",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "43012417",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430124173501",
+ "text": "宁乡市车管所金洲分所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "4301241735",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430124173502",
+ "text": "宁乡市车管所白马分所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "4301241735",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012418",
+ "text": "宁乡市公安局法制大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012420",
+ "text": "宁乡市公安局后勤保障科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012421",
+ "text": "宁乡市公安局禁毒大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012431",
+ "text": "宁乡市公安局指挥中心",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301243117",
+ "text": "湖南省长沙市公安局宁乡市公安局指挥中心(办公室、反恐办)情报信息中心",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43012431",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012441",
+ "text": "玉潭派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012442",
+ "text": "城郊派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012443",
+ "text": "历经铺派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012444",
+ "text": "白马桥派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012445",
+ "text": "双江口派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012447",
+ "text": "菁华铺派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012448",
+ "text": "坝塘派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012449",
+ "text": "回龙铺派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012451",
+ "text": "夏铎铺派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012452",
+ "text": "金洲派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012453",
+ "text": "煤炭坝派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012454",
+ "text": "喻家坳派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012455",
+ "text": "大成桥派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012456",
+ "text": "双凫铺派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012457",
+ "text": "黄材派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012458",
+ "text": "横市派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012459",
+ "text": "沩山派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012460",
+ "text": "沙田派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012461",
+ "text": "巷子口派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012462",
+ "text": "龙田派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012463",
+ "text": "流沙河派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012464",
+ "text": "青山桥派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012465",
+ "text": "老粮仓派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012467",
+ "text": "灰汤派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012469",
+ "text": "资福派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012470",
+ "text": "花明楼派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012471",
+ "text": "东湖塘派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012473",
+ "text": "道林派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43012474",
+ "text": "大屯营派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430124G0",
+ "text": "宁乡市公安局高警局长沙支队灰汤大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430124G1",
+ "text": "宁乡市公安局高警局长沙支队横市大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430124G2",
+ "text": "宁乡市公安局高警局长沙支队宁乡北大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430124G6",
+ "text": "宁乡市公安局长常大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430124X0",
+ "text": "宁乡市公安局宁乡市大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430124",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430181",
+ "text": "浏阳市公安局",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "4301",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018102",
+ "text": "浏阳市公安局经济犯罪侦查大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018103",
+ "text": "浏阳市公安局治安管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018105",
+ "text": "浏阳市公安局刑事侦查大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018106",
+ "text": "浏阳市公安局人口与出入境管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018107",
+ "text": "浏阳市公安局消防大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018109",
+ "text": "浏阳市公安局户政科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018111",
+ "text": "浏阳市公安局网络安全保卫大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018117",
+ "text": "浏阳市公安局交通警察大队",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301811799",
+ "text": "浏阳市公安局交通警察大队车管所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43018117",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018131",
+ "text": "浏阳市公安局指挥中心",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018132",
+ "text": "浏阳市公安局督察大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018135",
+ "text": "浏阳市公安局政治工作办公室",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018142",
+ "text": "淮川派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018143",
+ "text": "集里派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018144",
+ "text": "关口派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018145",
+ "text": "荷花派出所",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301814541",
+ "text": "浏阳市公安局荷花派出所花炮文化城值勤室",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43018145",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018146",
+ "text": "高坪派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018148",
+ "text": "枨冲派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018149",
+ "text": "古港派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018152",
+ "text": "永和派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018154",
+ "text": "沿溪派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018155",
+ "text": "官渡派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018156",
+ "text": "张坊派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018157",
+ "text": "小河派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018158",
+ "text": "达浒派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018159",
+ "text": "大围山派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018160",
+ "text": "大瑶派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018161",
+ "text": "澄潭江派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018162",
+ "text": "金刚派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018164",
+ "text": "文家市派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018165",
+ "text": "中和派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018166",
+ "text": "镇头派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018167",
+ "text": "柏加派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018168",
+ "text": "葛家派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018169",
+ "text": "普迹派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018170",
+ "text": "官桥派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018171",
+ "text": "永安派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018172",
+ "text": "洞阳派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018173",
+ "text": "蕉溪派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018174",
+ "text": "北盛派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018175",
+ "text": "沙市派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018176",
+ "text": "淳口派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018177",
+ "text": "社港派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018178",
+ "text": "龙伏派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018180",
+ "text": "浏阳市公安局警卫科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018182",
+ "text": "浏阳市公安局法制大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018187",
+ "text": "浏阳市公安局经开区分局",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018188",
+ "text": "浏阳市公安局森林分局",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301818801",
+ "text": "浏阳市公安局森林分局办公室",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43018188",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301818807",
+ "text": "浏阳市公安局森林分局政治工作室",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43018188",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301818809",
+ "text": "浏阳市公安局森林分局装备计财科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43018188",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301818812",
+ "text": "浏阳市公安局森林分局法制科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43018188",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301818835",
+ "text": "浏阳市公安局森林分局森林消防科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43018188",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301818841",
+ "text": "浏阳市公安局森林分局刑事侦查大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43018188",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301818842",
+ "text": "浏阳市公安局森林分局治安管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43018188",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301818843",
+ "text": "文家市派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43018188",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301818844",
+ "text": "城区派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43018188",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301818845",
+ "text": "大围山派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43018188",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301818846",
+ "text": "官渡派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43018188",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301818847",
+ "text": "镇头派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43018188",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301818848",
+ "text": "北区派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43018188",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301818849",
+ "text": "古港派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43018188",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301818850",
+ "text": "张坊派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43018188",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301818851",
+ "text": "西区派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43018188",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "4301818852",
+ "text": "南区派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "43018188",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018193",
+ "text": "湖南省浏阳市拘留所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018195",
+ "text": "浏阳市公安局巡逻警察大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018196",
+ "text": "浏阳市公安局危险和爆炸物品管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43018199",
+ "text": "浏阳市公安局保安管理监督科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430181G0",
+ "text": "长沙市公安局浏阳市公安局高警局长沙支队浏阳大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430181G1",
+ "text": "长沙市公安局浏阳市公安局高警局长沙支队江背大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430181X0",
+ "text": "长沙市公安局浏阳市公安局浏阳市大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430181",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430197",
+ "text": "公共交通治安管理分局",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "4301",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019703",
+ "text": "公共交通治安管理分局治安管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430197",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019705",
+ "text": "公共交通治安管理分局侦查大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430197",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019714",
+ "text": "公共交通治安管理分局警(保)卫大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430197",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019718",
+ "text": "公共交通治安管理分局法制科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430197",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019720",
+ "text": "公共交通治安管理分局后勤保障科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430197",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019731",
+ "text": "公共交通治安管理分局办公室",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430197",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019732",
+ "text": "公共交通治安管理分局监察室",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430197",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019741",
+ "text": "公共交通治安管理分局芙蓉大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430197",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019742",
+ "text": "公共交通治安管理分局天心大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430197",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019743",
+ "text": "公共交通治安管理分局岳麓大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430197",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019744",
+ "text": "公共交通治安管理分局开福大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430197",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019745",
+ "text": "公共交通治安管理分局雨花大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430197",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019746",
+ "text": "公共交通治安管理分局高新区大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430197",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019747",
+ "text": "公共交通治安管理分局直属一大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430197",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019748",
+ "text": "公共交通治安管理分局直属二大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430197",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019749",
+ "text": "公共交通治安管理分局直属三大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430197",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019750",
+ "text": "公共交通治安管理分局直属四大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430197",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019751",
+ "text": "公共交通治安管理分局尚双塘派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430197",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019752",
+ "text": "公共交通治安管理分局黎明派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430197",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019753",
+ "text": "公共交通治安管理分局普瑞派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430197",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019754",
+ "text": "公共交通治安管理分局莲坪派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430197",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019755",
+ "text": "公共交通治安管理分局蟠龙派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430197",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019756",
+ "text": "黄梨派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430197",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019761",
+ "text": "公共交通治安管理分局光达派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430197",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019787",
+ "text": "公共交通治安管理分局地铁综合管理科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430197",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430198",
+ "text": "长沙市公安局森林分局",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "4301",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019805",
+ "text": "长沙市公安局森林分局刑侦治安队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430198",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019807",
+ "text": "长沙市公安局森林分局消防科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430198",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019818",
+ "text": "长沙市公安局森林分局法制科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430198",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019831",
+ "text": "长沙市公安局森林分局办公室",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430198",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019899",
+ "text": "长沙市公安局森林分局直属大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430198",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430198X0",
+ "text": "长沙市公安局经开区大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430198",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430199",
+ "text": "高新区分局",
+ "state": "closed",
+ "view": null,
+ "checked": false,
+ "pId": "4301",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019901",
+ "text": "高新区分局国保大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430199",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019902",
+ "text": "高新区分局经侦大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430199",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019903",
+ "text": "高新区分局治安大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430199",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019905",
+ "text": "高新区分局刑侦大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430199",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019906",
+ "text": "高新区分局人口与出入境管理大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430199",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019909",
+ "text": "长沙市高新区分局人口管理科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430199",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019911",
+ "text": "长沙市高新区分局网络安全监察科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430199",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019918",
+ "text": "湖南省长沙市公安局高新区分局法制科",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430199",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019931",
+ "text": "湖南省长沙市公安局高新区分局办公室",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430199",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019932",
+ "text": "湖南省长沙市公安局高新区分局纪检监察室",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430199",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019941",
+ "text": "麓谷派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430199",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019942",
+ "text": "雷锋派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430199",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019943",
+ "text": "东方红派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430199",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019944",
+ "text": "白马派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430199",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019945",
+ "text": "黄金派出所",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430199",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "43019998",
+ "text": "高新区分局巡警大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430199",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ },
+ {
+ "Describe": null,
+ "IsEnable": 0,
+ "IsDel": 0,
+ "ClsSEQ": 0,
+ "ClsValue": null,
+ "iconCls": null,
+ "ClsCategory": 0,
+ "SysNo": null,
+ "id": "430199X0",
+ "text": "长沙市公安局高新区分局高开区大队",
+ "state": null,
+ "view": null,
+ "checked": false,
+ "pId": "430199",
+ "name": null,
+ "Org": null,
+ "Res": null,
+ "children": [],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ }
+ ],
+ "SPSort": 0
+ }
+ ]
+ org.value = tempOrgs
+ if (org.value.length > 0) {
+ selectOrg.value = org.value[0].id
+ }
+
+ // 任务选项
+ let temptask =
+ [
+ {
+ "ID": 2,
+ "InvestigationSubject": 0,
+ "SetName": "(省)全市",
+ "IsAssociation": 1,
+ "CreateTime": "0001-01-01 00:00:00",
+ "UpdateTime": "0001-01-01 00:00:00",
+ "StatisticalMode": null,
+ "AssociationName": null,
+ "StrategyID": null,
+ "QPercent": null,
+ "QAString": null,
+ "OrganizeID": null,
+ "SetID": null
+ }
+ ]
+ content.value = temptask
+ if (content.value.length > 0) {
+ console.log(content.value[0])
+ task.value = content.value[0].ID
+ }
+
+}, 0)
// endregion
@@ -864,7 +13478,8 @@ const getSummaries = (param) => {
return prev;
}
}, 0);
- sums[index] += '';
+ // 小数就2位 不然就随便
+ sums[index] = Number.isInteger(sums[index]) ? sums[index] : sums[index].toFixed(2);
} else {
sums[index] = 'N/A';
}
@@ -879,6 +13494,7 @@ const getCellStyle = (smyltb) => {
}
}
// endregion
+