|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
<div id="c-layout">
|
|
|
<div class="header">
|
|
|
- <div class="header_1">
|
|
|
+ <div class="header_1 w_1700">
|
|
|
<div class="left">
|
|
|
<el-image class="image" :src="logo" fit="fill" />
|
|
|
</div>
|
|
@@ -37,8 +37,9 @@
|
|
|
</div>
|
|
|
<div class="header_3">
|
|
|
<el-col :span="24" class="list">
|
|
|
- <div class="text" v-for="(item, index) in data" @click="selectMenu(item.route)" :class="[item.hover == '1' ? 'menuTrue' : '']" :key="index">
|
|
|
+ <div class="text" v-for="(item, index) in data" @click="selectMenu(item.route)" :class="[item.hover == '1' ? 'menuTrue' : '']" :key="index" @mouseover="handleMouseOver(index)" @mouseout="handleMousOut(index)">
|
|
|
<div class="title">{{ item.title }}</div>
|
|
|
+ <div class="link"></div>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="info">
|
|
@@ -143,7 +144,7 @@ const toSubscribe = () => {
|
|
|
const subscribes = { [`/exchange/userEx/${userid}`]: dealMsg }
|
|
|
mqClient.value = initClient(subscribes)
|
|
|
}
|
|
|
-const dealMsg = (data) => {
|
|
|
+const dealMsg = () => {
|
|
|
searchMessage()
|
|
|
}
|
|
|
|
|
@@ -194,6 +195,20 @@ const search = async () => {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+const handleMouseOver = (index) => {
|
|
|
+ data.value[index].hover = true
|
|
|
+ info.value = data.value[index]
|
|
|
+}
|
|
|
+const handleMousOut = (index) => {
|
|
|
+ data.value[index].hover = false
|
|
|
+ const arr = data.value.every((i) => i.hover === false)
|
|
|
+ if (arr) {
|
|
|
+ for (const val of data.value) {
|
|
|
+ if (route.name === val.route) val.hover = true
|
|
|
+ else val.hover = false
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
const toLink = (item) => {
|
|
|
window.open(item.href, '_blank') // 在新标签页中打开URL
|
|
|
}
|
|
@@ -257,8 +272,6 @@ const toOut = () => {
|
|
|
align-items: center;
|
|
|
justify-content: space-between;
|
|
|
padding: 10px 0;
|
|
|
- width: 1700px;
|
|
|
- margin: 0 auto;
|
|
|
.right {
|
|
|
display: flex;
|
|
|
font-size: $global-font-size-18;
|
|
@@ -290,17 +303,17 @@ const toOut = () => {
|
|
|
}
|
|
|
}
|
|
|
.header_3 {
|
|
|
- height: 70px;
|
|
|
+ height: 74px;
|
|
|
background: linear-gradient(to bottom, #009fff, #0077ff);
|
|
|
|
|
|
.list {
|
|
|
height: 100%;
|
|
|
- width: 1700px;
|
|
|
+ max-width: 1700px;
|
|
|
margin: 0 auto;
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
justify-content: center;
|
|
|
- font-size: $global-font-size-24;
|
|
|
+ font-size: $global-font-size-26;
|
|
|
color: #ffffff;
|
|
|
.text {
|
|
|
width: 10%;
|
|
@@ -320,11 +333,11 @@ const toOut = () => {
|
|
|
.info_1 {
|
|
|
z-index: 100;
|
|
|
position: absolute;
|
|
|
- left: 449px;
|
|
|
- top: 143px;
|
|
|
+ left: 448px;
|
|
|
+ top: 147px;
|
|
|
cursor: default;
|
|
|
width: 170px;
|
|
|
- background: linear-gradient(90deg, #1e79ef, #4585ed);
|
|
|
+ background: #0077ff;
|
|
|
|
|
|
.children {
|
|
|
padding: 10px;
|
|
@@ -343,12 +356,18 @@ const toOut = () => {
|
|
|
}
|
|
|
}
|
|
|
.menuTrue {
|
|
|
- background: #0165e7;
|
|
|
- height: 75px;
|
|
|
- line-height: 75px;
|
|
|
- border-radius: 3px;
|
|
|
- margin-top: -3px;
|
|
|
- z-index: 100;
|
|
|
+ position: relative;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ font-weight: bold;
|
|
|
+ .link {
|
|
|
+ position: absolute;
|
|
|
+ top: 40px;
|
|
|
+ width: 60px;
|
|
|
+ height: 5px;
|
|
|
+ background: #ffffff;
|
|
|
+ border-radius: 5px;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -360,72 +379,69 @@ const toOut = () => {
|
|
|
}
|
|
|
}
|
|
|
.main {
|
|
|
- min-height: 58.5vh;
|
|
|
+ min-height: 50vh;
|
|
|
}
|
|
|
.footer {
|
|
|
font-family: PingFangSC-Regular;
|
|
|
- padding: 10px 0;
|
|
|
+ padding: 25px 0;
|
|
|
background: linear-gradient(to bottom, #009fff, #0077ff);
|
|
|
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.2);
|
|
|
color: $global-color-fff;
|
|
|
font-size: $global-font-size-18;
|
|
|
- .w_1700 {
|
|
|
- width: 1700px;
|
|
|
- margin: 10px auto;
|
|
|
- .foot_1 {
|
|
|
- display: flex;
|
|
|
- .foot_left {
|
|
|
- width: 50%;
|
|
|
- .foot_content {
|
|
|
- margin: 40px 0 10px 0;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- .content_right {
|
|
|
- margin: 0 0 0 30px;
|
|
|
- .title {
|
|
|
- cursor: default;
|
|
|
- margin: 8px 0 0 0;
|
|
|
- }
|
|
|
- .title:first-child {
|
|
|
- margin: 0;
|
|
|
- }
|
|
|
+ .foot_1 {
|
|
|
+ display: flex;
|
|
|
+ .foot_left {
|
|
|
+ width: 50%;
|
|
|
+ .foot_content {
|
|
|
+ margin: 40px 0 10px 0;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ .content_right {
|
|
|
+ margin: 0 0 0 30px;
|
|
|
+ .title {
|
|
|
+ cursor: default;
|
|
|
+ margin: 8px 0 0 0;
|
|
|
+ }
|
|
|
+ .title:first-child {
|
|
|
+ margin: 0;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- .foot_right {
|
|
|
- width: 50%;
|
|
|
- .right_1 {
|
|
|
- font-size: $global-font-size-21;
|
|
|
- margin: 0 0 40px 0;
|
|
|
- }
|
|
|
- .right_2 {
|
|
|
- display: flex;
|
|
|
- justify-content: space-between;
|
|
|
- .list_1 {
|
|
|
- .title {
|
|
|
- font-size: $global-font-size-21;
|
|
|
- background: #fff;
|
|
|
- width: 113px;
|
|
|
- height: 33px;
|
|
|
- line-height: 33px;
|
|
|
- border-radius: 16px;
|
|
|
- margin: 0 0 10px 0;
|
|
|
- color: #0078ff;
|
|
|
- text-align: center;
|
|
|
- font-family: PingFangSC-Semibold;
|
|
|
- }
|
|
|
- }
|
|
|
- .list_2 {
|
|
|
- font-size: $global-font-size-18;
|
|
|
- margin: 15px 0 0 15px;
|
|
|
+ }
|
|
|
+ .foot_right {
|
|
|
+ width: 50%;
|
|
|
+ .right_1 {
|
|
|
+ font-size: $global-font-size-21;
|
|
|
+ margin: 0 0 40px 0;
|
|
|
+ }
|
|
|
+ .right_2 {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ .list_1 {
|
|
|
+ .title {
|
|
|
+ font-size: $global-font-size-21;
|
|
|
+ background: #fff;
|
|
|
+ width: 113px;
|
|
|
+ height: 33px;
|
|
|
+ line-height: 33px;
|
|
|
+ border-radius: 16px;
|
|
|
+ margin: 0 0 10px 0;
|
|
|
+ color: #0078ff;
|
|
|
+ text-align: center;
|
|
|
+ font-family: PingFangSC-Semibold;
|
|
|
}
|
|
|
}
|
|
|
+ .list_2 {
|
|
|
+ font-size: $global-font-size-18;
|
|
|
+ margin: 15px 0 0 15px;
|
|
|
+ cursor: default;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
- .foot_2 {
|
|
|
- text-align: center;
|
|
|
- padding: 10px 0 0 0;
|
|
|
- }
|
|
|
+ }
|
|
|
+ .foot_2 {
|
|
|
+ text-align: center;
|
|
|
+ padding: 10px 0 0 0;
|
|
|
}
|
|
|
|
|
|
.foot {
|
|
@@ -469,6 +485,7 @@ const toOut = () => {
|
|
|
display: flex;
|
|
|
flex-wrap: wrap;
|
|
|
justify-content: center;
|
|
|
+ cursor: default;
|
|
|
div {
|
|
|
margin: 0 5px 5px 0;
|
|
|
cursor: default;
|