mirror of
https://github.com/yangjian102621/geekai.git
synced 2026-02-03 04:56:00 +08:00
功能优化:在聊天页面增加对话列表展开和隐藏功能
This commit is contained in:
@@ -9,6 +9,7 @@
|
||||
- Bug 修复:修复 MJ 绘画 U1-V1,拼写错误
|
||||
- 功能优化:支持自动迁移数据表结构,无需在手动执行 SQL 了
|
||||
- 功能优化:移除首页的文字动画效果
|
||||
- 功能优化:在聊天页面增加对话列表展开和隐藏功能
|
||||
|
||||
## v4.2.2
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
padding 10px
|
||||
width var(--el-aside-width, 320px)
|
||||
|
||||
.media-page {
|
||||
.chat-list-container {
|
||||
display: flex
|
||||
flex-flow: column
|
||||
border-radius 10px
|
||||
|
||||
@@ -216,6 +216,7 @@
|
||||
.el-image {
|
||||
height 90px
|
||||
border-radius 5px
|
||||
width 100%
|
||||
}
|
||||
|
||||
.duration {
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
<h2 v-else>{{ title }}</h2>
|
||||
</div>
|
||||
|
||||
<div class="media-page">
|
||||
<div class="chat-list-container">
|
||||
<el-button @click="_newChat" type="primary" class="newChat">
|
||||
<i class="iconfont icon-new-chat mr-1"></i>
|
||||
新建对话
|
||||
@@ -88,7 +88,23 @@
|
||||
</el-button>
|
||||
</div>
|
||||
</el-aside>
|
||||
<el-main v-loading="loading" element-loading-background="rgba(122, 122, 122, 0.3)">
|
||||
|
||||
<el-main
|
||||
v-loading="loading"
|
||||
element-loading-background="rgba(122, 122, 122, 0.3)"
|
||||
class="relative"
|
||||
>
|
||||
<div class="absolute top-2 left-2 cursor-pointer">
|
||||
<div @click="store.setChatListExtend(!store.chatListExtend)">
|
||||
<el-tooltip content="隐藏对话列表" placement="right" v-if="store.chatListExtend">
|
||||
<i class="iconfont icon-colspan text-xl"></i>
|
||||
</el-tooltip>
|
||||
<el-tooltip content="展开对话列表" placement="right" v-else>
|
||||
<i class="iconfont icon-expand text-xl"></i>
|
||||
</el-tooltip>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="chat-container">
|
||||
<div class="chat-config">
|
||||
<el-select
|
||||
@@ -910,7 +926,7 @@ const loadChat = function (chat) {
|
||||
chatId.value = chat.chat_id
|
||||
showStopGenerate.value = false
|
||||
loadChatHistory(chatId.value)
|
||||
router.replace(`/chat/${chatId.value}`)
|
||||
router.push(`/chat/${chatId.value}`)
|
||||
}
|
||||
|
||||
// 编辑会话标题
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div class="layout">
|
||||
<div class="tab-box">
|
||||
<div class="flex-center-col pt-2 mb-2">
|
||||
<!-- <div class="flex-center-col pt-2 mb-2">
|
||||
<div class="flex flex-center-col">
|
||||
<div class="menuIcon" @click="store.setChatListExtend(!store.chatListExtend)">
|
||||
<el-tooltip content="隐藏对话列表" placement="right" v-if="store.chatListExtend">
|
||||
@@ -12,16 +12,16 @@
|
||||
</el-tooltip>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div> -->
|
||||
|
||||
<div class="menu-list">
|
||||
<div class="menu-list pt-2">
|
||||
<ul>
|
||||
<li
|
||||
class="menu-list-item flex-center-col"
|
||||
v-for="item in mainNavs"
|
||||
:key="item.url"
|
||||
@click="changeNav(item)"
|
||||
:class="item.url === curPath ? 'active' : ''"
|
||||
:class="curPath.startsWith(item.url) ? 'active' : ''"
|
||||
>
|
||||
<span v-if="item.icon.startsWith('icon')">
|
||||
<i class="iconfont" :class="item.icon"></i>
|
||||
@@ -48,7 +48,7 @@
|
||||
v-for="(item, index) in moreNavs"
|
||||
:key="item.url"
|
||||
:class="{
|
||||
active: item.url === curPath,
|
||||
active: curPath.startsWith(item.url),
|
||||
moreTitle: index !== 3 && index !== 4,
|
||||
twoTittle: index === 3 || index === 4,
|
||||
}"
|
||||
@@ -58,7 +58,7 @@
|
||||
<i class="iconfont" :class="item.icon"></i>
|
||||
</span>
|
||||
<el-image :src="item.icon" style="width: 20px; height: 20px" v-else />
|
||||
<span :class="item.url === curPath ? 'title active' : 'title'">{{
|
||||
<span class="title" :class="curPath.startsWith(item.url) ? 'active' : ''">{{
|
||||
item.name
|
||||
}}</span>
|
||||
</a>
|
||||
@@ -142,18 +142,18 @@
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { UserFilled } from '@element-plus/icons-vue'
|
||||
import LoginDialog from '@/components/LoginDialog.vue'
|
||||
import ThemeChange from '@/components/ThemeChange.vue'
|
||||
import { useRouter } from 'vue-router'
|
||||
import { computed, onMounted, ref, watch } from 'vue'
|
||||
import { httpGet } from '@/utils/http'
|
||||
import { ElMessage } from 'element-plus'
|
||||
import ConfigDialog from '@/components/UserInfoDialog.vue'
|
||||
import { checkSession, getLicenseInfo, getSystemInfo } from '@/store/cache'
|
||||
import { removeUserToken } from '@/store/session'
|
||||
import { useSharedStore } from '@/store/sharedata'
|
||||
import ConfigDialog from '@/components/UserInfoDialog.vue'
|
||||
import { showMessageError } from '@/utils/dialog'
|
||||
import LoginDialog from '@/components/LoginDialog.vue'
|
||||
import { httpGet } from '@/utils/http'
|
||||
import { UserFilled } from '@element-plus/icons-vue'
|
||||
import { ElMessage } from 'element-plus'
|
||||
import { computed, onMounted, ref, watch } from 'vue'
|
||||
import { useRouter } from 'vue-router'
|
||||
|
||||
const router = useRouter()
|
||||
const logo = ref('')
|
||||
@@ -209,6 +209,7 @@ watch(
|
||||
// 监听路由变化;
|
||||
router.beforeEach((to, from, next) => {
|
||||
curPath.value = to.path
|
||||
console.log(curPath.value)
|
||||
next()
|
||||
})
|
||||
|
||||
@@ -246,7 +247,7 @@ onMounted(() => {
|
||||
.then((res) => {
|
||||
mainNavs.value = res.data
|
||||
// 根据窗口的高度计算应该显示多少菜单
|
||||
const rows = Math.floor((window.innerHeight - 100) / 90)
|
||||
const rows = Math.floor((window.innerHeight - 100) / 75)
|
||||
if (res.data.length > rows) {
|
||||
mainNavs.value = res.data.slice(0, rows)
|
||||
moreNavs.value = res.data.slice(rows)
|
||||
|
||||
Reference in New Issue
Block a user