YaolongHan hace 4 años
padre
commit
d29902bdb7
Se han modificado 2 ficheros con 21 adiciones y 15 borrados
  1. 4 4
      package.json
  2. 17 11
      src/components/editview/rightPropertyBar/BaseEquipment.vue

+ 4 - 4
package.json

@@ -16,11 +16,11 @@
   },
   "dependencies": {
     "@persagy-web/base": "2.2.1",
-    "@persagy-web/big": "2.2.19",
+    "@persagy-web/big": "2.2.33",
     "@persagy-web/draw": "2.2.8",
-    "@persagy-web/graph": "2.2.23",
-    "@persagy-web/big-edit": "2.2.4",
-    "@persagy-web/edit": "2.2.2",
+    "@persagy-web/graph": "2.2.34",
+    "@persagy-web/big-edit": "2.2.5",
+    "@persagy-web/edit": "2.2.4",
     "@types/uuid": "^8.0.0",
     "ant-design-vue": "^1.6.5",
     "axios": "^0.20.0",

+ 17 - 11
src/components/editview/rightPropertyBar/BaseEquipment.vue

@@ -54,7 +54,13 @@
           <div class="imgUpdate">
             <div class="img-tit">附加数据</div>
             <div class="textarea">
-              <el-input type="textarea" @input="changeAnotherMsg" v-model="anotherMsg" :rows="2" placeholder="请输入内容">
+              <el-input
+                type="textarea"
+                @input="changeAnotherMsg"
+                v-model="anotherMsg"
+                :rows="2"
+                placeholder="请输入内容"
+              >
               </el-input>
             </div>
           </div>
@@ -121,7 +127,14 @@ const imgBaseUrl = window.__systemConf.imgServeUri;
 // 图上传路径
 const imgServeUpload = window.__systemConf.imgServeUpload;
 export default {
-  props: ["InfoPointList", "EquipData", "equipHeight", "Width", "Height","AnotherMsg"],
+  props: [
+    "InfoPointList",
+    "EquipData",
+    "equipHeight",
+    "Width",
+    "Height",
+    "AnotherMsg",
+  ],
   data() {
     return {
       width: 0,
@@ -197,21 +210,14 @@ export default {
               /* method */
               "POST",
               /* target url */
-               imgServeUpload +
-                uploadKey +
-                "." +
-                imgType
+              imgServeUpload + uploadKey + "." + imgType
             );
             xhr.send(reader.result);
             xhr.onreadystatechange = function () {
               if (xhr.readyState == 4) {
                 if (xhr.status == 200) {
                   that.url = imgBaseUrl + uploadKey + "." + imgType;
-                  bus.$emit(
-                    "updateStyle",
-                    "url",
-                    imgBaseUrl + uploadKey + "." + imgType
-                  );
+                  bus.$emit("updateStyle", "url", uploadKey + "." + imgType);
                 }
               }
             };