Browse Source

升级管道类、新增信息点属性设置、背景色设置、以及背景色字段

YaolongHan 4 năm trước cách đây
mục cha
commit
1825f5aedd
2 tập tin đã thay đổi với 21 bổ sung10 xóa
  1. 5 5
      package.json
  2. 16 5
      src/components/editview/rightPropertyBar/graphPaper.vue

+ 5 - 5
package.json

@@ -16,11 +16,11 @@
   },
   "dependencies": {
     "@persagy-web/base": "2.2.1",
-    "@persagy-web/big": "2.2.37",
-    "@persagy-web/draw": "2.2.9",
-    "@persagy-web/graph": "2.2.36",
-    "@persagy-web/big-edit": "2.2.13",
-    "@persagy-web/edit": "2.2.11",
+    "@persagy-web/big": "2.2.38",
+    "@persagy-web/draw": "2.2.10",
+    "@persagy-web/graph": "2.2.37",
+    "@persagy-web/big-edit": "2.2.14",
+    "@persagy-web/edit": "2.2.12",
     "@types/uuid": "^8.0.0",
     "ant-design-vue": "^1.6.5",
     "axios": "^0.20.0",

+ 16 - 5
src/components/editview/rightPropertyBar/graphPaper.vue

@@ -1,5 +1,6 @@
 <template>
   <div id="paper">
+    <div class="title">背景</div>
     <ul>
       <li>
         <div class="property">
@@ -32,10 +33,10 @@ export default {
     ...mapState(["viewBackground"]),
   },
   watch: {
-    viewBackground:function (val) {
-        if(val){
-            this.color = val;
-        }
+    viewBackground: function (val) {
+      if (val) {
+        this.color = val;
+      }
     },
   },
   methods: {
@@ -53,6 +54,16 @@ li {
   list-style-type: none;
 }
 #paper {
+  .title {
+   height: 47px;
+    border-bottom: 1px solid #979797;
+    color: #646c73;
+    font-size: 16px;
+    padding-left: 12px;
+    box-sizing: border-box;
+    line-height: 47px;
+    font-weight: bold;
+  }
   ul {
     width: calc(~"100% - 24px");
     margin: -1px 12px 0 12px;
@@ -66,7 +77,7 @@ li {
       .property {
         display: flex;
         align-items: center;
-        justify-content: space-around;
+        justify-content: start;
         .color-box {
           display: flex;
           align-items: center;