|
@@ -1,8 +1,9 @@
|
|
|
<template>
|
|
|
<div class="TopMenu">
|
|
|
<div class="logo" @click="toIndex">
|
|
|
- <img src="/logo.png" alt="">
|
|
|
- </div>
|
|
|
+ <img src="/logo.png" alt="" />
|
|
|
+ <span class="name">AI数字文档</span>
|
|
|
+ </div>
|
|
|
<div class="menu">
|
|
|
<div class="menuList">
|
|
|
<div class="oneMenu finger" @click="openTab('我的文件', '/myfile')">
|
|
@@ -31,7 +32,11 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="user">
|
|
|
- <div class="AIBot hand" v-if="showAi" @click="openTab('智聚AI', '/aipage')">
|
|
|
+ <div
|
|
|
+ class="AIBot hand"
|
|
|
+ v-if="showAi"
|
|
|
+ @click="openTab('智聚AI', '/aipage')"
|
|
|
+ >
|
|
|
<img src="@/assets/images/newIndex/bot.png" alt="" />
|
|
|
<span>智聚AI</span>
|
|
|
</div>
|
|
@@ -301,7 +306,7 @@ const closeOpenScanMove = () => {
|
|
|
};
|
|
|
let lisetenMessageTime = null;
|
|
|
onMounted(() => {
|
|
|
- canChatFn()
|
|
|
+ canChatFn();
|
|
|
document.addEventListener("click", (e) => {
|
|
|
if (e.target.className !== "oneMenu finger") {
|
|
|
hideMoreMenu();
|
|
@@ -338,18 +343,28 @@ watchEffect(async () => {
|
|
|
// align-items: center;
|
|
|
}
|
|
|
.logo {
|
|
|
- width: 260px;
|
|
|
+ width: 266px;
|
|
|
height: 48px;
|
|
|
cursor: pointer;
|
|
|
- img{
|
|
|
- width: 100%;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ img {
|
|
|
+ width: 66px;
|
|
|
height: 100%;
|
|
|
+ margin-right: 8px;
|
|
|
+ }
|
|
|
+ .name{
|
|
|
+ font-size: 20px;
|
|
|
+ font-family: Inter-LOGO;
|
|
|
+ line-height: 28px;
|
|
|
+ color: #fff;
|
|
|
}
|
|
|
}
|
|
|
.menu {
|
|
|
width: 350px;
|
|
|
height: 48px;
|
|
|
position: relative;
|
|
|
+ font-family: Inter-Medium;
|
|
|
.menuList {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
@@ -361,7 +376,7 @@ watchEffect(async () => {
|
|
|
span {
|
|
|
color: #fff;
|
|
|
font-size: 16px;
|
|
|
- font-weight: bold;
|
|
|
+ // font-weight: bold;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -376,7 +391,7 @@ watchEffect(async () => {
|
|
|
display: flex;
|
|
|
font-size: 14px;
|
|
|
color: #030102;
|
|
|
- font-weight: 500;
|
|
|
+ // font-weight: 500;
|
|
|
padding: 10px;
|
|
|
justify-content: space-around;
|
|
|
z-index: 1000000;
|
|
@@ -407,6 +422,7 @@ watchEffect(async () => {
|
|
|
position: relative;
|
|
|
display: flex;
|
|
|
justify-content: space-around;
|
|
|
+ font-family: Inter-Medium;
|
|
|
.clockBox {
|
|
|
position: relative;
|
|
|
.yuandian {
|