Bladeren bron

Merge branch 'master' of http://39.106.8.246:3003/web/wanda-adm

haojianlong 4 jaren geleden
bovenliggende
commit
8e3b2f14b6
38 gewijzigde bestanden met toevoegingen van 1701 en 251 verwijderingen
  1. 19 1
      src/api/modelapi.ts
  2. BIN
      src/assets/image/model/arrowBlue.png
  3. BIN
      src/assets/image/model/arrowGray.png
  4. BIN
      src/assets/image/model/arrowGreen.png
  5. BIN
      src/assets/image/model/columnBlue.png
  6. BIN
      src/assets/image/model/columnGray.png
  7. BIN
      src/assets/image/model/columnGreen.png
  8. BIN
      src/assets/image/model/delModelBlue.png
  9. BIN
      src/assets/image/model/delModelGray.png
  10. BIN
      src/assets/image/model/downJsonBlue.png
  11. BIN
      src/assets/image/model/downJsonGray.png
  12. BIN
      src/assets/image/model/downJsonGreen.png
  13. BIN
      src/assets/image/model/downModelBlue.png
  14. BIN
      src/assets/image/model/downModelGray.png
  15. BIN
      src/assets/image/model/downModelGreen.png
  16. BIN
      src/assets/image/model/rightDownBlue.png
  17. BIN
      src/assets/image/model/rightDownGray.png
  18. BIN
      src/assets/image/model/rightDownGreen.png
  19. BIN
      src/assets/image/model/upJsonBlue.png
  20. BIN
      src/assets/image/model/upJsonGray.png
  21. BIN
      src/assets/image/model/upJsonGreen.png
  22. BIN
      src/assets/image/model/upModelBlue.png
  23. BIN
      src/assets/image/model/upModelGray.png
  24. BIN
      src/assets/image/model/upModelGreen.png
  25. BIN
      src/assets/image/model/waitingAnlBlue.png
  26. BIN
      src/assets/image/model/waitingAnlGray.png
  27. BIN
      src/assets/image/model/waitingAnlGreen.png
  28. BIN
      src/assets/image/model/waitingManageBlue.png
  29. BIN
      src/assets/image/model/waitingManageGray.png
  30. BIN
      src/assets/image/model/waitingManageGreen.png
  31. 233 220
      src/router/index.ts
  32. 22 15
      src/views/manage/build/components/FloorTable/index.vue
  33. 144 0
      src/views/manage/build/components/ModelLog/index.vue
  34. 34 6
      src/views/manage/build/index.vue
  35. 138 0
      src/views/manage/path/components/NodeDialog/index.vue
  36. 93 0
      src/views/manage/path/components/PathCard/index.vue
  37. 1002 0
      src/views/manage/path/index.vue
  38. 16 9
      vue.config.js

+ 19 - 1
src/api/modelapi.ts

@@ -3,6 +3,7 @@
  */
 import httputils from "@/api/httputils";
 const baseUrl = "/modelapi";
+const revitUrl = "/schedulerapi";
 
 // 查询模型文件夹
 export function queryModel(postParams: any): any {
@@ -24,11 +25,28 @@ export function mergeModelFile(postParams: any): any {
     return httputils.postJson(`${baseUrl}/model-file/merge`, postParams);
 }
 
+// 查询模型文件
+export function queryModelFile(postParams: any): any {
+    return httputils.postJson(`${baseUrl}/model-file/query`, postParams);
+}
+
 // 删除模型文件
 export function deleteModelFileList(postParams: any): any {
     const data = {
         Id: postParams.Id,
         Force: postParams.Force ? postParams.Force : false
     };
-    return httputils.postJson(`${baseUrl}/model-file/merge`, data);
+    return httputils.postJson(`${baseUrl}/model-file/delete-file`, data);
+}
+
+// 模型流程监控
+export function modelPathControl(postParams: any): any {
+    return httputils.postJson(`${baseUrl}/model-monitor/query`, postParams);
 }
+
+// 模型流程监控-获取待分配模型数量
+export function unassignQuery(postParams: any): any {
+    return httputils.postJson(`${revitUrl}/task/query`, postParams);
+}
+
+

BIN
src/assets/image/model/arrowBlue.png


BIN
src/assets/image/model/arrowGray.png


BIN
src/assets/image/model/arrowGreen.png


BIN
src/assets/image/model/columnBlue.png


BIN
src/assets/image/model/columnGray.png


BIN
src/assets/image/model/columnGreen.png


BIN
src/assets/image/model/delModelBlue.png


BIN
src/assets/image/model/delModelGray.png


BIN
src/assets/image/model/downJsonBlue.png


BIN
src/assets/image/model/downJsonGray.png


BIN
src/assets/image/model/downJsonGreen.png


BIN
src/assets/image/model/downModelBlue.png


BIN
src/assets/image/model/downModelGray.png


BIN
src/assets/image/model/downModelGreen.png


BIN
src/assets/image/model/rightDownBlue.png


BIN
src/assets/image/model/rightDownGray.png


BIN
src/assets/image/model/rightDownGreen.png


BIN
src/assets/image/model/upJsonBlue.png


BIN
src/assets/image/model/upJsonGray.png


BIN
src/assets/image/model/upJsonGreen.png


BIN
src/assets/image/model/upModelBlue.png


BIN
src/assets/image/model/upModelGray.png


BIN
src/assets/image/model/upModelGreen.png


BIN
src/assets/image/model/waitingAnlBlue.png


BIN
src/assets/image/model/waitingAnlGray.png


BIN
src/assets/image/model/waitingAnlGreen.png


BIN
src/assets/image/model/waitingManageBlue.png


BIN
src/assets/image/model/waitingManageGray.png


BIN
src/assets/image/model/waitingManageGreen.png


+ 233 - 220
src/router/index.ts

@@ -15,245 +15,258 @@ Vue.use(Router);
 */
 
 export default new Router({
-  mode: "history",
-  scrollBehavior: (to, from, savedPosition) => {
-    if (savedPosition) {
-      return savedPosition;
-    } else {
-      return { x: 0, y: 0 };
-    }
-  },
-  base: process.env.BASE_URL,
-  routes: [
-    {
-      path: "/login",
-      component: () =>
-        import(/* webpackChunkName: "login" */ "@/views/login/index.vue"),
-      meta: { hidden: true }
-    },
-    {
-      path: "/",
-      redirect: "/project/index",
-      component: Layout,
-      children: [
-        {
-          path: "project/index",
-          component: () =>
-            import(
-              /* webpackChunkName: "project" */ "@/views/project/index.vue"
-            ),
-          meta: {
-            title: "项目管理",
-            icon: "icon-xiangmuguanli"
-          }
-        }
-      ]
-    },
-    {
-      path: "/allDetails",
-      component: Layout,
-      meta:{
-        hidden: true
-      },
-      children: [
-        {
-          path: "index",
-          component: () =>
-            import(
-              /* webpackChunkName: "project" */ "@/layout/components/Navbar/MessageSever/MsgAllDetails.vue"
-            ),
-          meta: {
-            title: "消息中心"
-          }
+    mode: "history",
+    scrollBehavior: (to, from, savedPosition) => {
+        if (savedPosition) {
+            return savedPosition;
+        } else {
+            return { x: 0, y: 0 };
         }
-      ]
     },
-    {
-      path: "/manage",
-      component: Layout,
-      meta: {
-        title: "文件管理",
-        icon: "icon-wenjianguanli"
-      },
-      children: [
+    base: process.env.BASE_URL,
+    routes: [
         {
-          path: "build",
-          component: () =>
-            import(
-              /* webpackChunkName: "build" */ "@/views/manage/build/index.vue"
-            ),
-          meta: {
-            title: "建筑楼层管理",
-            // icon: "tree"
-          }
+            path: "/login",
+            component: () =>
+                import(
+                    /* webpackChunkName: "login" */ "@/views/login/index.vue"
+                ),
+            meta: { hidden: true }
         },
         {
-          path: "model",
-          component: () =>
-            import(
-              /* webpackChunkName: "model" */ "@/views/manage/model/index.vue"
-            ),
-          meta: {
-            title: "模型修改任务",
-            // icon: "table"
-          }
-        }
-      ]
-    },
-    {
-      path: "/maintain",
-      component: Layout,
-      redirect: "/maintain/device",
-      meta: {
-        title: "数据维护",
-        icon: "icon-shujuweihu"
-      },
-      children: [
-        {
-          path: "device",
-          component: () =>
-            import(
-              /* webpackChunkName: "device" */ "@/views/maintain/device/index.vue"
-            ),
-          meta: { title: "设备" }
+            path: "/",
+            redirect: "/project/index",
+            component: Layout,
+            children: [
+                {
+                    path: "project/index",
+                    component: () =>
+                        import(
+                            /* webpackChunkName: "project" */ "@/views/project/index.vue"
+                        ),
+                    meta: {
+                        title: "项目管理",
+                        icon: "icon-xiangmuguanli"
+                    }
+                }
+            ]
         },
         {
-          path: "space",
-          component: () =>
-            import(
-              /* webpackChunkName: "space" */ "@/views/maintain/space/index.vue"
-            ),
-          meta: { title: "空间" }
+            path: "/allDetails",
+            component: Layout,
+            meta: {
+                hidden: true
+            },
+            children: [
+                {
+                    path: "index",
+                    component: () =>
+                        import(
+                            /* webpackChunkName: "project" */ "@/layout/components/Navbar/MessageSever/MsgAllDetails.vue"
+                        ),
+                    meta: {
+                        title: "消息中心"
+                    }
+                }
+            ]
         },
         {
-          path: "system",
-          component: () =>
-            import(
-              /* webpackChunkName: "system" */ "@/views/maintain/system/index.vue"
-            ),
-          meta: { title: "系统" }
+            path: "/manage",
+            component: Layout,
+            meta: {
+                title: "文件管理",
+                icon: "icon-wenjianguanli"
+            },
+            children: [
+                {
+                    path: "build",
+                    component: () =>
+                        import(
+                            /* webpackChunkName: "build" */ "@/views/manage/build/index.vue"
+                        ),
+                    meta: {
+                        title: "建筑楼层管理"
+                        // icon: "tree"
+                    }
+                },
+                {
+                    path: "model",
+                    component: () =>
+                        import(
+                            /* webpackChunkName: "model" */ "@/views/manage/model/index.vue"
+                        ),
+                    meta: {
+                        title: "模型修改任务"
+                        // icon: "table"
+                    }
+                },
+                {
+                    path: "path",
+                    component: () =>
+                        import(
+                            /* webpackChunkName: "path" */ "@/views/manage/path/index.vue"
+                        ),
+                    meta: {
+                        hidden: true,
+                        title: "模型后台处理监控"
+                    }
+                }
+            ]
         },
         {
-          path: "relationship",
-          component: () =>
-            import(
-              /* webpackChunkName: "relationship" */ "@/views/maintain/relationship/index.vue"
-            ),
-          meta: { title: "关系" }
-        }
-      ]
-    },
+            path: "/maintain",
+            component: Layout,
+            redirect: "/maintain/device",
+            meta: {
+                title: "数据维护",
+                icon: "icon-shujuweihu"
+            },
+            children: [
+                {
+                    path: "device",
+                    component: () =>
+                        import(
+                            /* webpackChunkName: "device" */ "@/views/maintain/device/index.vue"
+                        ),
+                    meta: { title: "设备" }
+                },
+                {
+                    path: "space",
+                    component: () =>
+                        import(
+                            /* webpackChunkName: "space" */ "@/views/maintain/space/index.vue"
+                        ),
+                    meta: { title: "空间" }
+                },
+                {
+                    path: "system",
+                    component: () =>
+                        import(
+                            /* webpackChunkName: "system" */ "@/views/maintain/system/index.vue"
+                        ),
+                    meta: { title: "系统" }
+                },
+                {
+                    path: "relationship",
+                    component: () =>
+                        import(
+                            /* webpackChunkName: "relationship" */ "@/views/maintain/relationship/index.vue"
+                        ),
+                    meta: { title: "关系" }
+                }
+            ]
+        },
 
-    {
-      path: "/scene",
-      component: Layout,
-      redirect: "/scene/tiepoint",
-      meta: {
-        title: "现场实施",
-        icon: "icon-xianchangshishi"
-      },
-      children: [
         {
-          path: "tiepoint",
-          component: () =>
-            import(
-              /* webpackChunkName: "tiepoint" */ "@/views/scene/tiepoint/index.vue"
-            ),
-          meta: { title: "绑点" }
+            path: "/scene",
+            component: Layout,
+            redirect: "/scene/tiepoint",
+            meta: {
+                title: "现场实施",
+                icon: "icon-xianchangshishi"
+            },
+            children: [
+                {
+                    path: "tiepoint",
+                    component: () =>
+                        import(
+                            /* webpackChunkName: "tiepoint" */ "@/views/scene/tiepoint/index.vue"
+                        ),
+                    meta: { title: "绑点" }
+                },
+                {
+                    path: "system",
+                    component: () =>
+                        import(
+                            /* webpackChunkName: "system" */ "@/views/scene/system/index.vue"
+                        ),
+                    meta: { title: "系统图" }
+                },
+                {
+                    path: "plane",
+                    component: () =>
+                        import(
+                            /* webpackChunkName: "plane" */ "@/views/scene/plane/index.vue"
+                        ),
+                    meta: { title: "平面图" }
+                }
+            ]
         },
         {
-          path: "system",
-          component: () =>
-            import(
-              /* webpackChunkName: "system" */ "@/views/scene/system/index.vue"
-            ),
-          meta: { title: "系统图" }
+            path: "/tools",
+            component: Layout,
+            meta: {
+                title: "一致性检查工具",
+                icon: "icon-yizhixingjianchagongju"
+            }
         },
         {
-          path: "plane",
-          component: () =>
-            import(
-              /* webpackChunkName: "plane" */ "@/views/scene/plane/index.vue"
-            ),
-          meta: { title: "平面图" }
-        }
-      ]
-    },
-    {
-      path: "/tools",
-      component: Layout,
-      meta: {
-        title: "一致性检查工具",
-        icon: "icon-yizhixingjianchagongju"
-      }
-    },
-    {
-      path: "/model-tool",
-      component: Layout,
-      meta: {
-        title: "模型检查工具",
-        icon: "icon-moxingjianchagongju"
-      }
-    },
-    {
-      path: "/management",
-      component: Layout,
-      meta: {
-        title: "综合管理与其他",
-        icon: "icon-zongheguanliyuqita"
-      }
-    },
-    {
-      path: "/error",
-      component: Layout,
-      redirect: "noredirect",
-      meta: {
-        title: "错误页面",
-        icon: "icon-weihubangzhu"
-      },
-      children: [
+            path: "/model-tool",
+            component: Layout,
+            meta: {
+                title: "模型检查工具",
+                icon: "icon-moxingjianchagongju"
+            }
+        },
         {
-          path: "401",
-          component: () =>
-            import(
-              /* webpackChunkName: "error-page-401" */ "@/views/error-page/401.vue"
-            ),
-          name: "Page401",
-          meta: {
-            title: "401",
-            noCache: true
-          }
+            path: "/management",
+            component: Layout,
+            meta: {
+                title: "综合管理与其他",
+                icon: "icon-zongheguanliyuqita"
+            }
         },
         {
-          path: "404",
-          component: () =>
-            import(
-              /* webpackChunkName: "error-page-404" */ "@/views/error-page/404.vue"
-            ),
-          name: "404",
-          meta: {
-            title: "404",
-            noCache: true
-          }
+            path: "/error",
+            component: Layout,
+            redirect: "noredirect",
+            meta: {
+                title: "错误页面",
+                icon: "icon-weihubangzhu"
+            },
+            children: [
+                {
+                    path: "401",
+                    component: () =>
+                        import(
+                            /* webpackChunkName: "error-page-401" */ "@/views/error-page/401.vue"
+                        ),
+                    name: "Page401",
+                    meta: {
+                        title: "401",
+                        noCache: true
+                    }
+                },
+                {
+                    path: "404",
+                    component: () =>
+                        import(
+                            /* webpackChunkName: "error-page-404" */ "@/views/error-page/404.vue"
+                        ),
+                    name: "404",
+                    meta: {
+                        title: "404",
+                        noCache: true
+                    }
+                },
+                {
+                    path: "demo",
+                    component: () =>
+                        import(
+                            /* webpackChunkName: "error-page-demo" */ "@/views/error-page/demo.vue"
+                        ),
+                    name: "demo",
+                    meta: {
+                        title: "demo",
+                        noCache: true
+                    }
+                }
+            ]
         },
-          {
-              path: "demo",
-              component: () =>
-                  import(
-                      /* webpackChunkName: "error-page-demo" */ "@/views/error-page/demo.vue"
-                      ),
-              name: "demo",
-              meta: {
-                  title: "demo",
-                  noCache: true
-              }
-          }
-      ]
-    },
-    {
-      path: "*",
-      redirect: "/404",
-      meta: { hidden: true }
-    }
-  ]
+        {
+            path: "*",
+            redirect: "/404",
+            meta: { hidden: true }
+        }
+    ]
 });

+ 22 - 15
src/views/manage/build/components/FloorTable/index.vue

@@ -8,7 +8,12 @@
             height="100%"
             :header-cell-style="{ background: '#d9d9d9', color: '#2b2b2b', height: '41px' }"
         >
-            <el-table-column prop="FloorName" align="center" label="楼层本地名" width="100"></el-table-column>
+            <el-table-column align="center" label="楼层本地名" width="100">
+                <template slot-scope="scope">
+                    <!-- <i class="el-icon-info" style="cursor: pointer" @click="toPathControl(scope.row)"></i> -->
+                    <span style="margin-left: 10px">{{ scope.row.FloorName }}</span>
+                </template>
+            </el-table-column>
             <el-table-column prop="Version" label="版本号" align="center"></el-table-column>
             <!-- <el-table-column label="版本号">
                 <template slot-scope="scope">
@@ -27,20 +32,8 @@
             <el-table-column prop="address" align="center" label="操作" width="240">
                 <template slot-scope="scope">
                     <div class="operate" v-show="scope.row.Status === 4">
-                        <el-button
-                            title="下载模型"
-                            type="primary"
-                            size="mini"
-                            class="el-icon-download"
-                            @click="downloadModel(scope.row)"
-                        ></el-button>
-                        <el-button
-                            title="替换模型"
-                            type="primary"
-                            size="mini"
-                            class="el-icon-refresh"
-                            @click="replaceModel(scope.row)"
-                        ></el-button>
+                        <el-button title="下载模型" type="primary" size="mini" class="el-icon-download" @click="downloadModel(scope.row)"></el-button>
+                        <el-button title="替换模型" type="primary" size="mini" class="el-icon-refresh" @click="replaceModel(scope.row)"></el-button>
                         <el-button
                             title="查看版本日志"
                             type="primary"
@@ -159,6 +152,20 @@ export default class extends Vue {
             });
         }
     }
+
+    /**
+     * 跳转至模型流程处理监控
+     */
+    private toPathControl(row: any) {
+        this.$router.push({
+            path: "/manage/path",
+            query: {
+                Id: row.CurrentModelId,
+                Size: row.Size,
+                OriginalName: row.OriginalName,
+            },
+        });
+    }
 }
 </script>
 <style scoped lang="scss">

+ 144 - 0
src/views/manage/build/components/ModelLog/index.vue

@@ -0,0 +1,144 @@
+<template>
+    <!-- 模型日志弹窗 -->
+    <div id="modelLog">
+        <el-dialog title="模型日志" :visible.sync="modelLogVisible" width="800px" :before-close="handleClose">
+            <div class="bodys">
+                <el-button v-show="filterlogData.length == 1" class="delete-model" @click="deleteModel(filterlogData[0])"
+                    ><i class="iconfont icon-delete el-icon--left"></i>删除模型</el-button
+                >
+                <el-tabs v-model="activeName" type="card">
+                    <el-tab-pane label="上传日志" name="first">
+                        <el-table :data="filterlogData" stripe height="300px" style="width: 100%">
+                            <el-table-column prop="Version" label="版本" width="50"></el-table-column>
+                            <el-table-column prop="ModelName" label="模型文件名" width="240"></el-table-column>
+                            <el-table-column prop="AcceptTime" label="上传时间"></el-table-column>
+                            <el-table-column prop="UserName" label="上传人"></el-table-column>
+                            <el-table-column prop="address" label="操作">
+                                <template slot-scope="scope">
+                                    <el-button
+                                        title="下载模型"
+                                        @click="handleClick(scope.row)"
+                                        v-if="!scope.row.Removed"
+                                        type="primary"
+                                        size="mini"
+                                        class="el-icon-download"
+                                    ></el-button>
+                                    <!-- 需求:先不支持删除 -->
+                                    <!-- <el-button @click="deleteModel(scope.row)" v-if="!scope.row.Removed" type='danger' plain size="mini">删除</el-button> -->
+                                </template>
+                            </el-table-column>
+                        </el-table>
+                    </el-tab-pane>
+                    <el-tab-pane label="工程改造" name="second"></el-tab-pane>
+                </el-tabs>
+            </div>
+        </el-dialog>
+    </div>
+</template>
+<script lang="ts">
+import { Vue, Component, Prop, Emit } from "vue-property-decorator";
+import { deleteModelFileList } from "@/api/modelapi";
+
+@Component({
+    name: "ModelLog",
+    components: {},
+})
+export default class extends Vue {
+    @Prop() private modelLogVisible!: boolean;
+    @Prop() private modelFolderName!: string;
+    @Prop() private logData!: any[];
+    @Prop() private modelLogFloorName!: string;
+
+    private dialogVisible = false; // 是否显示该弹窗
+    private activeName = "first"; // 默认选择上传日志
+    private tableData: any[] = []; // 列表数据
+    private dialog = false;
+    private modelFile: any = null;
+
+    private get filterlogData(): any[] {
+        let newLogData: any[] = [];
+        if (this.logData.length) {
+            this.logData.forEach((item) => {
+                newLogData.push(item);
+            });
+        }
+        return newLogData;
+    }
+
+    /**
+     * 关闭弹窗
+     */
+    @Emit("CloseModelLogDia")
+    private handleClose() {
+        return;
+    }
+
+    /**
+     * 下载模型
+     */
+    private handleClick(item: any) {
+        console.log(item);
+        let url = item.Url.match(/(\/image-service\S*)$/g) ? item.Url.match(/(\/image-service\S*)$/g)[0] : "";
+        if (item.Url) {
+            let a = document.createElement("a");
+            a.href = url;
+            a.download = `${this.modelFolderName}${this.modelLogFloorName}模型文件v${item.Version}.rvt`;
+            a.click();
+        } else {
+            this.$message({
+                message: "该文件夹下没有资源",
+                type: "error",
+            });
+        }
+    }
+
+    private deleteModel(item: any) {
+        this.$confirm("此操作只可删除楼层模型文件。已经识别的对象及关系等,暂不可删除。确定删除?", "提示", {
+            confirmButtonText: "确定",
+            cancelButtonText: "取消",
+            type: "warning",
+        })
+            .then(async () => {
+                const params = {
+                    Id: item.Id,
+                };
+                const res = await deleteModelFileList(params);
+                if (res.Result == "success") {
+                    //  刷新页面
+                    this.$emit("deleteFinish", item.Id);
+                    this.$message({
+                        type: "success",
+                        message: "删除成功!",
+                    });
+                } else {
+                    this.$message({
+                        type: "error",
+                        message: res.Result,
+                    });
+                }
+            })
+            .catch(() => {
+                this.$message({
+                    type: "info",
+                    message: "已取消删除",
+                });
+            });
+    }
+}
+</script>
+<style lang="scss" scoped>
+#modelLog {
+    .bodys {
+        position: relative;
+        padding-bottom: 30px;
+
+        .delete-model {
+            position: absolute;
+            right: 0;
+            top: 0;
+            z-index: 10;
+        }
+    }
+}
+</style>
+

+ 34 - 6
src/views/manage/build/index.vue

@@ -62,13 +62,13 @@
         <!-- 弹窗 开始-->
 
         <!-- 模型日志弹窗 -->
-        <!-- <modelLog
+        <modelLog
             :modelLogVisible="modelLogVisible"
             :modelFolderName="currentFolderName"
             @deleteFinish="updataLog"
             @CloseModelLogDia="modelLogVisible = false"
             :logData="logData"
-        ></modelLog> -->
+        ></modelLog>
         <!-- 替换模型弹窗 -->
         <replice-model
             :repliceModelVisible="repliceModelVisible"
@@ -113,11 +113,12 @@
 <script lang="ts">
 import { Vue, Component, Watch } from "vue-property-decorator";
 import { UserModule } from "@/store/modules/user";
-import { queryModel, queryFloorList } from "@/api/modelapi";
+import { queryModel, queryFloorList, queryModelFile } from "@/api/modelapi";
 import Bus from "@/utils/bus";
 import FloorTable from "./components/FloorTable/index.vue"; //右侧list表
 import AddFloorDialog from "./components/AddFloorDialog/index.vue"; //新增楼层弹窗
 import RepliceModel from "./components/RepliceModel/index.vue"; //替换模型弹窗
+import ModelLog from "./components/ModelLog/index.vue"; //模型日志弹窗
 
 @Component({
     name: "buildFloor",
@@ -125,6 +126,7 @@ import RepliceModel from "./components/RepliceModel/index.vue"; //替换模型
         FloorTable,
         AddFloorDialog,
         RepliceModel,
+        ModelLog,
     },
 })
 export default class extends Vue {
@@ -134,6 +136,7 @@ export default class extends Vue {
     private modelLogVisible = false; // 是否显示模型日志弹窗
     private changeFolderNameVisible = false; // 是否显示编辑文件夹弹窗
 
+    private modelLogFloorName = ""; // 楼层名称
     private navigationBuild: any[] = []; // 文件夹模型list
     private choiceIndex = 0; // 当前文件夹index
     private currentFolderId = ""; // 当前选择的文件夹id
@@ -141,7 +144,7 @@ export default class extends Vue {
     private tableData = []; // 楼层列表
     private loading = false; // 加载loading
     private tableLoading = false; // 表格加载loading
-
+    private logData: any[] = []; // 楼层文件对应的模型日志
     private replaceModelItem = null; // 替换文件的item
 
     private get projectId(): string {
@@ -263,8 +266,33 @@ export default class extends Vue {
     /**
      * 查看模型日志
      */
-    private queryModelLog(item: any): void {
-        console.log(item);
+    private async queryModelLog(item: any): Promise<void> {
+        this.modelLogFloorName = item.FloorName;
+        if (item.Id) {
+            const params = {
+                Distince: true,
+                Filters: `FloorModelId='${item.Id}';Removed=false`,
+                Orders: "Version desc",
+            };
+            const res = await queryModelFile(params);
+            if (res.Result == "success") {
+                this.logData = res.Content;
+                this.modelLogVisible = true;
+            }
+        }
+    }
+
+    /**
+     * 刷新日志
+     */
+    private async updataLog(FloorModelId: string): Promise<void> {
+        const params = {
+            Distince: true,
+            Filters: `FloorModelId='${FloorModelId}';Removed=false`,
+            Orders: "Version desc",
+        };
+        const res = await queryModelFile(params);
+        if (res.Result == "success") this.logData = res.Content;
     }
 
     @Watch("projectId")

+ 138 - 0
src/views/manage/path/components/NodeDialog/index.vue

@@ -0,0 +1,138 @@
+<template>
+    <el-dialog :title="title" :visible.sync="dialogVisible" width="500px" id="nodeDialog">
+        <div class="node-des">
+            <p>节点检查说明</p>
+            <div class="gray-border">
+                <div v-if="checkType == 'firstCheck' || checkType == 'secondCheck'">
+                    <p>强制检查项</p>
+                    <p v-for="(t, i) in check[checkType].checkList" :key="i">
+                        <i class="el-icon-check" v-if="show && !t.check"></i>
+                        <i class="el-icon-close" v-if="show && t.check"></i>
+                        {{ t.name }}
+                    </p>
+                    <p v-if="check[checkType].notCheckList.length">非强制检查项</p>
+                    <p v-for="(t, i) in check[checkType].notCheckList" :key="-i - 1">
+                        <i class="el-icon-check" v-if="show && !t.check"></i>
+                        <i class="el-icon-close" v-if="show && t.check"></i>
+                        {{ t.name }}
+                    </p>
+                </div>
+            </div>
+        </div>
+        <div class="result-des" v-if="0">
+            <p>处理结果</p>
+            <div class="gray-border"></div>
+        </div>
+        <div class="err-des" v-if="errMsg">
+            <p>错误说明</p>
+            <div>{{ errMsg }}</div>
+        </div>
+    </el-dialog>
+</template>
+<script>
+export default {
+    data() {
+        return {
+            dialogVisible: false,
+            title: '节点名称',
+            check: {
+                firstCheck: {
+                    checkList: [
+                        { name: '楼层平面图命名规范检查', check: false },
+                        { name: '项目长度单位检查', check: false },
+                    ],
+                    notCheckList: [
+                        { name: '楼层缺失检查', check: false },
+                        { name: '构件范围检查', check: false },
+                        { name: '设备族编码检查', check: false },
+                        { name: '部件所在位置检查', check: false },
+                        { name: '柱边界检查', check: false },
+                        { name: '连接件检查', check: false },
+                        { name: '系统类型名称检查', check: false },
+                        { name: '未在空间中的设备', check: false },
+                        { name: '管段检查', check: false },
+                        { name: '管网及相关设备检查', check: false },
+                        { name: 'Revit族参数完整性检查', check: false },
+                        { name: 'xyz坐标重叠检查', check: false }
+                    ],
+                },
+                secondCheck: {
+                    checkList: [
+                        { name: '楼层标高与楼层顺序号检查', check: false, value: 'LevelCheck' },
+                        { name: '轴网检查', check: false, value: 'GridCheck' }
+                    ],
+                    notCheckList: [],
+                }
+            },
+            show: false,
+            errMsg: '',
+            checkType: ''
+        };
+    },
+    methods: {
+        showDialog(msg, type, title) {
+            this.errMsg = msg.ErrorMsg || '';
+            this.checkType = type || '';
+            this.title = title
+            this.show = msg.BeginTime
+            if (type) {
+                this.check[type].checkList.forEach(t => {
+                    if (t.value && t.value == 'GridCheck') {
+                        t.check = msg.GridCheck || false
+                    }
+                    if (t.value && t.value == 'LevelCheck') {
+                        t.check = msg.LevelCheck || false
+                    }
+                })
+            }
+            this.dialogVisible = true;
+        }
+    }
+};
+</script>
+<style lang="scss" scoped>
+#nodeDialog {
+    .node-des,
+    .result-des {
+        color: #89969f;
+        & > div {
+            min-height: 50px;
+            padding: 5px;
+            p {
+                font-size: 12px;
+                i {
+                    margin: 0 5px 0 0;
+                }
+            }
+        }
+        & > p {
+            margin: 5px 0;
+        }
+    }
+    .err-des {
+        color: #ff6660;
+        & > div {
+            border: 1px solid #ff6660;
+            min-height: 50px;
+        }
+    }
+    .gray-border {
+        border: 1px solid #dedee0;
+    }
+    .red-border {
+        border: 1px solid #ff6660;
+    }
+    .el-icon-check {
+        font-size: 14px;
+        color: #4cba38;
+    }
+    .el-icon-close {
+        font-size: 14px;
+        color: #ff6660;
+    }
+    ::v-deep .el-dialog__body {
+        max-height: 400px;
+        overflow-y: auto;
+    }
+}
+</style>

+ 93 - 0
src/views/manage/path/components/PathCard/index.vue

@@ -0,0 +1,93 @@
+<template>
+    <div
+        :class="{
+            pathCard: true,
+            borderB: data.BeginTime && !data.EndTime,
+            borderY: !data.EndTime && !data.HasError && data.HasRetry,
+            borderR: !data.EndTime && data.HasError
+        }"
+        @click="cardClick"
+    >
+        <div class="path-title">
+            <i v-if="!data.BeginTime" class="iconfont icon-iconfontgengduo" style="color: #89969f"></i>
+            <i v-else-if="data.BeginTime && !data.EndTime" class="iconfont icon-conduct" style="color: #409eff"></i>
+            <i v-else class="el-icon-success" style="color: #67c23a"></i>
+            {{ title }}
+            <i v-if="data.HasError" class="iconfont icon-Error pos" style="color: #ff7c77"></i>
+            <i v-else-if="data.HasRetry" class="iconfont icon-trouble pos" style="color: #fcc636"></i>
+        </div>
+        <div class="path-content">
+            <slot></slot>
+            <p v-if="!isCustomize">耗时: {{ data.TakeTime || "--" }}</p>
+            <p v-if="!isCustomize">开始时间: {{ data.BeginTime || "--" }}</p>
+            <p v-if="!isCustomize">结束时间: {{ data.EndTime || "--" }}</p>
+        </div>
+    </div>
+</template>
+<script>
+export default {
+    props: {
+        title: {
+            type: String,
+            default: '提示'
+        },
+        data: {
+            type: Object,
+            default: {}
+        },
+        isCustomize: {
+            type: Boolean,
+            default: false
+        }
+    },
+    data() {
+        return {
+        }
+    },
+    methods: {
+        cardClick() {
+            this.$emit('click', this.data, this.title);
+        }
+    }
+};
+</script>
+<style lang="scss" scoped>
+.pathCard {
+    width: 296px;
+    height: 144px;
+    border: 1px solid transparent;
+    box-shadow: 0 2px 11px 0 rgba(0, 0, 0, 0.1);
+    border-radius: 4px;
+    cursor: pointer;
+    &.borderY {
+        border-color: #fcc636;
+    }
+    &.borderR {
+        border-color: #ff7c77;
+    }
+    &.borderB {
+        border-color: #409eff;
+    }
+    .path-title {
+        position: relative;
+        background-color: #f3f5f6;
+        font-size: 14px;
+        padding: 5px 10px;
+        i {
+            margin-right: 5px;
+            &.pos {
+                position: absolute;
+                top: -1px;
+                right: 18px;
+                font-size: 24px;
+                line-height: 1;
+            }
+        }
+    }
+    .path-content {
+        font-size: 12px;
+        padding: 4px 10px 0;
+        color: #acb5bb;
+    }
+}
+</style>

File diff suppressed because it is too large
+ 1002 - 0
src/views/manage/path/index.vue


+ 16 - 9
vue.config.js

@@ -35,20 +35,27 @@ module.exports = {
                 target: "http://192.168.64.17:28890",
                 changeOrigin: true
             },
-            // "/modelapi": {
-            //     target: "http://192.168.64.17:28890",
-            //     changeOrigin: true,
-            //     pathRewrite: {
-            //         "^/modelapi": "/revit-algorithm"
-            //     }
-            // },
+            "/schedulerapi": {
+                target: "http://192.168.64.17:28890",
+                changeOrigin: true,
+                pathRewrite: {
+                    "^/schedulerapi": "/scheduler"
+                }
+            },
             "/modelapi": {
-                target: "http://192.168.0.55:8080",
+                target: "http://192.168.64.17:28890",
                 changeOrigin: true,
                 pathRewrite: {
-                    "^/modelapi": "/"
+                    "^/modelapi": "/revit-algorithm"
                 }
             },
+            // "/modelapi": {
+            //     target: "http://192.168.0.55:8080",
+            //     changeOrigin: true,
+            //     pathRewrite: {
+            //         "^/modelapi": "/"
+            //     }
+            // },
             "/message-center": {
                 target: "http://192.168.64.17:28890",
                 changeOrigin: true