|
@@ -3,7 +3,7 @@
|
|
|
<div class="LoginNav" :style="{ color: type == 'Live' ? 'black' : 'white' }">
|
|
|
<div class="logo">
|
|
|
<!-- <span> logo </span> -->
|
|
|
- <el-menu
|
|
|
+ <!-- <el-menu
|
|
|
:default-active="activeIndex"
|
|
|
class="el-menu-demo"
|
|
|
mode="horizontal"
|
|
@@ -19,7 +19,6 @@
|
|
|
:style="{ color: LoginNavIndex == 2 ? '#FF9900' : '#fff' }"
|
|
|
>
|
|
|
{{ projectName }}
|
|
|
- <!-- SYSTEM -->
|
|
|
<img
|
|
|
class="dropdownIcon"
|
|
|
src="../../assets/login/dropdownIcon.png"
|
|
@@ -45,11 +44,12 @@
|
|
|
</el-dropdown-menu>
|
|
|
</el-dropdown>
|
|
|
</el-menu-item>
|
|
|
- </el-menu>
|
|
|
+ </el-menu> -->
|
|
|
+ <img :src="configInfor.logo_image_url_home" class="logo-img" />
|
|
|
+ <p class="p1">{{ configInfor.title }}</p>
|
|
|
</div>
|
|
|
<div class="userName">
|
|
|
<el-dropdown
|
|
|
- v-if="userMessage"
|
|
|
style="margin-right: 16px"
|
|
|
trigger="click"
|
|
|
@command="changeLang"
|
|
@@ -99,7 +99,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<!-- 消息 铃铛图片 -->
|
|
|
- <div class="message">
|
|
|
+ <div class="message" v-if="userMessage">
|
|
|
<img
|
|
|
@click="gotoPersonalcenter"
|
|
|
src="../../assets/login/Vector2.png"
|
|
@@ -116,7 +116,7 @@ import { getStaticContent, getContent } from "@/api/api";
|
|
|
import { setI18nLang } from "@/utils/i18n";
|
|
|
import { getToken, removeToken } from "@/utils/auth";
|
|
|
export default {
|
|
|
- props: ["type", "changeLoginReg", "FatheruserMessage", "projectList"],
|
|
|
+ props: ["type", "changeLoginReg", "FatheruserMessage", "projectList", "configInfor"],
|
|
|
data() {
|
|
|
return {
|
|
|
activeIndex: "1",
|
|
@@ -219,6 +219,7 @@ export default {
|
|
|
this.userShow = false;
|
|
|
this.userMessage = null;
|
|
|
this.changeLoginReg("login", null);
|
|
|
+ this.projectListArr = []
|
|
|
},
|
|
|
getLangList() {
|
|
|
let MethodName = "language_manager-GetLanguageList";
|
|
@@ -237,7 +238,6 @@ export default {
|
|
|
},
|
|
|
created() {
|
|
|
let _this = this;
|
|
|
- debugger;
|
|
|
if (this.FatheruserMessage) {
|
|
|
_this.userMessage = this.FatheruserMessage;
|
|
|
} else {
|
|
@@ -262,6 +262,7 @@ export default {
|
|
|
padding: 0 60px 0 40px;
|
|
|
z-index: 999;
|
|
|
font-family: "sourceR";
|
|
|
+ background: linear-gradient(180deg, #000000 0%, rgba(44, 44, 44, 0) 100%);
|
|
|
.logo {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
@@ -284,6 +285,16 @@ export default {
|
|
|
.el-menu.el-menu--horizontal {
|
|
|
border-bottom: none;
|
|
|
}
|
|
|
+ .logo-img{
|
|
|
+ width: 48px;
|
|
|
+ height: 48px;
|
|
|
+ }
|
|
|
+ .p1{
|
|
|
+ font-size: 18px;
|
|
|
+ line-height: 26px;
|
|
|
+ color: #FFFFFF;
|
|
|
+ margin: 0 10px;
|
|
|
+ }
|
|
|
}
|
|
|
.userName {
|
|
|
display: flex;
|