diff --git a/src/router/index.js b/src/router/index.js index b3ecfd4..4fe6ddc 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -276,6 +276,38 @@ export const constantRoutes = [ // 业主模块END + // 后勤模块START + { + path: "", + component: Layout, + redirect: "/index", + children: [ + { + path: "/logistics/TreeRatingManagement", + component: () => + import("@/views/Logistics/TreeRatingManagement/index.vue"), + name: "TreeRatingManagement", + meta: { title: "树形层级管理", icon: "table" }, + }, + ] + }, + + { + path: "", + component: Layout, + redirect: "/index", + children: [ + { + path: "/logistics/FilingReview", + component: () => + import("@/views/Logistics/FilingReview/index.vue"), + name: "FilingReview", + meta: { title: "建档审核中心", icon: "table" }, + }, + ] + }, + // 后勤模块END + { path: "/user", diff --git a/src/views/Logistics/FilingReview/index.vue b/src/views/Logistics/FilingReview/index.vue new file mode 100644 index 0000000..0f81490 --- /dev/null +++ b/src/views/Logistics/FilingReview/index.vue @@ -0,0 +1,267 @@ + + + + + + + + + 组织架构树 + + + + + 新增节点 + 编辑节点 + 删除节点 + + + + + + + + + + + 节点详情 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 关联账户 + + + + + + + + + + {{ row.status }} + + + + + + + + + + + + + + 账户列表 + 新建账户 + + + + + + + + + + {{ row.status }} + + + + + 编辑 + 删除 + + + + + + + + + + + + \ No newline at end of file diff --git a/src/views/Logistics/TreeRatingManagement/index.vue b/src/views/Logistics/TreeRatingManagement/index.vue new file mode 100644 index 0000000..f03dc48 --- /dev/null +++ b/src/views/Logistics/TreeRatingManagement/index.vue @@ -0,0 +1,167 @@ + + + + + + + 新增层级节点 + 批量导入层级 + 导出层级结构 + 配置层级规则 + + + + + + + 单位 / 楼宇树形层级管理 + + + + + + + + + + + + + {{ data.label }} + ({{ data.type }}) + + {{ data.status }} + + 关联项目: {{ data.projects }} + + + + + + + + + \ No newline at end of file