xushining hace 3 años
padre
commit
39691c9b26
Se han modificado 2 ficheros con 22 adiciones y 6 borrados
  1. 4 0
      src/assets/script/BackgroundData.js
  2. 18 6
      src/components/TitleBar.vue

+ 4 - 0
src/assets/script/BackgroundData.js

@@ -291,6 +291,10 @@ export default class BackgroundData {
 
     /* 风机控制 */
     windturbineControl(windturbines){
+        for(var ind in windturbines){
+            console.log(ind);
+        }
+
         console.log(windturbines);
     }
 

+ 18 - 6
src/components/TitleBar.vue

@@ -179,15 +179,17 @@
       </el-col>
 
       <el-col :span="1.6">
-        <el-popover placement="bottom" :width="150" trigger="hover" :show-arrow="false">
+        <el-popover  placement="bottom" :width="150" trigger="hover" :show-arrow="false">
           <template #reference>
             <el-button @click="userClick" style="top: 10px; right: 76px; color: #ffffff; position: absolute;background-color:black;border:none;font-size:16px;">{{usreName}}</el-button>
           </template>
-          <form style="background-color: #363636;">
-            <el-button class="loginoption">编&emsp;辑</el-button>
-            <br>
-            <el-button class="loginoption">注&emsp;销</el-button>
-          </form>
+          <div style="background-color: #363636;">
+            <!-- <el-button class="loginoption">编&emsp;辑</el-button>
+            <br> -->
+            <el-button v-if="!isLogin" class="loginoption" @click="userClick">登&emsp;录</el-button>
+            <br v-if="!isLogin">
+            <el-button class="loginoption" @click="logout">注&emsp;销</el-button>
+          </div>
         </el-popover>
 
         <!-- <div @click="userClick" style="top: 18px; right: 100px; color: #ffffff; position: absolute">{{usreName}}</div> -->
@@ -221,6 +223,7 @@ export default {
     return {
       dialogVisible: false,
       dialogFormVisible: false,
+      isLogin:false,
       form: {
         name: "",
         psd: "",
@@ -305,12 +308,21 @@ export default {
       this.dialogVisible = false;
       this.loginMessage = "";
       this.form.name = this.form.psd = "";
+
+      this.isLogin=true;
     },
 
     /* 用户点击 */
     userClick() {
       this.dialogVisible = true;
     },
+
+    /* 用户注销 */
+    logout(){
+      BackgroundData.getInstance().LoginUser=null;
+      this.usreName = '未登录...';
+      this.isLogin=false;
+    }
   },
 };
 </script>