3d81ba28 by 杨威

目录结构修改

1 parent 03f86373
Showing 27 changed files with 5 additions and 6 deletions
......@@ -184,8 +184,7 @@ export default {
this.dialogVisible = false;
},
preDealData(list) {
// //楼盘表目录树没有expand属性
// list[0].expand = list[0].expand == undefined ? true:list[0].expand;
//楼盘表目录树没有expand属性
list.forEach((x) => {
if (x.expand == undefined) this.$set(x, "expand", true);
if (x.children && x.children.length > 0) {
......
......@@ -63,25 +63,25 @@ const constantRoutes = [
path: "/zrz",
name: "自然幢",
code: "1-1",
component: () => import("@/views/systemZRZ/index"),
component: () => import("@/views/zrz/index"),
},
{
path: "/dz",
name: "多幢",
code: "1-2",
component: () => import("@/views/systemDZ/index"),
component: () => import("@/views/dz/index"),
},
{
path: "/zd",
name: "宗地",
code: "1-5",
component: () => import("@/views/systemZD/index"),
component: () => import("@/views/zd/index"),
},
{
path: "/c",
name: "层",
code: "1-7",
component: () => import("@/views/systemZRZ/c/index"),
component: () => import("@/views/zrz/c/index"),
},
],
},
......