3d81ba28 by 杨威

目录结构修改

1 parent 03f86373
Showing 27 changed files with 5 additions and 6 deletions
...@@ -184,8 +184,7 @@ export default { ...@@ -184,8 +184,7 @@ export default {
184 this.dialogVisible = false; 184 this.dialogVisible = false;
185 }, 185 },
186 preDealData(list) { 186 preDealData(list) {
187 // //楼盘表目录树没有expand属性 187 //楼盘表目录树没有expand属性
188 // list[0].expand = list[0].expand == undefined ? true:list[0].expand;
189 list.forEach((x) => { 188 list.forEach((x) => {
190 if (x.expand == undefined) this.$set(x, "expand", true); 189 if (x.expand == undefined) this.$set(x, "expand", true);
191 if (x.children && x.children.length > 0) { 190 if (x.children && x.children.length > 0) {
......
...@@ -63,25 +63,25 @@ const constantRoutes = [ ...@@ -63,25 +63,25 @@ const constantRoutes = [
63 path: "/zrz", 63 path: "/zrz",
64 name: "自然幢", 64 name: "自然幢",
65 code: "1-1", 65 code: "1-1",
66 component: () => import("@/views/systemZRZ/index"), 66 component: () => import("@/views/zrz/index"),
67 }, 67 },
68 { 68 {
69 path: "/dz", 69 path: "/dz",
70 name: "多幢", 70 name: "多幢",
71 code: "1-2", 71 code: "1-2",
72 component: () => import("@/views/systemDZ/index"), 72 component: () => import("@/views/dz/index"),
73 }, 73 },
74 { 74 {
75 path: "/zd", 75 path: "/zd",
76 name: "宗地", 76 name: "宗地",
77 code: "1-5", 77 code: "1-5",
78 component: () => import("@/views/systemZD/index"), 78 component: () => import("@/views/zd/index"),
79 }, 79 },
80 { 80 {
81 path: "/c", 81 path: "/c",
82 name: "层", 82 name: "层",
83 code: "1-7", 83 code: "1-7",
84 component: () => import("@/views/systemZRZ/c/index"), 84 component: () => import("@/views/zrz/c/index"),
85 }, 85 },
86 ], 86 ],
87 }, 87 },
......