yunxing 4 år sedan
förälder
incheckning
ef236ee57b

+ 75 - 69
src/components/homeView/deleteDialog.vue

@@ -1,84 +1,90 @@
 <template>
-  <el-dialog title="删除" :visible.sync="dialogVisible" width="480px" :close-on-click-modal="false" custom-class="deleteDialog">
-    <p>确认删除吗?</p>
-    <span slot="footer" class="dialog-footer">
-      <el-button @click="dialogVisible = false">取 消</el-button>
-      <el-button type="primary" @click="confirm">确 定</el-button>
-    </span>
-  </el-dialog>
+    <el-dialog title="删除" :visible.sync="dialogVisible" width="480px" :close-on-click-modal="false" custom-class="deleteDialog">
+        <p>确认删除吗?</p>
+        <span slot="footer" class="dialog-footer">
+            <el-button @click="dialogVisible = false">取 消</el-button>
+            <el-button type="primary" @click="confirm">确 定</el-button>
+        </span>
+    </el-dialog>
 </template>
 
 <script>
-import { deleteDraftsGraph, deletePubGraph } from "@/api/home"
+import { deleteDraftsGraph, deletePubGraph } from "@/api/home";
 export default {
-  props: {
-    isPub: {
-      type: Number,
-      default: 0
-    }
-  },
-  data() {
-    return {
-      dialogVisible: false,
-      data: []
-    };
-  },
-  methods: {
-    showDialog(data) {
-      this.dialogVisible = true;
-      this.data = data;
+    props: {
+        isPub: {
+            type: Number,
+            default: 0,
+        },
     },
-    // 确认修改
-    confirm() {
-      if (!this.data.length) {
-        return
-      }
-      const pa = this.data.map(t => {
+    data() {
         return {
-          id: t.id,
-          graphId: t.graphId
-        }
-      })
-      if (this.isPub) { // 已发布
-        deletePubGraph(pa).then(res => {
-          this.updateCall(res)
-        })
-      } else { // 未发布
-        deleteDraftsGraph(pa).then(res => {
-          this.updateCall(res)
-        })
-      }
+            dialogVisible: false,
+            data: [],
+        };
+    },
+    methods: {
+        showDialog(data) {
+            this.dialogVisible = true;
+            this.data = data;
+        },
+        // 确认修改
+        confirm() {
+            if (!this.data.length) {
+                return;
+            }
+            const pa = this.data.map((t) => {
+                return {
+                    id: t.id,
+                    graphId: t.graphId,
+                };
+            });
+            this.updateCall({
+                result: "success",
+            });
+            return;
+            if (this.isPub) {
+                // 已发布
+                deletePubGraph(pa).then((res) => {
+                    this.updateCall(res);
+                });
+            } else {
+                // 未发布
+                deleteDraftsGraph(pa).then((res) => {
+                    this.updateCall(res);
+                });
+            }
+        },
+        // 更新成功回调
+        updateCall(res) {
+            if (res.result == "success") {
+                this.dialogVisible = false;
+                this.$emit("deleteSuc");
+                this.$message.success("删除成功");
+            } else {
+                this.$message(res.message);
+            }
+        },
     },
-    // 更新成功回调
-    updateCall(res) {
-      if (res.result == "success") {
-        this.dialogVisible = false;
-        this.$emit("deleteSuc");
-        this.$message.success('删除成功');
-      } else {
-        this.$message(res.message)
-      }
-    }
-  }
 };
 </script>
 <style lang="less">
 .deleteDialog {
-  /deep/ .el-dialog__header {
-    border-bottom: 1px solid #f0f1f2ff;
-  }
-  /deep/ .el-dialog__body {
-    padding: 16px 60px;
-  }
-  .el-dialog__footer {
-    padding: 14px 20px 20px;
-    .el-button {
-      padding: 0;
-      width: 80px;
-      height: 32px;
-      text-align: center;
-      line-height: 1;
+    /deep/ .el-dialog__header {
+        border-bottom: 1px solid #f0f1f2ff;
+    }
+    /deep/ .el-dialog__body {
+        padding: 16px 60px;
+    }
+    .el-dialog__footer {
+        padding: 14px 20px 20px;
+        .el-button {
+            padding: 0;
+            width: 80px;
+            height: 32px;
+            text-align: center;
+            line-height: 1;
+        }
     }
-  }
 }
 </style>

+ 124 - 93
src/components/homeView/move.vue

@@ -1,108 +1,139 @@
 <template>
-  <el-dialog title="移动到" :visible.sync="dialogVisible" width="480px" :close-on-click-modal="false" custom-class="moveDialog">
-    <div>
-      <el-cascader v-model="value" :options="treeData" :props="defaultProps" size="small" style="width: 100%"></el-cascader>
-    </div>
-    <span slot="footer" class="dialog-footer">
-      <el-button @click="dialogVisible = false">取 消</el-button>
-      <el-button type="primary" @click="confirm">确 定</el-button>
-    </span>
-  </el-dialog>
+    <el-dialog title="移动到" :visible.sync="dialogVisible" width="480px" :close-on-click-modal="false" custom-class="moveDialog">
+        <div>
+            <el-select v-model="value" size="small" style="width: 100%">
+                <el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value"> </el-option>
+            </el-select>
+        </div>
+        <span slot="footer" class="dialog-footer">
+            <el-button @click="cancel">取 消</el-button>
+            <el-button type="primary" @click="confirm">确 定</el-button>
+        </span>
+    </el-dialog>
 </template>
 
 <script>
-import { queryCategoryGraph, updateDraftsGraph, updatePubGraph } from "@/api/home"
+import { queryCategoryGraph, updateDraftsGraph, updatePubGraph } from "@/api/home";
 export default {
-  props: {
-    isPub: {
-      type: Number,
-      default: 0
-    }
-  },
-  data() {
-    return {
-      defaultProps: {
-        children: 'categoryList',
-        label: 'name',
-        value: 'code'
-      },
-      dialogVisible: false,
-      value: [],
-      treeData: [],
-      data: []
-    };
-  },
-  mounted() {
-    this.init()
-  },
-  methods: {
-    init() {
-      queryCategoryGraph({ switch: true }).then(res => {
-        this.treeData = res.content;
-      })
-    },
-    showDialog(data) {
-      this.dialogVisible = true;
-      this.data = data;
+    props: {
+        isPub: {
+            type: Number,
+            default: 0,
+        },
     },
-    // 确认修改
-    confirm() {
-      if (!this.value.length || !this.data.length) {
-        return
-      }
-      const categoryId = this.value[this.value.length - 1]
-      const pa = {
-        content: [],
-        projection: ['categoryId']
-      }
-      pa.content = this.data.map(t => {
+    data() {
         return {
-          id: t.id,
-          graphId: t.graphId,
-          categoryId: categoryId
-        }
-      })
-      if (this.isPub) { // 已发布
-        updatePubGraph(pa).then(res => {
-          this.updateCall(res)
-        })
-      } else { // 未发布
-        updateDraftsGraph(pa).then(res => {
-          this.updateCall(res)
-        })
-      }
+            dialogVisible: false,
+            value: [],
+            data: [],
+            options: [
+                {
+                    value: "选项1",
+                    label: "能源系统",
+                },
+                {
+                    value: "选项2",
+                    label: "排水系统",
+                },
+                {
+                    value: "选项3",
+                    label: "消防水系统",
+                },
+                {
+                    value: "选项4",
+                    label: "公共照明系统",
+                },
+                {
+                    value: "选项5",
+                    label: "暖通空调系统",
+                },
+            ],
+        };
+    },
+    mounted() {
+        this.init();
+    },
+    methods: {
+        init() {
+            // TODO: 查询文件夹
+            queryCategoryGraph({ switch: true }).then((res) => {
+                this.options = res.content;
+            });
+        },
+        /**
+         * 展示弹窗
+         */
+        showDialog(data) {
+            this.dialogVisible = true;
+            this.data = data;
+        },
+        /**
+         * 点击取消按钮,关闭弹窗,恢复下拉菜单初始值
+         */
+        cancel() {
+            this.dialogVisible = false;
+            this.value = "";
+        },
+        // 确认修改
+        confirm() {
+            if (!this.value.length || !this.data.length) {
+                return;
+            }
+            const categoryId = this.value[this.value.length - 1];
+            const pa = {
+                content: [],
+                projection: ["categoryId"],
+            };
+            pa.content = this.data.map((t) => {
+                return {
+                    id: t.id,
+                    graphId: t.graphId,
+                    categoryId: categoryId,
+                };
+            });
+            if (this.isPub) {
+                // 已发布
+                updatePubGraph(pa).then((res) => {
+                    this.updateCall(res);
+                });
+            } else {
+                // 未发布
+                updateDraftsGraph(pa).then((res) => {
+                    this.updateCall(res);
+                });
+            }
+        },
+        // 更新成功回调
+        updateCall(res) {
+            this.value = [];
+            if (res.result == "success") {
+                this.dialogVisible = false;
+                this.$message.success("移动成功");
+                this.$emit("moveSuc");
+            } else {
+                this.$message(res.message);
+            }
+        },
     },
-    // 更新成功回调
-    updateCall(res) {
-      this.value = [];
-      if (res.result == "success") {
-        this.dialogVisible = false;
-        this.$message.success('移动成功');
-        this.$emit("moveSuc")
-      } else {
-        this.$message(res.message)
-      }
-    }
-  }
 };
 </script>
 <style lang="less">
 .moveDialog {
-  /deep/ .el-dialog__header {
-    border-bottom: 1px solid #f0f1f2ff;
-  }
-  /deep/ .el-dialog__body {
-    padding: 16px 60px;
-  }
-  .el-dialog__footer {
-    padding: 14px 20px 20px;
-    .el-button {
-      padding: 0;
-      width: 80px;
-      height: 32px;
-      text-align: center;
-      line-height: 1;
+    /deep/ .el-dialog__header {
+        border-bottom: 1px solid #f0f1f2ff;
+    }
+    /deep/ .el-dialog__body {
+        padding: 16px 60px;
+    }
+    .el-dialog__footer {
+        padding: 14px 20px 20px;
+        .el-button {
+            padding: 0;
+            width: 80px;
+            height: 32px;
+            text-align: center;
+            line-height: 1;
+        }
     }
-  }
 }
 </style>

+ 82 - 77
src/components/homeView/rename.vue

@@ -1,91 +1,96 @@
 <template>
-  <el-dialog title="重命名" :visible.sync="dialogVisible" width="480px" :close-on-click-modal="false" custom-class="renameDialog">
-    <div>
-      <el-input v-model="input" placeholder="请输入名称" size="small"></el-input>
-    </div>
-    <span slot="footer" class="dialog-footer">
-      <el-button @click="dialogVisible = false">取 消</el-button>
-      <el-button type="primary" @click="confirm">确 定</el-button>
-    </span>
-  </el-dialog>
+    <el-dialog title="重命名" :visible.sync="dialogVisible" width="480px" :close-on-click-modal="false" custom-class="renameDialog">
+        <div>
+            <el-input v-model="input" placeholder="请输入名称" size="small"></el-input>
+        </div>
+        <span slot="footer" class="dialog-footer">
+            <el-button @click="dialogVisible = false">取 消</el-button>
+            <el-button type="primary" @click="confirm">确 定</el-button>
+        </span>
+    </el-dialog>
 </template>
 
 <script>
-import { updateDraftsGraph, updatePubGraph } from "@/api/home"
+import { updateDraftsGraph, updatePubGraph } from "@/api/home";
 export default {
-  props: {
-    isPub: {
-      type: Number,
-      default: 0
-    }
-  },
-  data() {
-    return {
-      dialogVisible: false,
-      input: '',
-      data: {}
-    };
-  },
-  methods: {
-    showDialog(data) {
-      this.dialogVisible = true;
-      this.input = data.name;
-      this.data = data;
+    props: {
+        isPub: {
+            type: Number,
+            default: 0,
+        },
     },
-    // 确认修改
-    confirm() {
-      const newName = this.input.trim()
-      if (!newName) {
-        return
-      }
-      const pa = {
-        content: [{
-          id: this.data.id,
-          graphId: this.data.graphId,
-          name: newName
-        }],
-        projection: ['name']
-      }
-      if (this.isPub) { // 已发布
-        updatePubGraph(pa).then(res => {
-          this.updateCall(res)
-        })
-      } else { // 未发布
-        updateDraftsGraph(pa).then(res => {
-          this.updateCall(res)
-        })
-      }
+    data() {
+        return {
+            dialogVisible: false,
+            input: "",
+            data: {},
+        };
+    },
+    methods: {
+        showDialog(data) {
+            console.table(data);
+            this.dialogVisible = true;
+            this.input = data.name;
+            this.data = data;
+        },
+        // 确认修改
+        confirm() {
+            const newName = this.input.trim();
+            if (!newName) {
+                return;
+            }
+            const pa = {
+                content: [
+                    {
+                        id: this.data.id,
+                        graphId: this.data.graphId,
+                        name: newName,
+                    },
+                ],
+                projection: ["name"],
+            };
+            if (this.isPub) {
+                // 已发布
+                updatePubGraph(pa).then((res) => {
+                    this.updateCall(res);
+                });
+            } else {
+                // 未发布
+                updateDraftsGraph(pa).then((res) => {
+                    this.updateCall(res);
+                });
+            }
+        },
+        // 更新成功回调
+        updateCall(res) {
+            if (res.result == "success") {
+                this.dialogVisible = false;
+                this.$emit("updateSuc");
+                this.$message.success("更新成功");
+            } else {
+                this.$message(res.message);
+            }
+        },
     },
-    // 更新成功回调
-    updateCall(res) {
-      if (res.result == "success") {
-        this.dialogVisible = false;
-        this.$emit("updateSuc")
-        this.$message.success('更新成功');
-      } else {
-        this.$message(res.message)
-      }
-    }
-  }
 };
 </script>
 <style lang="less">
 .renameDialog {
-  /deep/ .el-dialog__header {
-    border-bottom: 1px solid #f0f1f2ff;
-  }
-  /deep/ .el-dialog__body {
-    padding: 16px 60px;
-  }
-  .el-dialog__footer {
-    padding: 14px 20px 20px;
-    .el-button {
-      padding: 0;
-      width: 80px;
-      height: 32px;
-      text-align: center;
-      line-height: 1;
+    /deep/ .el-dialog__header {
+        border-bottom: 1px solid #f0f1f2ff;
+    }
+    /deep/ .el-dialog__body {
+        padding: 16px 60px;
+    }
+    .el-dialog__footer {
+        padding: 14px 20px 20px;
+        .el-button {
+            padding: 0;
+            width: 80px;
+            height: 32px;
+            text-align: center;
+            line-height: 1;
+        }
     }
-  }
 }
 </style>

+ 144 - 133
src/components/homeView/tagDialog.vue

@@ -1,153 +1,164 @@
 <template>
-  <el-dialog title="修改标签" :visible.sync="dialogVisible" width="480px" :close-on-click-modal="false" custom-class="tagDialog">
-    <div>
-      <el-tag :key="tag" v-for="tag in dynamicTags" closable :disable-transitions="false" @close="handleClose(tag)">
-        {{tag}}
-      </el-tag>
-      <el-input class="input-new-tag" v-if="inputVisible" v-model="inputValue" ref="saveTagInput" size="small"
-        @keyup.enter.native="handleInputConfirm" @blur="handleInputConfirm" :maxlength="10">
-      </el-input>
-      <el-button v-else class="button-new-tag" size="small" @click="showInput">+ 添加</el-button>
-    </div>
-    <span slot="footer" class="dialog-footer">
-      <el-button @click="dialogVisible = false">取 消</el-button>
-      <el-button type="primary" @click="confirm">确 定</el-button>
-    </span>
-  </el-dialog>
+    <el-dialog title="修改标签" :visible.sync="dialogVisible" width="480px" :close-on-click-modal="false" custom-class="tagDialog">
+        <div>
+            <el-tag :key="tag" v-for="tag in dynamicTags" closable :disable-transitions="false" @close="handleClose(tag)">
+                {{ tag }}
+            </el-tag>
+            <el-input
+                class="input-new-tag"
+                v-if="inputVisible"
+                v-model="inputValue"
+                ref="saveTagInput"
+                size="small"
+                @keyup.enter.native="handleInputConfirm"
+                @blur="handleInputConfirm"
+                :maxlength="10"
+            >
+            </el-input>
+            <el-button v-else class="button-new-tag" size="small" @click="showInput">+ 添加</el-button>
+        </div>
+        <span slot="footer" class="dialog-footer">
+            <el-button @click="dialogVisible = false">取 消</el-button>
+            <el-button type="primary" @click="confirm">确 定</el-button>
+        </span>
+    </el-dialog>
 </template>
 
 <script>
-import { updatePubGraph } from "@/api/home"
+import { updatePubGraph } from "@/api/home";
 export default {
-  props: {
-    isPub: {
-      type: Number,
-      default: 0
-    }
-  },
-  data() {
-    return {
-      dialogVisible: false,
-      dynamicTags: [],
-      inputVisible: false,
-      inputValue: '',
-      data: {}
-    };
-  },
-  methods: {
-    showDialog(data) {
-      this.dialogVisible = true;
-      this.dynamicTags = JSON.parse(JSON.stringify(data.label)) || [];
-      this.data = data;
+    props: {
+        isPub: {
+            type: Number,
+            default: 0,
+        },
     },
-    handleClose(tag) {
-      this.dynamicTags.splice(this.dynamicTags.indexOf(tag), 1);
+    data() {
+        return {
+            dialogVisible: false,
+            dynamicTags: [],
+            inputVisible: false,
+            inputValue: "",
+            data: {},
+        };
     },
+    methods: {
+        showDialog(data) {
+            this.dialogVisible = true;
+            this.dynamicTags = JSON.parse(JSON.stringify(data.label)) || [];
+            this.data = data;
+        },
+        handleClose(tag) {
+            this.dynamicTags.splice(this.dynamicTags.indexOf(tag), 1);
+        },
 
-    showInput() {
-      this.inputVisible = true;
-      this.$nextTick(_ => {
-        this.$refs.saveTagInput.$refs.input.focus();
-      });
-    },
+        showInput() {
+            this.inputVisible = true;
+            this.$nextTick((_) => {
+                this.$refs.saveTagInput.$refs.input.focus();
+            });
+        },
 
-    handleInputConfirm() {
-      const inputValue = this.inputValue;
-      if (inputValue) {
-        this.dynamicTags.push(inputValue);
-      }
-      this.inputVisible = false;
-      this.inputValue = '';
-    },
-    // 确认修改
-    confirm() {
-      const pa = {
-        content: [{
-          id: this.data.id,
-          graphId: this.data.graphId,
-          label: this.dynamicTags
-        }],
-        projection: ['label']
-      }
-      if (this.isPub) { // 已发布
-        updatePubGraph(pa).then(res => {
-          this.updateCall(res)
-        })
-      }
+        handleInputConfirm() {
+            const inputValue = this.inputValue;
+            if (inputValue) {
+                this.dynamicTags.push(inputValue);
+            }
+            this.inputVisible = false;
+            this.inputValue = "";
+        },
+        // 确认修改
+        confirm() {
+            const pa = {
+                content: [
+                    {
+                        id: this.data.id,
+                        graphId: this.data.graphId,
+                        label: this.dynamicTags,
+                    },
+                ],
+                projection: ["label"],
+            };
+            if (this.isPub) {
+                // 已发布
+                updatePubGraph(pa).then((res) => {
+                    this.updateCall(res);
+                });
+            }
+        },
+        // 更新成功回调
+        updateCall(res) {
+            if (res.result == "success") {
+                this.dialogVisible = false;
+                this.$emit("updateSuc");
+                this.$message.success("更新成功");
+            } else {
+                this.$message(res.message);
+            }
+        },
     },
-    // 更新成功回调
-    updateCall(res) {
-      if (res.result == "success") {
-        this.dialogVisible = false;
-        this.$emit("updateSuc")
-        this.$message.success('更新成功');
-      } else {
-        this.$message(res.message)
-      }
-    }
-  }
 };
 </script>
 <style lang="less" scoped>
 /deep/ .tagDialog {
-  /deep/ .el-dialog__header {
-    border-bottom: 1px solid #f0f1f2ff;
-  }
-  /deep/ .el-dialog__body {
-    max-height: 192px;
-    overflow: auto;
-    padding: 20px;
-  }
-  .el-dialog__footer {
-    padding: 14px 20px 20px;
-    .el-button {
-      padding: 0;
-      width: 80px;
-      height: 32px;
-      text-align: center;
-      line-height: 1;
+    /deep/ .el-dialog__header {
+        border-bottom: 1px solid #f0f1f2ff;
+    }
+    /deep/ .el-dialog__body {
+        max-height: 192px;
+        overflow: auto;
+        padding: 20px;
+    }
+    .el-dialog__footer {
+        padding: 14px 20px 20px;
+        .el-button {
+            padding: 0;
+            width: 80px;
+            height: 32px;
+            text-align: center;
+            line-height: 1;
+        }
     }
-  }
-  .el-tag {
-    background: #eff0f1;
-    border-radius: 2px;
-    color: #1f2429ff;
-    margin: 0 10px 10px 0;
-    padding: 5px 6px 5px 8px;
-    font-size: 14px;
-    height: 24px;
-    line-height: 1;
-    border: none;
-    &:hover {
-      border: none;
+    .el-tag {
+        background: #eff0f1;
+        border-radius: 2px;
+        color: #1f2429ff;
+        margin: 0 10px 10px 0;
+        padding: 5px 6px 5px 8px;
+        font-size: 14px;
+        height: 24px;
+        line-height: 1;
+        border: none;
+        &:hover {
+            border: none;
+        }
+        .el-icon-close {
+            color: #9ca2a9ff;
+            right: 0;
+            &:hover {
+                color: #fff;
+                background-color: #ccc;
+            }
+        }
     }
-    .el-icon-close {
-      color: #9ca2a9ff;
-      right: 0;
-      &:hover {
-        color: #fff;
-        background-color: #ccc;
-      }
+    .button-new-tag {
+        height: 24px;
+        line-height: 30px;
+        margin-bottom: 8px;
+        padding: 0 8px;
+        line-height: 1;
+        border-radius: 2px;
+        border: 1px dotted #0091ff;
+        color: #0091ff;
+        &:hover {
+            background: #fff;
+            color: #0091ff;
+            border: 1px dotted #0091ff;
+        }
     }
-  }
-  .button-new-tag {
-    height: 24px;
-    line-height: 30px;
-    margin-bottom: 8px;
-    padding: 0 8px;
-    line-height: 1;
-    border-radius: 2px;
-    border: 1px dotted #0091ff;
-    color: #0091ff;
-    &:hover {
-      background: #fff;
-      color: #0091ff;
-      border: 1px dotted #0091ff;
+    .input-new-tag {
+        width: 90px;
+        vertical-align: top;
     }
-  }
-  .input-new-tag {
-    width: 90px;
-    vertical-align: top;
-  }
 }
 </style>

+ 255 - 0
src/components/homeView/topoImageCard copy.vue

@@ -0,0 +1,255 @@
+<!--拓扑图缩略图卡片-->
+<template>
+    <el-card :class="{ 'box-card': true, active: data.checked }" shadow="hover" :body-style="{ padding: '0px' }">
+        <div class="image" v-if="!data.pic" style="line-height: 120px; text-align: center">
+            <img :src="require('@/assets/images/noImg.png')" style="height: 60px" />
+        </div>
+        <img class="image" v-else :src="`/image-service/common/image_get?systemId=dataPlatform&key=${data.pic}`" />
+        <div class="shadow image" v-if="!isRecycle" @click.stop="toEdit">
+            <el-checkbox v-model="data.checked" class="shadowCheck" @change="changeCheck"></el-checkbox>
+        </div>
+        <div class="content">
+            <div>
+                <span class="title" :title="data.name">{{ data.name }}</span>
+                <!-- <span class="title" :title="data.name">中央空调系统中央空调系统中央空调系统中央空调系统</span> -->
+                <div class="func">
+                    <el-popover placement="top" width="220" trigger="hover" popper-class="customPop">
+                        <p>版本 : {{ data.version }}</p>
+                        <p>更新时间 : {{ data.lastUpdate }}</p>
+                        <p>更新人 : {{ data.putUser || "张三" }}</p>
+                        <span slot="reference">
+                            <img :src="require('@/assets/images/tips.png')" style="width: 20px; height: 20px" />
+                        </span>
+                    </el-popover>
+                    <el-dropdown :hide-on-click="false" placement="bottom-start" trigger="click" @command="handleCommand">
+                        <span class="el-dropdown-link">
+                            <img :src="require('@/assets/images/more.png')" style="width: 20px; height: 20px" />
+                        </span>
+                        <el-dropdown-menu slot="dropdown">
+                            <template v-for="t in moreList">
+                                <el-dropdown-item :key="t.name" :command="t.name" v-if="dropdownItemShow(t)">{{ t.label }}</el-dropdown-item>
+                            </template>
+                        </el-dropdown-menu>
+                    </el-dropdown>
+                </div>
+            </div>
+            <!-- 下方标签 -->
+            <div class="tags">
+                <span v-for="(t, i) in data.label" :key="data.name + i">{{ t }}</span>
+                <el-popover v-if="data.label.length" placement="top" trigger="hover" popper-class="tags-popover">
+                    <div>
+                        <span v-for="(t, i) in data.label" :key="data.name + i">{{ t }}</span>
+                    </div>
+
+                    <i slot="reference"> ... </i>
+                </el-popover>
+            </div>
+            <!-- <div class="tags">
+                <span v-for="(t, i) in data.label" :key="data.name + i">{{ t }}</span>
+            </div> -->
+            <!-- <span v-for="(t,i) in data.label.slice(0,2).concat(['...'])" :key="data.name + i" @click="handleTagClick(t)">{{t}}</span> -->
+        </div>
+    </el-card>
+</template>
+<script>
+import { publishGraph } from "@/api/home";
+export default {
+    props: {
+        data: {
+            type: Object,
+            default: () => {
+                return {};
+            },
+        },
+        isRecycle: {
+            type: Boolean,
+            default: false,
+        },
+        isPub: {
+            type: Number,
+            default: 0,
+        },
+    },
+    data() {
+        return {
+            moreList: [
+                { name: "edit", label: "编辑", show: "any" }, // 类型为 已发布 时出现
+                { name: "rename", label: "重命名", show: "any" }, // 类型为 未发布/已发布 时出现
+                { name: "publish", label: "发布", show: 0 }, // 类型为 未发布 时出现
+                { name: "download", label: "下载", show: 1 }, // 类型为 已发布 时出现
+                { name: "editTag", label: "修改标签", show: 1 }, // 类型为 已发布 时出现
+                { name: "moveTo", label: "移动到", show: "any" }, // 类型为 未发布/已发布 时出现
+                { name: "delete", label: "删除", show: "any" }, // 类型为 未发布/已发布 时出现
+                { name: "recover", label: "恢复", show: "isRecycle" }, // 类型为 回收站 时出现
+                { name: "deleteRecycle", label: "永久删除", show: "isRecycle" }, // 类型为 回收站 时出现
+            ],
+            checked: false,
+            showMoreTags: false, //是否显示更多标签
+        };
+    },
+    methods: {
+        // 显示下拉框内容选项判断
+        dropdownItemShow(item) {
+            return (!this.isRecycle && (item.show == "any" || item.show == this.isPub)) || (this.isRecycle && item.show == "isRecycle");
+        },
+        // 复选框改变时
+        changeCheck() {
+            this.$emit("changeCheck", this.data);
+        },
+        // 点击更多中的命令时
+        handleCommand(command) {
+            const pa = {
+                graphId: this.data.graphId,
+                id: this.data.id,
+            };
+            switch (command) {
+                case "rename":
+                case "download":
+                case "editTag":
+                case "moveTo":
+                case "delete":
+                case "recover":
+                case "deleteRecycle":
+                    this.$emit(command, this.data);
+                    break;
+                case "publish":
+                    publishGraph(pa).then((res) => {
+                        if (res.result == "success") {
+                            this.$message.success("发布成功");
+                            this.$emit("publishSuc");
+                        } else {
+                            this.$message.success("发布失败");
+                        }
+                    });
+                    break;
+            }
+        },
+        // 进入编辑页面
+        toEdit(e) {
+            const targetName = e.target.nodeName.toLowerCase();
+            if (targetName == "div") {
+                this.$emit("toEdit", this.data);
+            }
+        },
+        /**
+         * 点击...标签,显示popover所有标签
+         */
+        handleTagClick(item) {
+            if (item === "...") {
+                this.showMoreTags = true;
+            }
+        },
+    },
+};
+</script>
+<style lang="less" scoped>
+.box-card {
+    position: relative;
+    width: 260px;
+    height: 193px;
+    border-radius: 8px;
+    margin-right: 20px;
+    margin-bottom: 20px;
+    cursor: pointer;
+    &:hover,
+    &.active {
+        border-color: #0091ff80;
+        box-shadow: 0px 8px 16px 0px rgba(195, 199, 203, 0.4);
+        .shadow {
+            display: block;
+        }
+        .content {
+            .func {
+                display: block;
+            }
+        }
+    }
+    .image {
+        display: block;
+        width: 100%;
+        height: 120px;
+        background-color: #f7f9fa;
+    }
+    .shadow {
+        display: none;
+        position: absolute;
+        top: 0;
+        left: 0;
+        background-color: #8d939926;
+        .shadowCheck {
+            position: absolute;
+            top: 8px;
+            left: 12px;
+        }
+    }
+    .content {
+        padding: 8px 12px;
+        vertical-align: middle;
+        .title {
+            display: inline-block;
+            color: #1f2429;
+            margin: 0;
+            max-width: 182px;
+            white-space: nowrap;
+            overflow: hidden;
+            text-overflow: ellipsis;
+        }
+        .func {
+            & > * + * {
+                margin-left: 8px;
+            }
+            display: none;
+            float: right;
+            vertical-align: middle;
+            i {
+                font-size: 20px;
+            }
+        }
+        & > .tags {
+            margin-top: 4px;
+            & > span {
+                display: inline-block;
+                padding: 1px 6px;
+                font-size: 12px;
+                color: #8d9399;
+                line-height: 18px;
+                border: 1px solid #8d9399;
+                border-radius: 3px;
+                margin-bottom: 11px;
+                margin-right: 4px;
+                // & + span {
+                //     margin-left: 4px;
+                // }
+            }
+        }
+    }
+}
+.customPop {
+    p {
+        font-size: 12px;
+        & + p {
+            margin-top: 10px;
+        }
+    }
+}
+.tags-popover {
+    div {
+        margin-top: 4px;
+        max-width: 480px !important;
+        max-height: 200px !important;
+        overflow: auto !important;
+        & > span {
+            color: red;
+            display: inline-block;
+            padding: 1px 6px;
+            font-size: 12px;
+            color: #8d9399;
+            line-height: 18px;
+            border: 1px solid #8d9399;
+            border-radius: 3px;
+            margin-bottom: 11px;
+            margin-right: 4px;
+        }
+    }
+}
+</style>

+ 99 - 25
src/views/home.vue

@@ -23,7 +23,7 @@
         <el-container class="bodys">
             <!-- 左侧树状导航栏部分 -->
             <el-aside class="aside" width="240px">
-                <left-folder></left-folder>
+                <left-folder @change="changeFolder"></left-folder>
                 <!-- <leftAsideTree ref="leftAsideTree" @changeNode="changeNode" @noTree="(noTreeFlag = false), (popVisible = true)"></leftAsideTree>
                 <div class="recycle" @click="showRecycleDialog">
                     <img :src="require('@/assets/images/recycle.png')" />
@@ -49,9 +49,10 @@
                                 @clear="changeQueryText"
                             >
                             </el-input>
-                            <Dropdown class="Dropdown" v-model="selVal" :data="dataSelect">
+                            <!-- 不显示筛选下拉框 -->
+                            <!-- <Dropdown class="Dropdown" v-model="selVal" :data="dataSelect">
                                 <span class="drop-text">{{ selText }}</span>
-                            </Dropdown>
+                            </Dropdown> -->
                         </div>
                     </div>
                     <div class="showAction" v-show="selectCard.length">
@@ -69,21 +70,27 @@
                 </div>
                 <div class="main-body" v-loading="cardLoading">
                     <div class="has-data-body" v-if="cardList.length">
-                        <template v-for="t in cardList">
-                            <topoImageCard
-                                :isPub="isPub"
-                                :data="t"
-                                :key="t.id"
-                                @changeCheck="changeCheck"
-                                @rename="rename"
-                                @publishSuc="updateSuc"
-                                @moveTo="moveTo"
-                                @delete="deleteGraph"
-                                @editTag="editTag"
-                                @toEdit="toEdit"
-                                @download="download"
-                            ></topoImageCard>
-                        </template>
+                        <div class="building" v-for="buildingData in cardList" :key="buildingData.buildingId">
+                            <p class="buinding-name"><span class="border-left"></span> {{ buildingData.buildingName }}</p>
+                            <div class="floor" v-for="floor in buildingData.floorList" :key="floor.floorId">
+                                <p class="floor-name">{{ floor.floorName }}</p>
+                                <template v-for="t in floor.floor">
+                                    <topoImageCard
+                                        :isPub="isPub"
+                                        :data="t"
+                                        :key="`${Math.random()}_${t.id}`"
+                                        @changeCheck="changeCheck"
+                                        @rename="rename"
+                                        @publishSuc="updateSuc"
+                                        @moveTo="moveTo"
+                                        @delete="deleteGraph"
+                                        @editTag="editTag"
+                                        @toEdit="toEdit"
+                                        @download="download"
+                                    ></topoImageCard>
+                                </template>
+                            </div>
+                        </div>
                     </div>
                     <div class="no-data-body" v-else style="margin-top: 112px">
                         <img src="@/assets/images/no-data.png" style="width: 116px; height: 116px" />
@@ -166,6 +173,10 @@ export default {
             cardLoading: false,
         };
     },
+    created() {
+        window.vm = this;
+        this.changeFolder();
+    },
     methods: {
         testClick(data) {
             console.log(data);
@@ -184,6 +195,8 @@ export default {
         },
         // 选项改变
         changeCheck(v) {
+            console.log("%c选项更改:", "color:blue;");
+            console.log(JSON.stringify(v, null, 2));
             const index = this.selectCard.indexOf(v);
             if (index > -1) {
                 this.selectCard.splice(index, 1);
@@ -245,15 +258,15 @@ export default {
         updateSuc() {
             this.queryGraph();
         },
-        // 移动成功
+        // 卡片移动事件
         moveSuc() {
             this.queryGraph();
-            this.$refs.leftAsideTree.getCategoryGraph();
+            // this.$refs.leftAsideTree.getCategoryGraph();
         },
         // 删除成功
         deleteSuc() {
             this.queryGraph();
-            this.$refs.leftAsideTree.getCategoryGraph();
+            // this.$refs.leftAsideTree.getCategoryGraph();
         },
         // 选中节点变化
         changeNode(data) {
@@ -261,6 +274,23 @@ export default {
             this.categoryName = data.name;
             this.queryGraph();
         },
+        /**
+         * 更改选中的文件夹
+         */
+        changeFolder(data) {
+            // this.queryGraph();
+            // TODO:
+            let { yfbMocKdata } = require("./mockData");
+            console.log(yfbMocKdata);
+            this.cardList = yfbMocKdata.content.map((item) => {
+                item.floorList.map((card) => {
+                    card.checked = false;
+                    return card;
+                });
+                return item;
+            });
+            this.cardLoading = false;
+        },
         // 发布修改
         changePub() {
             this.queryGraph();
@@ -309,6 +339,9 @@ export default {
             if (this.queryText) {
                 pa.filters += `;name contain "${this.queryText}"`;
             }
+            /**
+             * 已发布,未发布 1:已发布 0:未发布
+             */
             if (this.isPub) {
                 queryPubGraph(pa).then((res) => {
                     this.cardList = res.content.map((t) => {
@@ -349,7 +382,7 @@ export default {
         height: 60px;
         background: #f7f9fa;
         padding: 0 16px 0 16px;
-        border-bottom: 1px solid #E4E5E7;
+        border-bottom: 1px solid #e4e5e7;
         box-sizing: border-box;
         display: flex;
         align-items: center;
@@ -424,11 +457,52 @@ export default {
                 display: block;
                 height: calc(100% - 51px);
                 overflow: auto;
-                & > div {
-                    display: flex;
-                    flex-wrap: wrap;
+                .has-data-body {
+                    // 建筑样式
+                    .building {
+                        // 建筑名称
+                        .buinding-name {
+                            display: flex;
+                            align-items: center;
+                            height: 30px;
+                            font-size: 16px;
+                            font-family: MicrosoftYaHei;
+                            color: #1f2329;
+                            line-height: 30px;
+                            margin-bottom: 12px;
+                            // 左边框竖线
+                            span.border-left {
+                                display: inline-block;
+                                width: 2px;
+                                height: 20px;
+                                background: #0091ff;
+                                margin-right: 4px;
+                            }
+                        }
+                        // 楼层样式
+                        .floor {
+                            // padding-left: 9px;
+                            display: flex;
+                            flex-wrap: wrap;
+                            padding-left: 20px;
+                            .floor-name {
+                                position: relative;
+                                left: -12px;
+                                width: 100%;
+                                height: 31px;
+                                font-size: 16px;
+                                font-family: PingFangSC-Regular, PingFang SC;
+                                font-weight: 400;
+                                color: #646c73;
+                                line-height: 31px;
+                                margin-bottom: 8px;
+                            }
+                        }
+                    }
                 }
+
                 .no-data-body {
+                    display: flex;
                     flex-direction: column;
                     // justify-content: center;
                     align-items: center;

+ 275 - 0
src/views/mockData.js

@@ -0,0 +1,275 @@
+// 已发布模拟数据
+let yfbMocKdata = {
+    content: [
+        {
+            buildingId: "123A",
+            buildingName: "建筑A座",
+            floorList: [
+                {
+                    floorId: "1",
+                    floorName: "1层",
+                    floor: [
+                        {
+                            available: true,
+                            buildingId: "1",
+                            categoryId: "120103",
+                            createTime: "2020-10-29 11:15:08",
+                            floorId: "1",
+                            graphId: "2dd925178d164a96941c34326ad340e8",
+                            id: "376f578716fb48febe8fb291b527169f",
+                            label: ["接电话岁微内核你", "阿双方各施工好的好的"],
+                            lastUpdate: "2020-11-19 17:05:18",
+                            name: "个环境接口",
+                            note: "1",
+                            pic: "f1e7da10-1994-11eb-9680-fdc5a286ca5f.png",
+                            projectId: "Pj1101050029",
+                            state: 0,
+                            statistics: {},
+                            version: "2.1.0",
+                        },
+                        {
+                            available: true,
+                            buildingId: "1",
+                            categoryId: "120103",
+                            createTime: "2020-10-29 11:15:08",
+                            floorId: "1",
+                            graphId: "2dd925178d164a96941c34326ad340e8",
+                            id: "376f578716fb48febe8fb291b527169f",
+                            label: ["接电话岁微内核你", "阿双方各施工好的好的"],
+                            lastUpdate: "2020-11-19 17:05:18",
+                            name: "个环境接口",
+                            note: "1",
+                            pic: "f1e7da10-1994-11eb-9680-fdc5a286ca5f.png",
+                            projectId: "Pj1101050029",
+                            state: 0,
+                            statistics: {},
+                            version: "2.1.0",
+                        },
+                        {
+                            available: true,
+                            buildingId: "1",
+                            categoryId: "120103",
+                            createTime: "2020-10-29 11:15:08",
+                            floorId: "1",
+                            graphId: "2dd925178d164a96941c34326ad340e8",
+                            id: "376f578716fb48febe8fb291b527169f",
+                            label: ["接电话岁微内核你"],
+                            lastUpdate: "2020-11-19 17:05:18",
+                            name: "个环境接口",
+                            note: "1",
+                            pic: "f1e7da10-1994-11eb-9680-fdc5a286ca5f.png",
+                            projectId: "Pj1101050029",
+                            state: 0,
+                            statistics: {},
+                            version: "2.1.0",
+                        },
+                        {
+                            available: true,
+                            buildingId: "1",
+                            categoryId: "120103",
+                            createTime: "2020-10-29 11:15:08",
+                            floorId: "1",
+                            graphId: "2dd925178d164a96941c34326ad340e8",
+                            id: "376f578716fb48febe8fb291b527169f",
+                            label: ["阿双方各施工好的好的"],
+                            lastUpdate: "2020-11-19 17:05:18",
+                            name: "个环境接口",
+                            note: "1",
+                            pic: "f1e7da10-1994-11eb-9680-fdc5a286ca5f.png",
+                            projectId: "Pj1101050029",
+                            state: 0,
+                            statistics: {},
+                            version: "2.1.0",
+                        },
+                        {
+                            available: true,
+                            buildingId: "1",
+                            categoryId: "120103",
+                            createTime: "2020-10-29 11:15:08",
+                            floorId: "1",
+                            graphId: "2dd925178d164a96941c34326ad340e8",
+                            id: "376f578716fb48febe8fb291b527169f",
+                            label: ["阿双方各施工好的好的"],
+                            lastUpdate: "2020-11-19 17:05:18",
+                            name: "个环境接口",
+                            note: "1",
+                            pic: "f1e7da10-1994-11eb-9680-fdc5a286ca5f.png",
+                            projectId: "Pj1101050029",
+                            state: 0,
+                            statistics: {},
+                            version: "2.1.0",
+                        },
+                        {
+                            available: true,
+                            buildingId: "1",
+                            categoryId: "120103",
+                            createTime: "2020-10-29 11:15:08",
+                            floorId: "1",
+                            graphId: "2dd925178d164a96941c34326ad340e8",
+                            id: "376f578716fb48febe8fb291b527169f",
+                            label: ["阿双方各施工好的好的"],
+                            lastUpdate: "2020-11-19 17:05:18",
+                            name: "个环境接口",
+                            note: "1",
+                            pic: "f1e7da10-1994-11eb-9680-fdc5a286ca5f.png",
+                            projectId: "Pj1101050029",
+                            state: 0,
+                            statistics: {},
+                            version: "2.1.0",
+                        },
+                    ],
+                },
+                {
+                    floorId: "2",
+                    floorName: "2层",
+                    floor: [
+                        {
+                            available: true,
+                            buildingId: "1",
+                            categoryId: "120103",
+                            createTime: "2020-10-29 11:15:08",
+                            floorId: "1",
+                            graphId: "2dd925178d164a96941c34326ad340e8",
+                            id: "376f578716fb48febe8fb291b527169f",
+                            label: ["接电话岁微内核你", "阿双方各施工好的好的"],
+                            lastUpdate: "2020-11-19 17:05:18",
+                            name: "个环境接口",
+                            note: "1",
+                            pic: "f1e7da10-1994-11eb-9680-fdc5a286ca5f.png",
+                            projectId: "Pj1101050029",
+                            state: 0,
+                            statistics: {},
+                            version: "2.1.0",
+                        },
+                        {
+                            available: true,
+                            buildingId: "1",
+                            categoryId: "120103",
+                            createTime: "2020-10-29 11:15:08",
+                            floorId: "1",
+                            graphId: "2dd925178d164a96941c34326ad340e8",
+                            id: "376f578716fb48febe8fb291b527169f",
+                            label: ["接电话岁微内核你"],
+                            lastUpdate: "2020-11-19 17:05:18",
+                            name: "个环境接口",
+                            note: "1",
+                            pic: "f1e7da10-1994-11eb-9680-fdc5a286ca5f.png",
+                            projectId: "Pj1101050029",
+                            state: 0,
+                            statistics: {},
+                            version: "2.1.0",
+                        },
+                        {
+                            available: true,
+                            buildingId: "1",
+                            categoryId: "120103",
+                            createTime: "2020-10-29 11:15:08",
+                            floorId: "1",
+                            graphId: "2dd925178d164a96941c34326ad340e8",
+                            id: "376f578716fb48febe8fb291b527169f",
+                            label: ["阿双方各施工好的好的"],
+                            lastUpdate: "2020-11-19 17:05:18",
+                            name: "个环境接口",
+                            note: "1",
+                            pic: "f1e7da10-1994-11eb-9680-fdc5a286ca5f.png",
+                            projectId: "Pj1101050029",
+                            state: 0,
+                            statistics: {},
+                            version: "2.1.0",
+                        },
+                    ],
+                },
+            ],
+        },
+        {
+            buildingId: "123B",
+            buildingName: "建筑B座",
+            floorList: [
+                {
+                    floorId: "1",
+                    floorName: "1层",
+                    floor: [
+                        {
+                            available: true,
+                            buildingId: "1",
+                            categoryId: "120103",
+                            createTime: "2020-10-29 11:15:08",
+                            floorId: "1",
+                            graphId: "2dd925178d164a96941c34326ad340e8",
+                            id: "376f578716fb48febe8fb291b527169f",
+                            label: ["接电话岁微内核你", "阿双方各施工好的好的"],
+                            lastUpdate: "2020-11-19 17:05:18",
+                            name: "个环境接口",
+                            note: "1",
+                            pic: "f1e7da10-1994-11eb-9680-fdc5a286ca5f.png",
+                            projectId: "Pj1101050029",
+                            state: 0,
+                            statistics: {},
+                            version: "2.1.0",
+                        },
+                        {
+                            available: true,
+                            buildingId: "1",
+                            categoryId: "120103",
+                            createTime: "2020-10-29 11:15:08",
+                            floorId: "1",
+                            graphId: "2dd925178d164a96941c34326ad340e8",
+                            id: "376f578716fb48febe8fb291b527169f",
+                            label: ["接电话岁微内核你", "阿双方"],
+                            lastUpdate: "2020-11-19 17:05:18",
+                            name: "个环境接口",
+                            note: "1",
+                            pic: "f1e7da10-1994-11eb-9680-fdc5a286ca5f.png",
+                            projectId: "Pj1101050029",
+                            state: 0,
+                            statistics: {},
+                            version: "2.1.0",
+                        },
+                        {
+                            available: true,
+                            buildingId: "1",
+                            categoryId: "120103",
+                            createTime: "2020-10-29 11:15:08",
+                            floorId: "1",
+                            graphId: "2dd925178d164a96941c34326ad340e8",
+                            id: "376f578716fb48febe8fb291b527169f",
+                            label: ["阿双方各施工好的好的"],
+                            lastUpdate: "2020-11-19 17:05:18",
+                            name: "个环境接口",
+                            note: "1",
+                            pic: "f1e7da10-1994-11eb-9680-fdc5a286ca5f.png",
+                            projectId: "Pj1101050029",
+                            state: 0,
+                            statistics: {},
+                            version: "2.1.0",
+                        },
+                        {
+                            available: true,
+                            buildingId: "1",
+                            categoryId: "120103",
+                            createTime: "2020-10-29 11:15:08",
+                            floorId: "1",
+                            graphId: "2dd925178d164a96941c34326ad340e8",
+                            id: "376f578716fb48febe8fb291b527169f",
+                            label: ["阿双方各施工好的好的"],
+                            lastUpdate: "2020-11-19 17:05:18",
+                            name: "个环境接口",
+                            note: "1",
+                            pic: "f1e7da10-1994-11eb-9680-fdc5a286ca5f.png",
+                            projectId: "Pj1101050029",
+                            state: 0,
+                            statistics: {},
+                            version: "2.1.0",
+                        },
+                    ],
+                },
+            ],
+        },
+    ],
+    message: "",
+    pageNumber: 1,
+    pageSize: 50,
+    result: "success",
+    total: 1,
+};
+export { yfbMocKdata };