xushining 3 years ago
parent
commit
5a76a25fb3

+ 2 - 5
src/components/TitleBar.vue

@@ -195,7 +195,7 @@
               border-radius: 8px;
               border: none;
             "
-            :before-close="mainClose"
+            v-on:click="mainClose"
           >
             ×
           </button>
@@ -234,10 +234,7 @@ export default {
       done();
     },
     mainClose() {
-      const {app} = require("electron");
-      app.on("window-all-closed", () => {
-        app.quit();
-      });
+      //remote.getCurrentWindow().close();
     }
   }
 };

+ 8 - 6
src/components/area/ControlArea.vue

@@ -71,25 +71,27 @@ export default {
           ll.unmaintain.value.push(this.getCardValue(v));
         } else if (v.adviceOperateStyle == "Start") {
           //推荐启动
-          ll.start.value.push(v);
+          ll.start.value.push(this.getCardValue(v));
         } else if (v.adviceOperateStyle == "Stop") {
           // 推荐停机
-          ll.stop.value.push(v);
+          ll.stop.value.push(this.getCardValue(v));
         } else if (v.adviceOperateStyle == "Reset") {
           // 推荐复位
-          ll.reset.value.push(v);
+          ll.reset.value.push(this.getCardValue(v));
         } else if (v.adviceOperateStyle == "Maintain") {
           // 推荐维护
-          ll.maintain.value.push(v);
+          ll.maintain.value.push(this.getCardValue(v));
         }
       }
       this.ls=ll;
     },
     getCardValue(val){
-        console.log(val);
         return {
             status:0,
-
+            power:0,
+            windSpeed:0,
+            rollSpeed:0,
+            windturbineId:val.windturbineId,
         }
     }
   },

+ 0 - 1
src/components/area/windturbine/MatrixCard.vue

@@ -9,7 +9,6 @@
         :power="vs.power"
         :windSpeed="vs.windSpeed"
         :rollSpeed="vs.rollSpeed"
-        :stationId="vs.stationId"
         :windturbineId="vs.windturbineId"
       ></WindturbineMinCard>
     </div>

+ 1 - 3
src/components/area/windturbine/WindturbineMinCard.vue

@@ -33,7 +33,6 @@
             power:Number,
             windSpeed:Number,
             rollSpeed:Number,
-            stationId:String,
             windturbineId:String,
         },
         data() {
@@ -69,8 +68,7 @@
                 return "card-content-style-" + this.status;
             },
             stationName:function () {
-                var vs = this.stationId.split('_');
-                return vs[0];
+                return this.windturbineId.slice(0,2);
             },
             windturbineName:function () {
                 var vs = this.windturbineId.split('_');

+ 1 - 1
src/main.js

@@ -7,4 +7,4 @@ import gyCard from './components/area';
 const app = createApp(App)
 app.use(ElementPlus)
 app.use(gyCard)
-app.mount('#app')
+app.mount('#app')