瀏覽代碼

Merge remote-tracking branch 'origin/master'

# Conflicts:
#	src/views/maintain/space/index.vue
shaun-sheep 4 年之前
父節點
當前提交
ef33f920ae

+ 1 - 0
.env.development

@@ -1,2 +1,3 @@
 NODE_ENV = "development"
 VUE_APP_BASE_API = 'https://vue-typescript-admin-mock-server.armour.now.sh/mock-api/v1/'
+VUE_APP_MQTT_SERVICE = 'ws://adm.sagacloud.cn/stomp/'

+ 1 - 0
.env.production

@@ -1,2 +1,3 @@
 NODE_ENV = "production"
 VUE_APP_BASE_API = 'https://vue-typescript-admin-mock-server.armour.now.sh/mock-api/v1/'
+VUE_APP_MQTT_SERVICE = 'ws://adm.sagacloud.cn/stomp/'

+ 1 - 0
.env.staging

@@ -1,4 +1,5 @@
 NODE_ENV = "production"
 # Base api
 VUE_APP_BASE_API = '/stage-api'
+VUE_APP_MQTT_SERVICE = 'ws://adm.sagacloud.cn/stomp/'
 

+ 2 - 1
.eslintrc.js

@@ -14,6 +14,7 @@ module.exports = {
   },
   rules: {
     "@typescript-eslint/ban-types": "off",
+    "@typescript-eslint/ban-ts-comment": "off",
     "@typescript-eslint/explicit-module-boundary-types": "off",
     "@typescript-eslint/member-delimiter-style": [
       "error",
@@ -41,7 +42,7 @@ module.exports = {
     "vue/camelcase": "error",
     "vue/comma-dangle": "error",
     "vue/component-name-in-template-casing": ["error", "kebab-case"],
-    "vue/eqeqeq": "error",
+    "vue/eqeqeq": ["off"],
     "vue/key-spacing": "error",
     "vue/match-component-file-name": "error",
     "vue/object-curly-spacing": ["error", "always"]

+ 4 - 0
package.json

@@ -13,6 +13,10 @@
     "test:unit": "jest --clearCache && vue-cli-service test:unit"
   },
   "dependencies": {
+    "@persagy-web/base": "2.2.1",
+    "@persagy-web/draw": "2.2.10",
+    "@persagy-web/graph": "2.2.40",
+    "@persagy-web/big": "2.2.43",
     "@babel/runtime": "^7.12.5",
     "axios": "^0.21.1",
     "core-js": "^3.6.5",

+ 1 - 1
public/index.html

@@ -5,7 +5,7 @@
   <meta http-equiv="X-UA-Compatible" content="IE=edge">
   <meta name="viewport" content="width=device-width,initial-scale=1.0">
   <link rel="icon" href="<%= BASE_URL %>favicon.ico">
-  <link rel="stylesheet" href="//at.alicdn.com/t/font_2327510_n21nvmc2c1p.css" />
+  <link rel="stylesheet" href="//at.alicdn.com/t/font_2327510_7jj0x1gmztq.css" />
   <title><%= htmlWebpackPlugin.options.title %></title>
 </head>
 <body>

+ 51 - 0
src/api/messagecenter.ts

@@ -0,0 +1,51 @@
+/**
+ * 消息中心接口文档
+ */
+import httputils from "@/api/httputils";
+const baseUrl = "/message-center";
+
+/**
+ * title: 统计数量
+ * info: 查询总数量不传参数,查询 已读Read = true,未读 Read = false
+ */
+export function messgeCount(postParams: any): Promise<any> {
+    return httputils.postJson(`${baseUrl}/message/count`, postParams);
+}
+
+/**
+ * title: 创建消息
+ * info: 消息类型:提示(Info)、警告(Warning)、错误(Error)、成功(Success)
+ */
+export function messgeCreate(postParams: any): Promise<any> {
+    return httputils.postJson(`${baseUrl}/message/create`, postParams);
+}
+
+/**
+ * title: 删除消息
+ */
+export function messgeDelete(postParams: any): Promise<any> {
+    return httputils.postJson(`${baseUrl}/message/delete`, postParams);
+}
+
+/**
+ * title: 查询消息列表
+ */
+export function messgeQuery(postParams: any): Promise<any> {
+    return httputils.postJson(`${baseUrl}/message/page-query`, postParams);
+}
+
+/**
+ * title: 更新消息状态
+ * info: 是否读过:未读(f)、已读(t)
+ */
+export function messgeUpdate(postParams: any): Promise<any> {
+    return httputils.postJson(`${baseUrl}/message/update`, postParams);
+}
+
+/**
+ * title: 根据接收人将消息置为已读
+ * info: 已读Read = true,*UserId
+ */
+export function messgeUpdateState(postParams: any): Promise<any> {
+    return httputils.postJson(`${baseUrl}/message/update-state`, postParams);
+}

文件差異過大導致無法顯示
+ 105 - 0
src/assets/iconfont/iconfont.css


二進制
src/assets/iconfont/iconfont.eot


文件差異過大導致無法顯示
+ 92 - 0
src/assets/iconfont/iconfont.svg


二進制
src/assets/iconfont/iconfont.ttf


二進制
src/assets/iconfont/iconfont.woff


+ 0 - 3
src/components/GlobalUploader/index.vue

@@ -1,8 +1,5 @@
 <!--
  * @Author: zhangyu <taohuzy@163.com>
- * @Date: 2019-11-28 10:05:28
- * @Info: 
- * @LastEditTime : 2020-01-03 15:31:04
  -->
 <template>
     <div id="global-uploader">

+ 272 - 0
src/layout/components/Navbar/MessageSever/MsgAllDetails.vue

@@ -0,0 +1,272 @@
+<template>
+    <div class="box">
+        <div class="condition">
+            <div class="main" :style="tableData && tableData.length ? 'height: calc(100% - 50px);' : 'height: calc(100% - 46px);'">
+                <el-table
+                    ref="multipleTable"
+                    :data="tableData"
+                    v-loading="loading"
+                    stripe
+                    height="100%"
+                    :header-cell-style="headerStyle"
+                    @expand-change="changeMessageState"
+                >
+                    <el-table-column type="selection" width="55"></el-table-column>
+                    <el-table-column width="25">
+                        <template slot-scope="scope">
+                            <el-badge class="item" type="warning" is-dot v-if="!scope.row.read"></el-badge>
+                        </template>
+                    </el-table-column>
+                    <el-table-column prop="title" label="标题内容" min-width="300" show-overflow-tooltip></el-table-column>
+                    <el-table-column label="项目">
+                        <template slot-scope="scope">
+                            {{ scope.row.project[0].localName }}
+                        </template>
+                    </el-table-column>
+                    <el-table-column label="模块" width="200">
+                        <template slot-scope="scope">
+                            {{ moduleMap[scope.row.module] ? moduleMap[scope.row.module] : scope.row.module }}
+                        </template>
+                    </el-table-column>
+                    <el-table-column prop="createTime" label="消息时间"> </el-table-column>
+                    <el-table-column label="消息类型">
+                        <template slot-scope="scope">
+                            <div>
+                                <i
+                                    :class="iconClassMap[scope.row.type] ? iconClassMap[scope.row.type] : 'msg-icon el-icon-warning warning-color'"
+                                    style="font-size: 14px"
+                                ></i>
+                                <span>{{ typeMap[scope.row.type] ? typeMap[scope.row.type] : scope.row.type }}</span>
+                            </div>
+                        </template>
+                    </el-table-column>
+                    <el-table-column type="expand">
+                        <template slot-scope="scope">
+                            <p>{{ scope.row.content.message }}</p>
+                            <el-link
+                                v-for="(btn, index) in scope.row.content.buttonList"
+                                style="float: left; font-size: 12px; color: white"
+                                :key="index"
+                                :href="`/image-service/common/file_get?systemId=revit&key=${btn.url}`"
+                                :download="btn.fileName ? btn.fileName : ''"
+                            >
+                                {{ btn.name }}
+                            </el-link>
+                        </template>
+                    </el-table-column>
+                    <template slot="empty">
+                        <div style="height: 60%; transform: translateY(50%)">
+                            <i class="icon-wushuju iconfont"></i>
+                            暂无数据
+                        </div>
+                    </template>
+                </el-table>
+            </div>
+            <el-pagination
+                class="right"
+                v-show="tableData && tableData.length"
+                @size-change="handleSizeChange"
+                @current-change="handleCurrentChange"
+                :current-page="page.pageNumber"
+                :page-sizes="page.pageSizes"
+                :page-size="page.pageSize"
+                layout="total, sizes, prev, pager, next, jumper"
+                :total="page.total"
+            >
+            </el-pagination>
+        </div>
+    </div>
+</template>
+
+<script lang="ts">
+import { messgeQuery, messgeUpdate } from "@/api/messagecenter";
+import { Component, Vue } from "vue-property-decorator";
+import Bus from "@/utils/bus.ts";
+import { UserModule } from "@/store/modules/user";
+
+@Component({
+    name: "MsgAllDetails",
+    components: {},
+})
+export default class extends Vue {
+    // 消息数据
+    private tableData: any[] = [];
+    // loading标识
+    private loading = false;
+    // 分页配置
+    private page = {
+        pageSize: 50,
+        pageSizes: [10, 20, 50, 100],
+        pageNumber: 1,
+        total: 0,
+    };
+    // 列表样式
+    private headerStyle = {
+        backgroundColor: "#e1e4e5",
+        color: "#2b2b2b",
+        lineHeight: "30px",
+    };
+    // 消息模块映射
+    private moduleMap = {
+        Model: "模型文件管理",
+    };
+    // 消息类型图标映射
+    private iconClassMap = {
+        Success: "msg-icon el-icon-success success-color",
+        Error: "msg-icon el-icon-error error-color",
+        Warning: "msg-icon el-icon-warning warning-color",
+        Info: "msg-icon el-icon-info info-color",
+    };
+    // 消息类型文字映射
+    private typeMap = {
+        Success: "成功",
+        Error: "错误",
+        Warning: "警告",
+        Info: "提醒",
+    };
+
+    get userId(): string {
+        return UserModule.userId;
+    }
+
+    mounted() {
+        this.getTableData();
+    }
+
+    /**
+     * 获取列表数据
+     */
+    private async getTableData() {
+        let params = {
+            cascade: [
+                {
+                    name: "project",
+                },
+            ],
+            filters: `userId='${this.userId}';type!='Refresh'`,
+            orders: "createTime desc, id asc",
+            pageNumber: this.page.pageNumber,
+            pageSize: this.page.pageSize,
+        };
+        this.loading = true;
+        const res = await messgeQuery(params);
+        if (res.result === "success") {
+            this.tableData = res.content;
+            this.page.total = res.total;
+            this.loading = false;
+        }
+    }
+
+    /**
+     * 切换每页显示数量
+     */
+    private handleSizeChange(val: number) {
+        this.page.pageSize = val;
+        this.getTableData();
+    }
+
+    /**
+     * 切换页码
+     */
+    private handleCurrentChange(val: number) {
+        this.page.pageNumber = val;
+        this.getTableData();
+    }
+
+    /**
+     * 更新消息状态:已读、未读
+     */
+    private async changeMessageState(val: any) {
+        if (!val.Read) {
+            val.Read = true;
+            const params = {
+                content: [
+                    {
+                        id: val.id,
+                        read: true,
+                    },
+                ],
+            };
+            const res = await messgeUpdate(params);
+            // 展开更新为已读状态,未读数量同步变更
+            if (res.result === "success") Bus.$emit("getUnreadCountUpdate");
+        }
+    }
+}
+</script>
+
+<style scoped lang='scss'>
+.box {
+    height: 100%;
+    .condition {
+        padding: 10px;
+        display: flex;
+        height: 100%;
+        flex-direction: column;
+        border: 1px solid #dfe6ec;
+        background: #fff;
+
+        .main {
+            margin-top: 10px;
+
+            a {
+                text-decoration: none;
+            }
+        }
+
+        .right {
+            text-align: right;
+            margin-top: 10px;
+        }
+    }
+}
+
+.el-badge.item {
+    height: 10px;
+}
+
+.el-table__expanded-cell {
+    p {
+        margin-left: 40px;
+    }
+}
+
+.el-link {
+    margin: 20px 0 0 40px;
+    background: #409eff;
+    border-radius: 3px;
+    padding: 3px 15px;
+}
+
+.demo-table-expand {
+    font-size: 0;
+}
+
+.demo-table-expand label {
+    width: 90px;
+    color: #99a9bf;
+}
+
+.demo-table-expand .el-form-item {
+    margin-right: 0;
+    margin-bottom: 0;
+    margin-left: 120px;
+    width: 100%;
+}
+
+.success-color {
+    color: #67c23a;
+}
+
+.error-color {
+    color: #f56c6c;
+}
+
+.warning-color {
+    color: #e6a23c;
+}
+
+.info-color {
+    color: #909399;
+}
+</style>

+ 521 - 0
src/layout/components/Navbar/MessageSever/index.vue

@@ -0,0 +1,521 @@
+<!--
+ * @Author: zhangyu <taohuzy@163.com>
+ -->
+<template>
+    <div class="notification-box" v-clickOutside="handleClose" @click="handleClickRead">
+        <el-badge :value="unreadNum" :hidden="!unreadNum" :max="99">
+            <i class="el-icon-message-solid"></i>
+        </el-badge>
+        <transition name="el-fade-in-linear">
+            <div v-show="noticeListShow" @click.stop="" class="noticeBox">
+                <ul class="noticeTab">
+                    <li class="noticeTab_item">
+                        消息通知
+                        <!-- <span class="unread_num">1</span> -->
+                    </li>
+                </ul>
+                <div class="noticeList_scroll">
+                    <el-scrollbar style="height: 100%">
+                        <ul class="noticeList">
+                            <li
+                                class="noticeList_item"
+                                v-for="item in messageList"
+                                :key="item.id"
+                                :title="item.content.message ? item.content.message : ''"
+                            >
+                                <div class="noticeItem_box">
+                                    <div class="noticeItem_text">
+                                        <i :class="iconClassMap[item.type] ? iconClassMap[item.type] : 'msg-icon el-icon-warning warning-color'"></i>
+                                        <p>
+                                            <span>{{ `【${moduleMap[item.module] ? moduleMap[item.module] : item.module}】 ` }}</span
+                                            >{{ item.title ? item.title : "" }}
+                                        </p>
+                                    </div>
+                                    <div class="noticeItem_time">
+                                        <span class="proname">{{ item.project[0].localName || "" }}</span>
+                                        {{ item.createTime }}
+                                        <template v-if="item.content.buttonList.length">
+                                            <el-link
+                                                v-for="(btn, index) in item.content.buttonList"
+                                                style="float: right; font-size: 12px; margin-left: 5px"
+                                                type="primary"
+                                                :key="index"
+                                                :href="`/image-service/common/file_get?systemId=revit&key=${btn.url}`"
+                                                :download="btn.fileName ? btn.fileName : ''"
+                                            >
+                                                {{ btn.name ? btn.name : "" }}
+                                            </el-link>
+                                        </template>
+                                    </div>
+                                </div>
+                            </li>
+                        </ul>
+                    </el-scrollbar>
+                </div>
+                <div class="notice_operate">
+                    <!-- <div class="readAll">全部标为已读</div> -->
+                    <div class="seeAll" @click="allDetails">查看全部<i class="iconfont icon-right"></i></div>
+                </div>
+            </div>
+        </transition>
+        <!-- <el-button type="primary" @click="handleClickConnectMQ">连接MQ</el-button>
+    <el-button type="primary" @click="handleClickDisconnectMQ">断开MQ</el-button>
+    <el-button type="primary" @click="handleClickUnsubscribe">停止接收消息</el-button><br><br>
+    <el-input type="textarea" :autosize="{ minRows: 6, maxRows: 6}" v-model="sendMessage" placeholder="请输入要发送的内容"></el-input>
+    <br><br>
+    <el-button type="primary" @click="handleClickSendMessage">发送消息</el-button>
+    <el-card style="margin-top:20px;text-align:left;">
+      <div slot="header" class="clearfix">
+        <span>消息历史</span>
+      </div>
+      <div v-for="(message, index) in messageList" :key="index" class="text item">
+        {{ message }}
+      </div>
+    </el-card> -->
+    </div>
+</template>
+
+<script lang="ts">
+// eslint-disable-next-line @typescript-eslint/ban-ts-comment
+// @ts-ignore
+import Stomp from "stompjs";
+import { Component, Vue } from "vue-property-decorator";
+import { UserModule } from "@/store/modules/user";
+import Msmq from "./msmq";
+import Bus from "@/utils/bus";
+import { MQTT_SERVICE, MQTT_USERNAME, MQTT_PASSWORD } from "./mqSetting";
+import { messgeCount, messgeQuery, messgeUpdateState } from "@/api/messagecenter";
+
+@Component({
+    name: "MessageSever",
+    components: {},
+})
+export default class extends Vue {
+    // STOMP客户端对象
+    private client = Stomp.client(MQTT_SERVICE);
+    // 未读消息数量
+    private unreadNum = 0;
+    // 消息列表是否显示标志
+    private noticeListShow = false;
+    // 发送的消息内容
+    private sendMessage = "";
+    // 历史消息
+    private messageList = [];
+    // 订阅的消息实例
+    private subList: any[] = [];
+    // 订阅的消息名称
+    private topics: string[] = ["/topic/message.manage"];
+    // 消息模块映射
+    private moduleMap = {
+        Model: "模型文件管理",
+    };
+    // 消息类型图标映射
+    private iconClassMap = {
+        Success: "msg-icon el-icon-success success-color",
+        Error: "msg-icon el-icon-error error-color",
+        Warning: "msg-icon el-icon-warning warning-color",
+        Info: "msg-icon el-icon-info info-color",
+    };
+
+    get userId(): string {
+        return UserModule.userId;
+    }
+
+    get username(): string {
+        return UserModule.username;
+    }
+
+    get projectId(): string {
+        return UserModule.projectId;
+    }
+
+    get projects(): any[] {
+        return UserModule.projects;
+    }
+
+    created() {
+        this.connect();
+    }
+    mounted() {
+        this.getUnreadCount();
+        this.getMessageList(); //获取消息列表
+        Bus.$on("messageListUpdate", () => {
+            this.getMessageList();
+        });
+        Bus.$on("getUnreadCountUpdate", () => {
+            this.getUnreadCount();
+        });
+    }
+
+    /**
+     * 获取消息列表(最新10条)
+     */
+    private async getMessageList() {
+        const params = {
+            cascade: [
+                {
+                    name: "project",
+                },
+            ],
+            filters: `userId='${this.userId}';type!='refresh'`,
+            orders: "createTime desc, id asc",
+            pageNumber: 1,
+            pageSize: 10,
+        };
+        const res = await messgeQuery(params);
+        this.messageList = res.content || [];
+    }
+
+    /**
+     * 获取未读消息的数量
+     */
+    private async getUnreadCount() {
+        let params = {
+            filters: `read=false;userId='${this.userId}';type!='refresh'`,
+        };
+        const res = await messgeCount(params);
+        this.unreadNum = res.count || 0;
+    }
+
+    /**
+     * 将当前角色消息全部置为已读
+     */
+    private async setAllRead() {
+        if (this.userId) {
+            const res = await messgeUpdateState({ read: true, userId: this.userId });
+            if (res.result === "success") this.unreadNum = 0;
+        }
+    }
+
+    /**
+     * 关闭消息列表
+     */
+    handleClose(e: Event) {
+        this.noticeListShow = false;
+        return e;
+    }
+
+    /**
+     * 点击消息铃铛
+     */
+    private handleClickRead() {
+        this.noticeListShow ? (this.noticeListShow = false) : (this.noticeListShow = true);
+        if (this.noticeListShow) {
+            this.setAllRead(); //将当前角色消息全部置为已读
+        }
+    }
+
+    /**
+     * 连接STOMP服务端
+     */
+    private connect() {
+        this.client = Stomp.client(MQTT_SERVICE);
+        this.client.reconnect_delay = 5000;
+        var clientid = `sagaMQ-${this.username}-${new Date().getTime()}`;
+        var headers = {
+            login: MQTT_USERNAME,
+            passcode: MQTT_PASSWORD,
+            "client-id": clientid,
+        };
+        this.client.connect(headers, this.onConnected, this.onFailed);
+    }
+
+    private onConnected(frame: any) {
+        console.log("Connected: " + frame);
+        //订阅多个消息
+        this.topics.forEach((item: string) => {
+            const sub: any = this.client.subscribe(item, this.onmessage, this.onFailed);
+            this.subList.push(sub);
+        });
+        // this.client.subscribe(topic, this.onmessage, this.onFailed)
+    }
+
+    /**
+     * 接收到消息的回调
+     */
+    private onmessage(message: string) {
+        this.unreadNum = Msmq.handleMsg(message, this.projects, this.userId, this.unreadNum);
+    }
+
+    /**
+     * 接收消息失败回调
+     */
+    private onFailed(frame: any) {
+        console.log("Failed: " + frame);
+    }
+
+    /**
+     * 停止接收消息
+     */
+    private unsubscribe() {
+        this.subList.forEach((item: any) => {
+            item.unsubscribe();
+        });
+    }
+
+    /**
+     * 断开连接
+     */
+    private disconnect() {
+        this.client.disconnect(function () {
+            console.log("连接已断开!");
+        });
+    }
+
+    /**
+     * 发送消息
+     */
+    private send(destination: string, message: any, headers = {}) {
+        this.client.send(destination, headers, JSON.stringify(message));
+    }
+
+    /**
+     * 连接MQ
+     */
+    private handleClickConnectMQ() {
+        this.connect();
+    }
+
+    /**
+     * 断开MQ
+     */
+    private handleClickDisconnectMQ() {
+        this.disconnect();
+    }
+
+    /**
+     * 停止接收消息
+     */
+    private handleClickUnsubscribe() {
+        this.unsubscribe();
+    }
+
+    /**
+     * 发送消息
+     */
+    private handleClickSendMessage() {
+        this.send("/topic/datacenter.broadcast", this.sendMessage);
+    }
+
+    /**
+     * 查看完整消息列表(跳转消息列表页面)
+     */
+    private allDetails() {
+        this.noticeListShow = false;
+        this.$router.push({ path: "/allDetails/index" });
+    }
+}
+</script>
+
+<style lang="scss" scoped>
+.notification-box {
+    width: 100%;
+    height: 100%;
+    position: relative;
+    line-height: 1;
+    padding: 16px 10px 12px;
+    box-sizing: border-box;
+    color: #79869a;
+    cursor: pointer;
+    .noticeBox {
+        position: absolute;
+        top: 50px;
+        left: 50%;
+        margin-left: -220px;
+        cursor: auto;
+        z-index: 1000;
+        text-align: left;
+        width: 272px;
+        height: 362px;
+        box-shadow: 0 1px 6px 0 #ccc;
+        color: #333;
+        background: #fff;
+        overflow: visible !important;
+    }
+    .noticeBox::before {
+        content: "";
+        border: solid 7px transparent;
+        border-bottom-color: #fff;
+        display: block;
+        position: absolute;
+        width: 2px;
+        top: -14px;
+        left: 50%;
+        margin-left: 77px;
+        z-index: 0;
+    }
+    .noticeTab {
+        padding: 8px 16px 0;
+        z-index: 10;
+        height: 40px;
+        zoom: 1;
+        box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
+        .noticeTab_item {
+            position: relative;
+            width: 240px;
+            height: 32px;
+            line-height: 32px;
+            padding: 0;
+            margin-right: 0;
+            font-weight: 700;
+            text-align: left;
+            cursor: pointer;
+            -webkit-transition: all 0.2s ease-in-out;
+            -o-transition: all 0.2s ease-in-out;
+            transition: all 0.2s ease-in-out;
+            .unread_num {
+                display: inline-block;
+                color: #fff;
+                background-color: #5182e4;
+                height: 14px;
+                padding: 0 2px;
+                line-height: 14px;
+                text-align: center;
+                border-radius: 2px;
+                font-size: 12px;
+                padding: 0 3px;
+                font-family: Arial;
+                -webkit-transform: scale(0.85);
+                -ms-transform: scale(0.85);
+                -o-transform: scale(0.85);
+                transform: scale(0.85);
+            }
+        }
+        .active {
+            box-shadow: 0 -2px 0 0 #5182e4 inset;
+        }
+    }
+    .noticeList_scroll {
+        height: 282px;
+        ::v-deep .el-scrollbar__wrap {
+            overflow-x: hidden;
+        }
+        .noticeList_item {
+            width: 100%;
+            height: auto;
+            position: relative;
+            cursor: pointer;
+            box-sizing: border-box;
+            padding: 12px 16px;
+            -webkit-transition: all 0.2s ease-in-out;
+            -o-transition: all 0.2s ease-in-out;
+            transition: all 0.2s ease-in-out;
+            zoom: 1;
+            .noticeItem_box {
+                float: left;
+                position: relative;
+                width: 100%;
+                .noticeItem_text {
+                    color: rgba(10, 18, 32, 0.87);
+                    font-weight: 700;
+                    padding-left: 18px;
+                    text-indent: -6px;
+                    position: relative;
+                    font-size: 12px;
+                    line-height: 17px;
+                    -webkit-transition: all 0.2s ease-in-out;
+                    -o-transition: all 0.2s ease-in-out;
+                    transition: all 0.2s ease-in-out;
+                    .msg-icon {
+                        position: absolute;
+                        top: 2.5px;
+                        left: 6px;
+                    }
+                    p {
+                        word-break: break-all;
+                    }
+                }
+                .noticeItem_time {
+                    font-size: 12px;
+                    height: 19px;
+                    line-height: 19px;
+                    color: rgba(10, 18, 32, 0.46);
+                    margin-top: 4px;
+                    padding-left: 18px;
+                    .proname {
+                        float: left;
+                        display: block;
+                        width: 80px;
+                        overflow: hidden;
+                        white-space: nowrap;
+                        text-overflow: ellipsis;
+                    }
+                }
+            }
+        }
+        .noticeList_item:hover {
+            background-color: #f5f7f7;
+        }
+        .noticeList_item:after {
+            content: "";
+            display: block;
+            height: 0;
+            clear: both;
+            visibility: hidden;
+        }
+        .noticeList_item:before {
+            position: absolute;
+            right: 0;
+            bottom: 0;
+            left: 0;
+            height: 1px;
+            padding: 0 16px;
+            background-color: #ebebeb;
+            content: "";
+            background-clip: content-box;
+        }
+    }
+    .notice_operate {
+        height: 40px;
+        line-height: 20px;
+        padding: 10px 16px;
+        box-sizing: border-box;
+        background-color: rgba(242, 243, 245, 0.48);
+        box-shadow: inset 0 1px 0 0 rgba(10, 18, 32, 0.06);
+        zoom: 1;
+        .readAll {
+            float: left;
+            cursor: pointer;
+            -webkit-transition: all 0.2s ease-in-out;
+            -o-transition: all 0.2s ease-in-out;
+            transition: all 0.2s ease-in-out;
+        }
+        .readAll:hover {
+            text-decoration: underline;
+        }
+        .seeAll {
+            float: right;
+            color: #5182e4;
+            cursor: pointer;
+            font-weight: 700;
+        }
+        .seeAll:hover {
+            text-decoration: underline;
+        }
+    }
+    .el-icon-message-solid {
+        font-size: 22px;
+    }
+    ::v-deep .el-badge__content {
+        height: 16px;
+        line-height: 16px;
+        border: 1px solid transparent;
+    }
+}
+.notification-box:hover {
+    color: #d3d8e2;
+    background-color: #3f4f62;
+}
+.success-color {
+    color: #67c23a;
+}
+.error-color {
+    color: #f56c6c;
+}
+.warning-color {
+    color: #e6a23c;
+}
+.info-color {
+    color: #909399;
+}
+</style>

+ 8 - 0
src/layout/components/Navbar/MessageSever/mqSetting.ts

@@ -0,0 +1,8 @@
+/**
+ * @Author zhangyu <taohuzy@163.com>
+ * @info MQ链接配置文件
+ * 
+ */
+export const MQTT_SERVICE = process.env.VUE_APP_MQTT_SERVICE // mq服务地址
+export const MQTT_USERNAME = 'admin' // mq连接用户名
+export const MQTT_PASSWORD = 'admin' // mq连接密码

+ 46 - 0
src/layout/components/Navbar/MessageSever/msmq.ts

@@ -0,0 +1,46 @@
+import { Notification } from 'element-ui';
+import Bus from '@/utils/bus'
+
+class MSMQ {
+    static msgTypeMap: any =  {
+    "Success": "success",
+    "Error": "error",
+    "Warning": "warning",
+    "Info": "info",
+  }
+
+  static moduleMap: any =  {//消息模块映射
+    "Model": "模型文件管理"
+  }
+  
+  static handleMsg (message: any, projects: any[], userId: string, unreadNum: number) {
+    let data: any
+    try {
+      data = JSON.parse(message.body)
+    } catch (err) {
+      return 0;
+    }
+    if(data.ProjectId && projects.some((item) => {return item.id == data.ProjectId})) { //判断消息是否是当前用户拥有的项目
+      if(!data.UserList || (userId && data.UserList && data.UserList.includes(userId))){//判断消息接收人是否是当前用户
+        if(data.Module && data.Module == 'Model'){ //模型文件的消息触发模型文件列表刷新事件
+          Bus.$emit('modelStatusChange', data)
+        }
+        if(data.Type != 'Refresh'){//消息列表可见消息(注类型为'Refresh'的消息用来驱动对应服务刷新,消息中心[用户]不可见)
+          Notification({ 
+            title: `${data.Title?data.Title:''}`, 
+            dangerouslyUseHTMLString: true, 
+            message: `【${this.moduleMap[data.Module]?this.moduleMap[data.Module]:data.Module}】${data.Content?data.Content.Message?data.Content.Message:'':''}`,
+            type: this.msgTypeMap[data.Type]?this.msgTypeMap[data.Type]:'info'
+          })
+          // Notification.info({ title: '消息',dangerouslyUseHTMLString: true, message: `项目编号:${data.projectId}<br>消息类型:${data.type}<br>描述信息:${data.description}<br>` })
+          unreadNum++
+          Bus.$emit('messageListUpdate', data)//消息驱动消息列表刷新
+        }
+        return unreadNum
+      }
+    }
+    return 0;
+  }
+}
+
+export default MSMQ

+ 17 - 4
src/layout/components/Navbar/index.vue

@@ -1,12 +1,17 @@
 <template>
     <div class="navbar">
-        <span class="title" v-show="sidebar.opened">万达数字化运维平台</span>
+        <span class="title" v-show="sidebar.opened"><i class="iconfont icon-wandajituan"></i></span>
         <hamburger id="hamburger-container" :is-active="sidebar.opened" class="hamburger-container" @toggle-click="toggleSideBar" />
 
         <div class="right-menu">
+            <ul class="header-nav">
+                <li class="header-nav-notification">
+                    <message-sever></message-sever>
+                </li>
+            </ul>
             <el-dropdown class="avatar-container right-menu-item hover-effect">
                 <div class="avatar-wrapper">
-                    <span> {{username}} </span>
+                    <span> {{ username }} </span>
                     <i class="el-icon-user-solid" />
                 </div>
                 <el-dropdown-menu slot="dropdown">
@@ -25,12 +30,14 @@ import { AppModule } from "@/store/modules/app";
 import { UserModule } from "@/store/modules/user";
 import Breadcrumb from "@/components/Breadcrumb/index.vue";
 import Hamburger from "@/components/Hamburger/index.vue";
+import MessageSever from "./MessageSever/index.vue";
 
 @Component({
     name: "Navbar",
     components: {
         Breadcrumb,
         Hamburger,
+        MessageSever,
     },
 })
 export default class extends Vue {
@@ -64,7 +71,7 @@ export default class extends Vue {
 <style lang="scss" scoped>
 .navbar {
     height: 50px;
-    overflow: hidden;
+    // overflow: hidden;
     position: relative;
     background-color: #2b3643;
     box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
@@ -72,11 +79,16 @@ export default class extends Vue {
 
     .title {
         float: left;
-        padding: 0 20px;
+        padding: 3px 50px 0 20px;
         margin: 0 auto;
         line-height: 46px;
         height: 100%;
         color: #fff;
+        i.icon-wandajituan {
+            color: #0861ab;
+            padding: 8px 0;
+            font-size: 36px;
+        }
     }
 
     .hamburger-container {
@@ -99,6 +111,7 @@ export default class extends Vue {
         float: right;
         height: 100%;
         line-height: 50px;
+        display: flex;
 
         &:focus {
             outline: none;

+ 8 - 2
src/layout/components/Sidebar/SidebarItem.vue

@@ -3,14 +3,16 @@
         <template v-if="theOnlyOneChild && !theOnlyOneChild.children">
             <sidebar-item-link v-if="theOnlyOneChild.meta" :to="resolvePath(theOnlyOneChild.path)">
                 <el-menu-item :index="resolvePath(theOnlyOneChild.path)" :class="{ 'submenu-title-noDropdown': isFirstLevel }">
-                    <svg-icon v-if="theOnlyOneChild.meta.icon" :name="theOnlyOneChild.meta.icon" />
+                    <!-- <svg-icon v-if="theOnlyOneChild.meta.icon" :name="theOnlyOneChild.meta.icon" /> -->
+                    <i v-if="theOnlyOneChild.meta.icon" class="iconfont" :class="theOnlyOneChild.meta.icon"></i>
                     <span v-if="theOnlyOneChild.meta.title" slot="title" class="title-name">{{ theOnlyOneChild.meta.title }}</span>
                 </el-menu-item>
             </sidebar-item-link>
         </template>
         <el-submenu v-else :index="resolvePath(item.path)" popper-append-to-body>
             <template slot="title">
-                <svg-icon v-if="item.meta && item.meta.icon" :name="item.meta.icon" />
+                <!-- <svg-icon v-if="item.meta && item.meta.icon" :name="item.meta.icon" /> -->
+                <i v-if="item.meta && item.meta.icon" class="iconfont" :class="item.meta.icon"></i>
                 <span v-if="item.meta && item.meta.title" slot="title">{{ item.meta.title }}</span>
             </template>
             <template v-if="item.children">
@@ -142,6 +144,10 @@ export default class extends Vue {
 </style>
 
 <style lang="scss" scoped>
+.iconfont {
+    color: #ffffff;
+    padding: 0 5px;
+}
 .title-name {
     color: #ffffff;
 }

+ 2 - 0
src/main.ts

@@ -12,7 +12,9 @@ import "@/styles/index.scss";
 import App from "@/App.vue";
 import store from "@/store";
 import router from "@/router/index";
+import '@/utils/directive' //自定义指令
 import "@/icons/components";
+import '@/assets/iconfont/iconfont.css'
 import "@/permission";
 
 Vue.use(uploader);

+ 36 - 9
src/router/index.ts

@@ -44,7 +44,26 @@ export default new Router({
             ),
           meta: {
             title: "项目管理",
-            icon: "form"
+            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: "消息中心"
           }
         }
       ]
@@ -54,7 +73,7 @@ export default new Router({
       component: Layout,
       meta: {
         title: "文件管理",
-        icon: "example"
+        icon: "icon-wenjianguanli"
       },
       children: [
         {
@@ -65,7 +84,7 @@ export default new Router({
             ),
           meta: {
             title: "建筑楼层管理",
-            icon: "tree"
+            // icon: "tree"
           }
         },
         {
@@ -76,7 +95,7 @@ export default new Router({
             ),
           meta: {
             title: "模型修改任务",
-            icon: "table"
+            // icon: "table"
           }
         }
       ]
@@ -87,7 +106,7 @@ export default new Router({
       redirect: "/maintain/device",
       meta: {
         title: "数据维护",
-        icon: "nested"
+        icon: "icon-shujuweihu"
       },
       children: [
         {
@@ -131,7 +150,7 @@ export default new Router({
       redirect: "/scene/tiepoint",
       meta: {
         title: "现场实施",
-        icon: "nested"
+        icon: "icon-xianchangshishi"
       },
       children: [
         {
@@ -165,7 +184,7 @@ export default new Router({
       component: Layout,
       meta: {
         title: "一致性检查工具",
-        icon: "nested"
+        icon: "icon-yizhixingjianchagongju"
       }
     },
     {
@@ -173,7 +192,15 @@ export default new Router({
       component: Layout,
       meta: {
         title: "模型检查工具",
-        icon: "nested"
+        icon: "icon-moxingjianchagongju"
+      }
+    },
+    {
+      path: "/management",
+      component: Layout,
+      meta: {
+        title: "综合管理与其他",
+        icon: "icon-zongheguanliyuqita"
       }
     },
     {
@@ -182,7 +209,7 @@ export default new Router({
       redirect: "noredirect",
       meta: {
         title: "错误页面",
-        icon: "nested"
+        icon: "icon-weihubangzhu"
       },
       children: [
         {

+ 7 - 0
src/store/modules/user.ts

@@ -15,6 +15,7 @@ export interface IUserState {
     username: string;
     userId: string;
     projectId: string;
+    projects: any[];
     avatar: string;
     introduction: string;
     roles: string[];
@@ -27,6 +28,7 @@ class User extends VuexModule implements IUserState {
     public username = "yanruolan";
     public userId = "06328a53c69a41bb8f5bb1a552c6e8d6";
     public projectId = "Pj4403070003";// 深圳龙岗万达广场
+    public projects: any[] = [];// 用户项目列表
     public avatar = "";
     public introduction = "";
     public roles: string[] = [];
@@ -47,6 +49,11 @@ class User extends VuexModule implements IUserState {
     }
 
     @Mutation
+    private SET_PROJECTS(projects: any[]) {
+        this.projects = projects;
+    }
+
+    @Mutation
     private SET_AVATAR(avatar: string) {
         this.avatar = avatar;
     }

+ 1 - 1
src/styles/_variables.scss

@@ -11,7 +11,7 @@ $yellow:#FEC171;
 $panGreen: #30B08F;
 
 // Sidebar
-$sideBarWidth: 210px;
+$sideBarWidth: 240px;
 $subMenuBg:#1f2d3d;
 $subMenuHover:#001528;
 $subMenuActiveText:#f4f4f5;

+ 26 - 0
src/utils/directive.ts

@@ -0,0 +1,26 @@
+import Vue from 'vue'
+//点击空白处隐藏div指令
+Vue.directive('clickOutside', {
+    // 初始化指令
+    bind(el: any, binding) {
+        function documentHandler(e: Event) {
+            // 这里判断点击的元素是否是本身,是本身,则返回
+            if (el.contains(e.target)) {
+                return false;
+            }
+            // 判断指令中是否绑定了函数
+            if (binding.expression) {
+                // 如果绑定了函数 则调用那个函数,此处binding.value就是handleClose方法
+                binding.value(e);
+            }
+        }
+        // 给当前元素绑定个私有变量,方便在unbind中可以解除事件监听
+        el.__vueClickOutside__ = documentHandler;
+        document.addEventListener('click', documentHandler);
+    },
+    unbind(el: any) {
+        // 解除事件监听
+        document.removeEventListener('click', el.__vueClickOutside__);
+        delete el.__vueClickOutside__;
+    },
+})

+ 202 - 0
src/utils/graph/FloorScene.ts

@@ -0,0 +1,202 @@
+import { getJsonz, ItemColor } from "@persagy-web/big/lib";
+import { SColumnItem } from "@persagy-web/big/lib/items/floor/SColumnItem";
+import { SDoorItem } from "@persagy-web/big/lib/items/floor/SDoorItem";
+import { SSpaceItem } from "@persagy-web/big/lib/items/floor/SSpaceItem";
+import { SVirtualWallItem } from "@persagy-web/big/lib/items/floor/SVirtualWallItem";
+import { SWallItem } from "@persagy-web/big/lib/items/floor/SWallItem";
+import { SWindowItem } from "@persagy-web/big/lib/items/floor/SWindowItem";
+import { SZoneItem } from "@persagy-web/big/lib/items/floor/ZoneItem";
+import { Casement } from "@persagy-web/big/lib/types/floor/Casement";
+import { Column } from "@persagy-web/big/lib/types/floor/Column";
+import { Door } from "@persagy-web/big/lib/types/floor/Door";
+import { Space } from "@persagy-web/big/lib/types/floor/Space";
+import { VirtualWall } from "@persagy-web/big/lib/types/floor/VirtualWall";
+import { Wall } from "@persagy-web/big/lib/types/floor/Wall";
+import { FloorData } from "@persagy-web/big/lib/types/FloorData";
+import { SGraphScene } from "@persagy-web/graph/lib";
+
+/**
+ * 楼层平面图
+ */
+export class FloorScene extends SGraphScene {
+    /** json数据  */
+    json: string | null = null;
+    /** 墙list   */
+    wallList: SWallItem[] = [];
+    /** 柱子list   */
+    columnList: SColumnItem[] = [];
+    /** 门list   */
+    doorList: SDoorItem[] = [];
+    /** 窗list   */
+    casementList: SWindowItem[] = [];
+    /** 虚拟墙list   */
+    virtualWallList: SVirtualWallItem[] = [];
+    /** 空间list   */
+    spaceList: SSpaceItem[] = [];
+    /** 业务空间list */
+    zoneList: SZoneItem[] = [];
+
+    /** 空间是否可选  */
+    _isSpaceSelectable: boolean = true;
+    get isSpaceSelectable(): boolean {
+        return this._isSpaceSelectable;
+    } // Get isSpaceSelectable
+    set isSpaceSelectable(v: boolean) {
+        if (this._isSpaceSelectable === v) {
+            return;
+        }
+        this._isSpaceSelectable = v;
+        this.spaceList.map(
+            (t: SSpaceItem): SSpaceItem => {
+                t.selectable = this._isSpaceSelectable;
+                return t;
+            }
+        );
+    } // Set isSpaceSelectable
+
+    /** 空间是否可选  */
+    _isZoneSelectable: boolean = true;
+    get isZoneSelectable(): boolean {
+        return this._isZoneSelectable;
+    } // Get isZoneSelectable
+    set isZoneSelectable(v: boolean) {
+        if (this._isZoneSelectable === v) {
+            return;
+        }
+        this._isZoneSelectable = v;
+        this.zoneList.map(
+            (t: SZoneItem): SZoneItem => {
+                t.selectable = this._isZoneSelectable;
+                return t;
+            }
+        );
+    } // Set isZoneSelectable
+
+    constructor() {
+        super()
+        // 设置始终不出现选择器
+        this.selectContainer.showSelect = false;
+    }
+
+    /**
+     *  获取底图压缩文件
+     *
+     *  @param  url     请求数据文件路径
+     */
+    loadUrl(url: string): Promise<void> {
+        return getJsonz(url).then((res: any) => {
+            this.addBaseMapItem(res)
+            this.json = JSON.stringify(res);
+            return res;
+        })
+    } // Function loadUrl()
+
+    /**
+     *  增添所有底图item;
+     *
+     *  @param  data    itemList对象
+     */
+    private addBaseMapItem(data: FloorData): void {
+        if (data.Walls) {
+            data.Walls.forEach((t: Wall): void => {
+                this.addWall(t);
+            });
+        }
+        if (data.Columns) {
+            data.Columns.forEach((t: Column): void => {
+                this.addColumn(t);
+            });
+        }
+        if (data.Windows) {
+            data.Windows.forEach((t: Casement): void => {
+                this.addCasement(t);
+            });
+        }
+        if (data.VirtualWalls) {
+            data.VirtualWalls.forEach((t: VirtualWall): void => {
+                this.addVirtualWall(t);
+            });
+        }
+        if (data.Doors) {
+            data.Doors.forEach((t: Door): void => {
+                this.addDoor(t);
+            });
+        }
+        if (data.Spaces) {
+            data.Spaces.forEach((t: Space): void => {
+                this.addSpace(t);
+            });
+        }
+    } // Function addBaseMapItem()
+
+    /**
+     *  添加空间到scene 中
+     *
+     *  @param  space   空间item
+     */
+    addSpace(space: Space): void {
+        let item = new SSpaceItem(null, space);
+        item.selectable = this.isSpaceSelectable;
+        item.fillColor = ItemColor.spaceColor;
+        item.strokeColor = ItemColor.spaceBorderColor;
+        this.spaceList.push(item);
+        this.addItem(item);
+    } // Function addSpace()
+
+    /**
+     *  添加柱子到scene 中
+     *
+     *  @param  column   柱子item
+     */
+    addColumn(column: Column): void {
+        let item = new SColumnItem(null, column);
+        item.fillColor = ItemColor.columnColor;
+        this.columnList.push(item);
+        this.addItem(item);
+    } // Function addColumn()
+
+    /**
+     *  添加墙到scene 中
+     *
+     *  @param  wall   墙item
+     */
+    addWall(wall: Wall): void {
+        let item = new SWallItem(null, wall);
+        item.fillColor = ItemColor.wallColor;
+        this.wallList.push(item);
+        this.addItem(item);
+    } // Function addWall()
+
+    /**
+     *  添加所有虚拟墙到scene中
+     *
+     *  @param  virtualWall   虚拟墙item
+     */
+    addVirtualWall(virtualWall: VirtualWall): void {
+        let item = new SVirtualWallItem(null, virtualWall);
+        this.virtualWallList.push(item);
+        this.addItem(item);
+    } // Function addVirtualWall()
+
+    /**
+     *  添加门到scene 中
+     *
+     * @param door
+     */
+    addDoor(door: Door): void {
+        let item = new SDoorItem(null, door);
+        this.doorList.push(item);
+        this.addItem(item);
+    } // Function addDoor()
+
+    /**
+     *  添加窗户到scene 中
+     *
+     * @param casement
+     */
+    addCasement(casement: Casement): void {
+        let item = new SWindowItem(null, casement);
+        this.casementList.push(item);
+        this.addItem(item);
+    } // Function addCasement()
+}

+ 20 - 0
src/utils/graph/FloorView.ts

@@ -0,0 +1,20 @@
+import { SNetUtil } from "@persagy-web/base/lib";
+import { SGraphView } from "@persagy-web/graph/lib";
+
+/** 
+ * 楼层视图
+*/
+export class FloorView extends SGraphView {
+    /**
+       * 保存底图json
+       *
+       * @param   name    文件名
+       */
+    saveFloorJson(name: string): void {
+        // @ts-ignore
+        if (!this.scene || !this.scene.json) return;
+        // @ts-ignore
+        let url = URL.createObjectURL(new Blob([this.scene.json]));
+        SNetUtil.downLoad(name, url);
+    } // Function saveSceneSvg()
+}

+ 22 - 0
src/utils/graph/config/ItemColor.ts

@@ -0,0 +1,22 @@
+import { SColor } from "@persagy-web/draw/lib";
+
+export class ItemColor {
+  /** 墙颜色 */
+  static wallColor = new SColor("#2b2b2b");
+  /** 柱子颜色 */
+  static columnColor = SColor.Black;
+  /** 虚拟墙颜色 */
+  // static virtualWallColor = SColor.Black;
+  /** 空间颜色 */
+  static spaceColor = new SColor("#f1fffd80");
+  /** 门颜色 */
+  // static doorColor = new SColor("#f5b36f");
+  /** 窗户颜色 */
+  // static windowColor = new SColor("#fcd6ff");
+  /** 空间边框颜色 */
+  static spaceBorderColor = new SColor("#2b2b2b");
+  /** 空间,业务空间选中颜色 */
+  static selectColor = new SColor("#1abc9c");
+  /** 业务空间不可选中颜色 */
+  static zoneUnselectColor = new SColor("#cecece");
+}

+ 170 - 0
src/views/maintain/space/components/canvasFun.vue

@@ -0,0 +1,170 @@
+<template>
+    <el-row id="canvas-actions-box" :class="{ 'isEdit': config.isEdit }">
+        <div v-if="config.isEdit&&config.groupSelect" :class="{ 'active': active === 'groupSelect' }" @click="groupSelect">
+            <i class="iconfont icon-shuxingxuanze"></i>
+        </div>
+        <div @click="fitToWindow">
+            <i class="iconfont icon-maximize"></i>
+        </div>
+        <div v-if="!config.isEdit">
+            <el-dropdown size="mini" placement="top-start" @command="handleCommand">
+                <i class="el-icon-download" style="font-size:20px;color:#fff;"></i>
+                <el-dropdown-menu slot='dropdown'>
+                    <el-dropdown-item command="savePng">保存为png</el-dropdown-item>
+                    <el-dropdown-item command="saveSvg">保存为svg</el-dropdown-item>
+                    <el-dropdown-item command="saveJson">保存为Json</el-dropdown-item>
+                </el-dropdown-menu>
+            </el-dropdown>
+        </div>
+        <div v-if="config.isEdit&&config.divide" :class="{ 'active': active === 'divide' }" @click="divide">
+            <el-dropdown size="mini" placement="top-start" @command="handleDivideCommand" :hide-on-click="false">
+                <i class="iconfont icon-edit1"></i>
+                <!-- <el-dropdown-menu slot='dropdown'>
+                    <el-dropdown-item command="savePng">
+                        吸附 <el-switch v-model="isSwitch"></el-switch>
+                    </el-dropdown-item>
+                </el-dropdown-menu> -->
+            </el-dropdown>
+        </div>
+        <div v-if="config.isEdit&&config.divide" @click="clearDivide">
+            <i class="iconfont icon-Erase"></i>
+        </div>
+        <div @click="reduce">
+            <i class="iconfont icon-narrow"></i>
+        </div>
+        <div class="line">
+            <el-slider tooltip-class="tooltip-class" :min="min" v-model="sliderVal" :show-tooltip="false" @input="scale" :max="max"></el-slider>
+        </div>
+        <div @click="plus">
+            <i class="iconfont icon-zoom"></i>
+        </div>
+    </el-row>
+</template>
+<script lang="ts">
+interface configFace {
+    isEdit: boolean;
+    divide: boolean;
+    groupSelect: boolean;
+}
+import { Vue, Component, Prop } from "vue-property-decorator";
+@Component
+export default class canvasFun extends Vue {
+    @Prop({
+        type: Object,
+        default: {
+            isEdit: false,
+            divide: true,
+            groupSelect: false,
+        },
+    })
+    config!: configFace;
+
+    sliderVal = 1; // 滑块值
+    active = "";
+    min = 1;
+    max = 1000;
+    everyScale = 1; // 每份的放大倍数
+    isSwitch = false; // 是否开启吸附
+
+    groupSelect() {
+        this.active = "groupSelect";
+        this.$emit("groupSelect");
+    }
+    // 适配大小
+    fitToWindow() {
+        this.$emit("fit");
+    }
+    // 下拉菜单
+    handleCommand(command: string) {
+        this.$emit(command);
+    }
+    // 是否开启吸附
+    handleDivideCommand() {
+        this.$emit("changeAbsorb", this.isSwitch);
+    }
+    // 切割编辑
+    divide() {
+        this.active = "divide";
+        this.$emit("divide");
+    }
+    // 清除编辑
+    clearDivide() {
+        this.active = "";
+        this.$emit("clearDivide");
+    }
+    // 撤销
+    undo() {
+        this.$emit("undo");
+    }
+    // 反撤销
+    redo() {
+        this.$emit("redo");
+    }
+    // 减
+    reduce() {
+        this.sliderVal /= 1.1;
+        if (this.sliderVal < this.min) {
+            this.sliderVal = this.min;
+        }
+        this.scale(this.sliderVal);
+    }
+    // 缩放
+    scale(val: number) {
+        // 换算
+        let scale = (val * this.everyScale) / 10;
+        this.$emit("scale", scale);
+    }
+    // 加
+    plus() {
+        this.sliderVal *= 1.1;
+        if (this.sliderVal > this.max) {
+            this.sliderVal = this.max;
+        }
+        this.scale(this.sliderVal);
+    }
+}
+</script>
+<style lang="scss" scoped>
+#canvas-actions-box {
+    & > div {
+        float: left;
+        font-size: 20px;
+        padding: 0 10px;
+        color: #fff;
+        background-color: #6da60f;
+        line-height: 2;
+        i {
+            cursor: pointer;
+            color: #fff;
+        }
+    }
+    & > div:active {
+        background-color: #4b7902;
+    }
+    & > div.active {
+        background-color: #4b7902;
+    }
+    &.isEdit > div {
+        background-color: #02a7f0;
+    }
+    &.isEdit > div:active {
+        background-color: #027db4;
+    }
+    &.isEdit > div.active {
+        background-color: #027db4;
+    }
+    & > div.line {
+        width: 200px;
+        height: 40px;
+        padding: 0;
+        ::v-deep .el-slider__runway {
+            margin: 18px 0;
+            height: 4px;
+            .el-slider__bar {
+                background-color: #fff;
+                height: 4px;
+            }
+        }
+    }
+}
+</style>

+ 328 - 6
src/views/maintain/space/components/spaceGraph.vue

@@ -1,20 +1,342 @@
 <template>
     <div id="graphContainer" ref="graphContainer">
+        <el-row class="buttons-box">
+            <div>
+                <el-autocomplete popper-class="my-autocomplete" v-model="search" :fetch-suggestions="querySearch" placeholder="输入平面图中已有的业务空间名称进行查找"
+                    width="180px" @select="handleSelect">
+                    <i class="el-icon-search el-input__icon" slot="suffix"></i>
+                    <template slot-scope="{ item }">
+                        <div class="name" style="position: relative;padding-right:40px;overflow: hidden;text-overflow:ellipsis;white-space: nowrap;"
+                            :title="item.data.RoomLocalName">
+                            {{ item.data.RoomLocalName }}
+                            <span class="addr" style="position: absolute;right:0;color:#409EFF;">定位</span>
+                        </div>
+                    </template>
+                </el-autocomplete>
+            </div>
+            <div class="button-group">
+                <!-- 默认操作模式 -->
+                <div v-show="type==1">
+                    <el-dropdown split-button type="primary" @click="editGraphy" @command="handleCommand">
+                        创建业务空间
+                        <el-dropdown-menu slot="dropdown">
+                            <el-dropdown-item command="groupCreateBSpace">批量创建业务空间</el-dropdown-item>
+                        </el-dropdown-menu>
+                    </el-dropdown>
+                    <!-- 点击已经关联的业务空间 -->
+                    <el-button plain @click="refactorBSP" :disabled="zoneDisable" style="margin-left:10px;">重新划分业务空间</el-button>
+                    <el-button plain :disabled="zoneDisable" style="margin-left:10px;">维护空间信息</el-button>
+                    <el-button plain @click="cancelGraphy" v-show="!zoneDisable">取 消</el-button>
+                </div>
+                <!-- 点击未关联的业务空间 -->
+                <div v-show="type==3">
+                    <el-button plain @click="createNewZone">创建单个全新的业务空间</el-button>
+                    <el-button plain @click="cancelGraphy">取 消</el-button>
+                </div>
+                <!-- 重新划分业务空间 -->
+                <div v-show="type==4">
+                    <el-button plain @click="cancelGraphy">取 消</el-button>
+                    <el-button type="primary" @click="saveRefactorBSP">保存</el-button>
+                </div>
+                <!-- 批量创建所选业务空间 -->
+                <div v-show="type==5">
+                    <el-button type="primary" @click="groupCreateZone">批量创建所选业务空间</el-button>
+                    <el-button plain @click="cancelGraphy">取 消</el-button>
+                </div>
+            </div>
+        </el-row>
+
         <canvas id="spaceCanvas" :width="canvasWidth" :height="canvasHeight" tabindex="0"></canvas>
+
+        <el-row class="canvas-actions-box">
+            <canvas-fun :config="config" @fit="fit" @savePng="savePng" @saveSvg="saveSvg" @divide="divide" @clearDivide="clearDivide" ref="canvasFun"
+                @saveJson="saveJson" @changeAbsorb="changeAbsorb" @scale="scale" @groupSelect="groupSelect" />
+        </el-row>
     </div>
 </template>
 <script lang="ts">
-import Vue from "vue";
-export default class extends Vue {
+import { Vue, Component, Watch } from "vue-property-decorator";
+import { FloorView } from "@/utils/graph/FloorView";
+import { FloorScene } from "@/utils/graph/FloorScene";
+import canvasFun from "./canvasFun";
+
+@Component({
+    components: { canvasFun },
+})
+export default class spaceGraph extends Vue {
     canvasWidth = 800;
     canvasHeight = 800;
-    mounted() {
-        console.log(this.$refs.graphContainer);
+    view: FloorView | null = null;
+    scene: FloorScene | null = null;
+    floorMap =
+        "/image-service/common/file_get?systemId=revit&key=base/76233a3214dd11eb94d469663ce1649a.jsonz";
+    canvasLoading = false;
+    type = 1;
+    config = {
+        isEdit: false,
+        divide: true,
+        groupSelect: false,
+    };
+    search = ""; //搜索
+    zoneDisable = true;
+    curZoneItem = {};
+    zoneList = [];
+    buildFloor: string[] = [];
+    // 挂载
+    mounted(): void {
+        this.canvasWidth = this.$refs.graphContainer.offsetWidth;
+        this.canvasHeight = this.$refs.graphContainer.offsetHeight;
+        this.getGraph();
+    }
+    // 初始化
+    init(initType: number): void {
+        this.type = 1;
+        if (this.scene) {
+            // this.scene.clearSpaceSelection();
+            // this.scene.clearZoneSelection();
+            // this.scene.clearLikeSpaces();
+            // this.zoneDisable = true;
+            // this.scene.isZoneSelectable = true;
+            // this.scene.isSpaceSelectable = false;
+        }
+        if (
+            this.buildFloor.indexOf("all") > -1 ||
+            this.buildFloor.indexOf("noKnow") > -1
+        ) {
+            return;
+        }
+
+        if (initType == 1) {
+            // 底图
+            // this.getGraphy();
+        } else {
+            // 业务空间
+            // this.getBusinessSpace();
+        }
+        this.config = {
+            isEdit: false,
+            divide: true,
+            groupSelect: true,
+        };
+        // 获取当前楼层的元空间
+        // this.getFloorISpace();
+        // 查询未关联业务空间的元空间
+        // this.getISPSPUnrelaBSP();
+        // 查询未关联平面图的业务空间
+        // this.getBSPunrelaISP();
+    }
+    // 获取底图
+    getGraph(): void {
+        const scene = new FloorScene();
+        this.canvasLoading = true;
+        this.clearGraphy();
+        this.scene = null;
+        scene.loadUrl(this.floorMap).then((res) => {
+            if (this.view) {
+                this.view.scene = scene;
+            }
+            this.scene = scene;
+            this.getGraphSuc(res);
+        });
+    }
+    // 获取底图成功
+    getGraphSuc(res: any): void {
+        this.canvasLoading = false;
+        if (res == "error") {
+            this.floorMap = "";
+            this.$message.warning("数据解析异常");
+            return;
+        }
+        this.view?.fitSceneToView();
+        this.view!.minScale = this.view!.scale;
+        if (this.$refs.canvasFun) {
+            // @ts-ignore
+            this.$refs.canvasFun.everyScale = this.view.scale;
+        }
+    }
+    // 清除canvas
+    clearGraphy() {
+        if (this.view) {
+            this.view.scene = null;
+            return;
+        }
+        this.view = new FloorView("spaceCanvas");
+    }
+
+    // 搜索
+    querySearch(queryString: string, cb: Function) {
+        let restaurants = this.zoneList;
+        let results = queryString
+            ? restaurants.filter(this.createFilter(queryString))
+            : restaurants;
+        // 调用 callback 返回建议列表的数据
+        cb(results);
+    }
+
+    // 过滤器
+    createFilter(queryString: any) {
+        return (restaurant: any) => {
+            return restaurant.data.RoomLocalName.indexOf(queryString) > -1;
+        };
+    }
+
+    // 查询选中,定位
+    handleSelect(zone) {
+        //   // 清空选中
+        //   this.scene.clearSpaceSelection();
+        //   this.scene.clearZoneSelection();
+        //   // 选中当前
+        //   zone.selected = true;
+        //   this.curZoneItem = zone;
+        //   this.zoneDisable = false;
+        //   this.view.fitSelectedToView();
+    }
+
+    // 点击创建业务空间
+    editGraphy() {
+        this.type = 3;
+        this.config.isEdit = true;
+        this.config.groupSelect = false;
+        this.config.divide = true;
+        this.scene!.isSpaceSelectable = true;
+        this.scene!.isZoneSelectable = false;
+        this.view?.update();
+    }
+    // 创建新的业务空间
+    createNewZone() {
+        //   let arr = this.scene.getSelectedSpaces();
+        //   if (arr.length) {
+        //     let tempArr = [];
+        //     arr.map(t => {
+        //       tempArr.push(this.BIMIDToSIName[t.data.SourceId]);
+        //     })
+        //     this.$refs.createBSP.showDialog(tempArr.toString());
+        //   } else {
+        //     this.$message.warning('请至少选择一个空间');
+        //   }
+    }
+
+    handleCommand() {}
+
+    refactorBSP() {}
 
-        this.canvasWidth = this.$refs.graphContainer.offsetWidth - 20;
-        this.canvasHeight = this.$refs.graphContainer.offsetHeight - 20;
+    editeSpaceDetail() {}
+
+    // 取消(所有取消公用)
+    cancelGraphy() {
+        this.init(2);
+    }
+
+    saveRefactorBSP() {}
+
+    groupCreateZone() {}
+
+    // 适配底图到窗口
+    fit() {
+        this.view?.fitSceneToView();
+    }
+    // 保存为png
+    savePng() {
+        this.view?.saveImage(`1.png`, "png");
+    }
+    // 保存为svg
+    saveSvg() {
+        this.view?.saveSceneSvg(`1.svg`, 6400, 4800);
+    }
+    // 保存json
+    saveJson() {
+        this.view?.saveFloorJson(`1.json`);
+    }
+    // 切割划分
+    divide() {
+        this.scene.isCutting = true;
+    }
+    // 清除切割划分
+    clearDivide() {
+        // @ts-ignore
+        this.view!.scene.clearCut();
+    }
+    // 缩放
+    scale(val: number) {
+        if (!this.view) {
+            return;
+        }
+        let scale = this.view.scale;
+        this.view.scaleByPoint(
+            val / scale,
+            this.canvasWidth / 2,
+            this.canvasHeight / 2
+        );
+    }
+
+    groupSelect() {
+        console.log("groupSelect");
+    }
+
+    changeAbsorb() {
+        console.log("changeAbsorb");
+    }
+
+    @Watch("view.scale", { immediate: true, deep: true })
+    onScaleChange(n: number) {
+        if (this.$refs.canvasFun) {
+            // @ts-ignore
+            let s = (n * 10) / this.view.minScale;
+            // @ts-ignore
+            this.$refs.canvasFun.sliderVal = s > 1000 ? 1000 : s;
+        }
     }
 }
 </script>
 <style lang="scss">
+#graphContainer {
+    position: relative;
+    width: 100%;
+    height: 100%;
+    .canvas-actions-box {
+        position: absolute;
+        bottom: 60px;
+        left: 50%;
+        transform: translateX(-50%);
+        z-index: 99;
+    }
+    .buttons-box {
+        position: absolute;
+        top: 16px;
+        left: 0;
+        padding: 0 16px;
+        width: 100%;
+        z-index: 999;
+        & > div {
+            float: left;
+        }
+        .el-autocomplete {
+            display: inline-block;
+            width: 320px;
+            margin-right: 10px;
+        }
+        .button-group button,
+        .button-group .el-dropdown {
+            display: block;
+            float: left;
+        }
+        .my-autocomplete {
+            li {
+                line-height: normal;
+                padding: 7px;
+                .name {
+                    text-overflow: ellipsis;
+                    overflow: hidden;
+                }
+                .addr {
+                    font-size: 12px;
+                    color: #b4b4b4;
+                }
+                .highlighted .addr {
+                    color: #ddd;
+                }
+            }
+        }
+    }
+}
 </style>

+ 14 - 19
src/views/maintain/space/index.vue

@@ -1,6 +1,6 @@
 <template>
     <div class="space-index">
-        <statistics :statistics-msg="statisticsMsg"/>
+        <statistics :statistics-msg="statisticsMsg" />
         <el-divider class="small-divider"></el-divider>
         <div class="tabs">
             <el-tabs v-model="activeName" type="card">
@@ -9,18 +9,16 @@
             </el-tabs>
             <div class="tab-content">
                 <div class="search">
-                    <el-cascader v-model="value1" :options="options" @change="handleChange" placeholder="请选择楼层"
-                                 class="item"></el-cascader>
-                    <el-cascader v-model="value2" :options="options" @change="handleChange" placeholder="请选择分区"
-                                 class="item"
-                                 v-if="activeName==='picture'"></el-cascader>
-                    <admSearch @SearchValue="searchValue" class="item" v-if="activeName==='table'"/>
+                    <el-cascader v-model="value1" :options="options" @change="handleChange" placeholder="请选择楼层" class="item"></el-cascader>
+                    <el-cascader v-model="value2" :options="options" @change="handleChange" placeholder="请选择分区" class="item"
+                        v-if="activeName==='picture'"></el-cascader>
+                    <admSearch @SearchValue="searchValue" class="item" v-if="activeName==='table'" />
                 </div>
                 <div v-if="activeName==='table'">
-                    <admMultiTable/>
+                    <admMultiTable />
                 </div>
                 <div class="graph" v-if="activeName==='picture'">
-                    <spaceGraph/>
+                    <spaceGraph />
                 </div>
             </div>
         </div>
@@ -36,7 +34,8 @@ import spaceGraph from "./components/spaceGraph";
     name: "space-index",
     components: { Statistics, AdmSearch, AdmMultiTable, spaceGraph },
 })
-export default class extends Vue {
+
+export default class spaceIndex extends Vue {
     private statisticsMsg = {
         title: "全部空间",
         total: 93640,
@@ -64,12 +63,10 @@ export default class extends Vue {
             ],
         },
     ];
-
     // 建筑楼层更改
-    handleChange(v) {
+    handleChange(v: string) {
         console.log(v);
     }
-
     // 搜索
     searchValue(val: string) {
         console.log(val);
@@ -82,31 +79,29 @@ export default class extends Vue {
     background: #fff;
     padding: 12px;
     height: 100%;
-
     .small-divider {
         margin: 12px 0;
     }
-
     .tabs {
         position: relative;
         height: calc(100% - 92px);
-
         ::v-deep .el-tabs__header {
             margin: 0;
         }
-
         .tab-content {
             height: calc(100% - 41px);
             border: 1px solid #e1e7ea;
             border-top: none;
-
             .search {
                 padding: 16px;
-
+                border-bottom: 1px solid #e1e7ea;
                 & > .item + .item {
                     margin-left: 16px;
                 }
             }
+            .graph{
+                height: calc(100% - 64px)
+            }
         }
     }
 }

+ 2 - 2
tsconfig.json

@@ -40,9 +40,9 @@
         "src/**/*.vue",
         "tests/**/*.ts",
         "tests/**/*.tsx"
-    ],
+, "src/utils/directive.js"    ],
     "exclude": [
         "node_modules",
         "src/@types/**/*"
     ]
-}
+}

+ 5 - 1
vue.config.js

@@ -29,12 +29,16 @@ module.exports = {
                 changeOrigin: true
             },
             "/modelapi": {
-                target: "http://39.102.40.239:8080/",
+                target: "http://39.102.40.239:8080",
                 changeOrigin: true,
                 pathRewrite: {
                     "^/modelapi": "/revit-algorithm"
                 }
             },
+            "/message-center": {
+                target: "http://39.102.40.239:8080",
+                changeOrigin: true
+            },
             "/image-service": {
                 target: "http://39.97.179.199:8891",
                 changeOrigin: true