YaolongHan пре 4 година
родитељ
комит
d2c5e36f3f

+ 2 - 0
src/App.vue

@@ -24,9 +24,11 @@ html {
   padding: 0;
   width: 100%;
   height: 100%;
+  // cursor: url('./assets/images/leftImgs/pen.png'),auto;
 }
 #app {
   width: 100%;
   height: 100%;
+
 }
 </style>

+ 1 - 1
src/components/editClass/persagy-edit/PTopoScene.ts

@@ -113,7 +113,7 @@ export class PTopoScene extends SBaseEditScene {
                 this.setTipeEndanchor(event)
                 return true;
             }
-
+            console.log('this.grabItemxxxxxxxxxx',this.grabItem)
             return this.grabItem.onMouseDown(event);
         }
         if (this.editCmd == "EditBaseLine") {

+ 2 - 2
src/components/editClass/persagy-edit/PTopoView.ts

@@ -34,7 +34,7 @@ import { SMouseEvent } from "@persagy-web/base/";
  */
 export class PTopoView extends SGraphView {
 
-	originCursor = ""
+	originCursor = "xxx"
 
 	/** 鼠标样式 */
 	set cursor(v: string) {
@@ -42,7 +42,7 @@ export class PTopoView extends SGraphView {
 			this.canvasView.style.cursor = v;
 			return
 		}
-		this.canvasView.style.cursor = this.originCursor
+		// this.canvasView.style.cursor = this.originCursor
 	}
 	/**
 	 * 绘制场景背景

+ 64 - 0
src/components/editClass/persagy-edit/items/SBaseCursor.ts

@@ -0,0 +1,64 @@
+/*
+ * *********************************************************************************************************************
+ *
+ *          !!
+ *        .F88X
+ *        X8888Y
+ *      .}888888N;
+ *        i888888N;        .:!              .I$WI:
+ *          R888888I      .'N88~            i8}+8Y&8"l8i$8>8W~'>W8}8]KW+8IIN"8&
+ *          .R888888I    .;N8888~          .X8'  "8I.!,/8"  !%NY8`"8I8~~8>,88I
+ *            +888888N;  .8888888Y                                  "&&8Y.}8,
+ *            ./888888N;  .R888888Y        .'}~    .>}'.`+>  i}!    "i'  +/'  .'i~  !11,.:">,  .~]!  .i}i
+ *              ~888888%:  .I888888l      .]88~`1/iY88Ii+1'.R$8$8]"888888888>  Y8$  W8E  X8E  W8888'188Il}Y88$*
+ *              18888888    E8888881    .]W%8$`R8X'&8%++N8i,8N%N8+l8%`  .}8N:.R$RE%N88N%N$K$R  188,FE$8%~Y88I
+ *            .E888888I  .i8888888'      .:$8I;88+`E8R:/8N,.>881.`$8E/1/]N8X.Y8N`"KF&&FK!'88*."88K./$88%RN888+~
+ *            8888888I  .,N888888~        ~88i"8W,!N8*.I88.}888%F,i$88"F88"  888:E8X.>88!i88>`888*.}Fl1]*}1YKi'
+ *          i888888N'      I888Y          ]88;/EX*IFKFK88X  K8R  .l8W  88Y  ~88}'88E&%8W.X8N``]88!.$8K  .:W8I
+ *        .i888888N;        I8Y          .&8$  .X88!  i881.:%888>I88  ;88]  +88+.';;;;:.Y88X  18N.,88l  .+88/
+ *      .:R888888I
+ *      .&888888I                                          Copyright (c) 2016-2020.  博锐尚格科技股份有限公司
+ *        ~8888'
+ *        .!88~                                                                     All rights reserved.
+ *
+ * *********************************************************************************************************************
+ */
+
+import { SBaseImageEdit } from "@persagy-web/edit";
+import { SGraphItem } from "@persagy-web/graph/lib";
+import { Marker } from "@persagy-web/edit/lib/type/Marker";
+import { SMouseEvent } from "@persagy-web/base/lib";
+
+/**
+ * 编辑鼠标图例
+ *
+ * @author 韩耀龙 <han_yao_long@163.com>
+ */
+export class SBaseCursor extends SBaseImageEdit {
+    ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
+    //属性
+
+    /**
+     * 构造函数
+     *
+     * @param parent    指向父对象
+     * @param data      数据
+     */
+    constructor(parent: SGraphItem | null, data: Marker) {
+        super(parent, data);
+        this.data = data;
+        // this.
+    } // Constructor
+
+    /**
+     * 鼠标按下事件
+     *
+     * @param event   保存事件参数
+     * @return 是否处理该事件
+     */
+    onMouseDown(event: SMouseEvent): boolean {
+        super.onMouseDown(event);
+        return false;
+    }
+
+}

+ 16 - 10
src/components/editview/baseTopoEditer.vue

@@ -521,22 +521,28 @@ export default {
       });
     },
     // //改变图标样式
-    changeCursor(val) {
-      if (val) {
-        if (val == "EditBaseLine" || val == "EditBaseLine") {
-          // this.view.originCursor = "xxx";
-        }
-      } else {
-        this.view.originCursor = "";
-      }
-    },
+    // changeCursor(val) {
+    //   if (val) {
+    //     switch (val) {
+    //       case "EditBaseLine":
+    //         this.view.originCursor = "cursor: url('./../../assets/images/leftImgs/pen.png'),auto";
+    //         break;
+    //       case "EditBasetext":
+    //         this.view.originCursor = "text";
+    //         break;
+    //       default:
+    //         this.view.originCursor = "";
+    //     }
+    //   } else {
+    //     this.view.originCursor = "";
+    //   }
+    // },
   },
   watch: {
     editCmd(val) {
       if (this.scene) {
         // 设置当前编辑状态
         this.scene.editCmd = val;
-        this.changeCursor(val);
       }
     },
     legendObj: {

+ 77 - 40
src/components/homeView/topoImageCard.vue

@@ -1,73 +1,107 @@
 <!--拓扑图缩略图卡片-->
 <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;">
+  <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="`${imgBaseUrl}${data.pic}`">
+    <img class="image" v-else :src="`${imgBaseUrl}${data.pic}`" />
     <div class="shadow image" v-if="!isRecycle" @click.stop="toEdit">
-      <el-checkbox v-model="data.checked" class="shadowCheck" @change="changeCheck"></el-checkbox>
+      <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">{{ data.name }}</span>
         <div class="func">
-          <el-popover placement="top" width="200" trigger="hover" popper-class="customPop">
-            <p>版本 : {{'V'+data.version}}</p>
-            <p>更新时间 : {{data.lastUpdate}}</p>
+          <el-popover
+            placement="top"
+            width="200"
+            trigger="hover"
+            popper-class="customPop"
+          >
+            <p>版本 : {{ "V" + 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>
+            <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">
+          <el-dropdown
+            :hide-on-click="true"
+            placement="bottom-start"
+            trigger="click"
+            @command="handleCommand"
+          >
             <span class="el-dropdown-link">
-              <img :src="require('@/assets/images/more.png')" style="width: 20px;height:20px" />
+              <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>
+                <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>
+        <span v-for="(t, i) in data.label" :key="data.name + i">{{ t }}</span>
       </div>
     </div>
   </el-card>
 </template>
 <script>
-const imgBaseUrl = window.__systemConf.imgServeUri
-import { publishGraph } from "@/api/home"
+const imgBaseUrl = window.__systemConf.imgServeUri;
+import { publishGraph } from "@/api/home";
 export default {
   props: {
     data: {
       type: Object,
       default: () => {
-        return {}
-      }
+        return {};
+      },
     },
     isRecycle: {
       type: Boolean,
-      default: false
+      default: false,
     },
     isPub: {
       type: Number,
-      default: 0
-    }
+      default: 0,
+    },
   },
   data() {
     return {
       moreList: [
-        { 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: 'editGraph', label: '编辑', show: 'any' }, // 类型为 未发布/已发布 时出现
-        { name: 'recover', label: '恢复', show: 'isRecycle' },  // 类型为 回收站 时出现
-        { name: 'deleteRecycle', label: '永久删除', show: 'isRecycle' }, // 类型为 回收站 时出现
+        { 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: "editGraph", label: "编辑", show: "any" }, // 类型为 未发布/已发布 时出现
+        { name: "recover", label: "恢复", show: "isRecycle" }, // 类型为 回收站 时出现
+        { name: "deleteRecycle", label: "永久删除", show: "isRecycle" }, // 类型为 回收站 时出现
       ],
       checked: false,
       imgBaseUrl,
@@ -76,17 +110,20 @@ export default {
   methods: {
     // 显示下拉框内容选项判断
     dropdownItemShow(item) {
-      return (!this.isRecycle && (item.show == 'any' || item.show == this.isPub)) || (this.isRecycle && item.show == "isRecycle")
+      return (
+        (!this.isRecycle && (item.show == "any" || item.show == this.isPub)) ||
+        (this.isRecycle && item.show == "isRecycle")
+      );
     },
     // 复选框改变时
     changeCheck() {
-      this.$emit('changeCheck', this.data);
+      this.$emit("changeCheck", this.data);
     },
     // 点击更多中的命令时
     handleCommand(command) {
       const pa = {
         graphId: this.data.graphId,
-        id: this.data.id
+        id: this.data.id,
       };
       switch (command) {
         case "rename":
@@ -96,17 +133,17 @@ export default {
         case "delete":
         case "recover":
         case "deleteRecycle":
-          this.$emit(command, this.data)
+          this.$emit(command, this.data);
           break;
         case "editGraph":
           // 进入编辑
-          this.$emit("toEdit", this.data)
+          this.$emit("toEdit", this.data);
           break;
         case "publish":
-          publishGraph(pa).then(res => {
+          publishGraph(pa).then((res) => {
             if (res.result == "success") {
               this.$message.success("发布成功");
-              this.$emit('publishSuc')
+              this.$emit("publishSuc");
             } else {
               this.$message.success("发布失败");
             }
@@ -117,10 +154,10 @@ export default {
     // 进入编辑页面
     toEdit(e) {
       const targetName = e.target.nodeName.toLowerCase();
-      if (targetName == 'div') {
-        this.$emit("toEdit", this.data)
+      if (targetName == "div") {
+        this.$emit("toEdit", this.data);
       }
-    }
+    },
   },
 };
 </script>

+ 29 - 2
src/views/home.vue

@@ -42,7 +42,11 @@
           @changeNode="changeNode"
           @noTree="(noTreeFlag = false), (popVisible = true)"
         ></leftAsideTree>
-        <div class="recycle" @click="showRecycleDialog">
+        <div
+          class="recycle"
+          :style="!isShowDelete ? 'cursor:not-allowed' : ''"
+          @click="showRecycleDialog"
+        >
           <img :src="require('@/assets/images/recycle.png')" />
           <span>回收站</span>
         </div>
@@ -195,6 +199,7 @@ export default {
       categoryName: "", // 跳转编辑页面时分类名称
       cardLoading: false,
       sprojectId: "",
+      isShowDelete: true, //是否允许打开回收站
     };
   },
   computed: {
@@ -254,6 +259,8 @@ export default {
     },
     // 删除
     groupDelete() {
+      // 判断垃圾箱是否可以点击
+      this.getRecycleData();
       this.$refs.deleteDialog.showDialog(this.selectCard);
     },
     // 重命名
@@ -266,6 +273,8 @@ export default {
     },
     // 单独删除
     deleteGraph(data) {
+      // 判断垃圾箱是否可以点击
+      this.getRecycleData();
       this.$refs.deleteDialog.showDialog([data]);
     },
     // 更新成功-发布成功
@@ -302,7 +311,10 @@ export default {
     },
     // 回收站点击
     showRecycleDialog() {
-      this.$refs.recycle.showDialog();
+      // 判断回收站是否打开
+      if (this.isShowDelete) {
+        this.$refs.recycle.showDialog();
+      }
     },
     // 回收站关闭
     recycleDialogClose() {
@@ -426,6 +438,19 @@ export default {
           });
       });
     },
+    // 请求回收站相关数据
+    getRecycleData() {
+      const pa = {
+        Filters: `state=4`,
+      };
+      queryDraftsGraph(pa).then((res) => {
+        if (res.content && res.content.length) {
+          this.isShowDelete = true;
+        } else {
+          this.isShowDelete = false;
+        }
+      });
+    },
   },
   components: {
     Select,
@@ -450,6 +475,8 @@ export default {
   },
   created() {
     this.sprojectId = this.projectId;
+    // 判断垃圾箱是否可以点击
+    this.getRecycleData();
   },
 };
 </script>