|
@@ -432,7 +432,7 @@ export default {
|
|
|
},
|
|
|
created() {
|
|
|
this.getColumnList();
|
|
|
- // this.classDictQuery("0", "c_task_type", "任务类型");
|
|
|
+ this.classDictQuery("0", "c_task_type", "任务类型");
|
|
|
this.classDictQuery("0", "浦东新区行政区划", "浦东新区行政区划");
|
|
|
|
|
|
//获取我的标记数据
|
|
@@ -502,6 +502,7 @@ export default {
|
|
|
this.modelData = [];
|
|
|
this.$Post(this.urlsCollection.getColumnList).then((res) => {
|
|
|
if (res.code === 200 && res.content.length > 0) {
|
|
|
+ // debugger
|
|
|
let data = res.content.map((item1) => {
|
|
|
if (item1.title === "所有图层" && item1.columnList.length > 0) {
|
|
|
treeIdMap.set(
|
|
@@ -536,7 +537,7 @@ export default {
|
|
|
id: `${item3.title}_${item3.id}`,
|
|
|
label: item3.title,
|
|
|
tag: item3.tag,
|
|
|
- children:
|
|
|
+ children:item3.columnList&&
|
|
|
item3.columnList.length === 0
|
|
|
? []
|
|
|
: item3.columnList.map((item4) => {
|