YaolongHan 4 年之前
父节点
当前提交
444364030d

+ 1 - 0
package.json

@@ -47,6 +47,7 @@
     "@vue/eslint-config-typescript": "^5.0.2",
     "babel-plugin-component": "^1.1.1",
     "babel-plugin-import": "^1.12.0",
+    "compression-webpack-plugin": "^3.1.0",
     "eslint": "^6.7.2",
     "eslint-plugin-vue": "^6.2.2",
     "less": "^3.0.4",

+ 2 - 0
src/components/editview/baseTopoEditer.vue

@@ -343,6 +343,8 @@ export default {
         t.connect("onContextMenu", this, this.scene.getItem);
         this.scene.addItem(t);
       });
+      // 读取完成后默认走保存一次
+      this.saveTopoDraft()
     },
     // 生成快照并保存草稿
     saveTopoDraft() {

+ 3 - 1
src/components/editview/rightPropertyBar/BaseEquipment.vue

@@ -299,9 +299,11 @@ export default {
       const data = {
         Type: val.properties.classCode,
       };
+      // 获取该设备所有信息点
       queryDict(data)
         .then((res) => {
           let arr = [];
+          console.log('InfoPointList',this.InfoPointList)
           // 勾选设备中选中的对象
           const msgData = res.content;
           // 设置已经勾选数据
@@ -309,7 +311,7 @@ export default {
             msgData.map((item) => {
               item.checked = false;
               this.InfoPointList.forEach((a) => {
-                if (a.id == item.id) {
+                if (a.code == item.code) {
                   item.checked = true;
                 }
               });

+ 18 - 3
src/components/editview/rightPropertyBar/InfoPoint.vue

@@ -8,6 +8,7 @@
       label-width="120px"
       :model="formLabelAlign"
       :rules="rules"
+      :validate-on-rule-change="true"
       ref="infopointform"
     >
       <el-form-item label="全局编码" prop="EqId">
@@ -31,8 +32,14 @@
           v-model="formLabelAlign.code"
         ></el-input>
       </el-form-item>
-      <el-form-item label="信息点名称" v-show="InfoItem &&InfoItem.data.properties.infoData">
-        <el-input @change="changeText" v-model="formLabelAlign.subName"></el-input>
+      <el-form-item
+        label="信息点名称"
+        v-show="InfoItem && InfoItem.data.properties.infoData"
+      >
+        <el-input
+          @change="changeText"
+          v-model="formLabelAlign.subName"
+        ></el-input>
       </el-form-item>
     </el-form>
   </div>
@@ -71,6 +78,15 @@ export default {
     // 提交表单
     submitForm() {
       this.$refs["infopointform"].validate((valid) => {
+        //保存信息点值
+        // if (this.InfoItem) {
+        //   this.InfoItem.data.properties.infoData = {
+        //     equipId: this.formLabelAlign.EqId,
+        //     classCode: this.formLabelAlign.classCode,
+        //     code: this.formLabelAlign.code,
+        //   };
+        // }
+        // 做校验判断
         if (valid) {
           // 请求信息
           this.queryMsg();
@@ -103,7 +119,6 @@ export default {
           if (this.InfoItem) {
             if (this.InfoItem.data.properties.infoData) {
               this.$delete(this.InfoItem.data.properties, "infoData");
-              console.log("this.InfoItem.data.properties",this.InfoItem.data.properties);
             }
           }
         }

+ 26 - 0
vue.config.js

@@ -1,3 +1,4 @@
+const CompressionPlugin = require("compression-webpack-plugin");
 module.exports = {
     devServer: {
         // 关闭esline
@@ -44,6 +45,31 @@ module.exports = {
     outputDir: 'persagyTopo',
     // 放置生成的静态资源 (js、css、img、fonts) 的 (相对于 outputDir 的) 目录
     assetsDir: 'static',
+
+    // 配置webpack
+    // configureWebpack: (config) => {
+    //     // 生成环境,删除console.log和debugger
+    //     // if (process.env.VUE_Plan_RealEnv === "production") {
+    //     //     config.optimization.minimizer[0].options.terserOptions.compress.drop_console = true; //删除console
+    //     //     config.optimization.minimizer[0].options.terserOptions.compress.drop_debugger = true; //删除 debugger
+    //     //     config.optimization.minimizer[0].options.terserOptions.compress.pure_funcs = ["console.log"]; //删除
+    //     // }
+    //     const plugins = [
+    //         // 压缩代码
+    //         new CompressionPlugin({
+    //             test: /\.js$|\.html$|\.css$/, // 匹配文件名
+    //             threshold: 10240, // 对超过10k的数据压缩
+    //             deleteOriginalAssets: true, // false 不删除源文件 true 删除源文件
+    //         }),
+    //     ];
+    //     // 生产环境打包分析体积 命令 npm run  build --report 或者 yarn build --report
+    //     // if (process.env.NODE_ENV === "production" && (process.env.npm_config_report || process.env.npm_config_argv.indexOf("--report") !== -1)) {
+    //     //     plugins.push(new BundleAnalyzerPlugin());
+    //     // }
+    //     return {
+    //         plugins,
+    //     };
+    // },
     // chainWebpack:config =>{
     //     config.module.rule('svg-sprite')
     //     .use('svgo-loader')