|
@@ -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">编 辑</el-button>
|
|
|
- <br>
|
|
|
- <el-button class="loginoption">注 销</el-button>
|
|
|
- </form>
|
|
|
+ <div style="background-color: #363636;">
|
|
|
+ <!-- <el-button class="loginoption">编 辑</el-button>
|
|
|
+ <br> -->
|
|
|
+ <el-button v-if="!isLogin" class="loginoption" @click="userClick">登 录</el-button>
|
|
|
+ <br v-if="!isLogin">
|
|
|
+ <el-button class="loginoption" @click="logout">注 销</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>
|