This commit is contained in:
wangdan-fit2cloud 2025-07-15 19:57:21 +08:00
parent c1a403b583
commit 5cb0b3018f
2 changed files with 83 additions and 78 deletions

View File

@ -89,7 +89,7 @@
<span class="medium ellipsis" :title="dialogTitle" :id="titleId" :class="titleClass"> <span class="medium ellipsis" :title="dialogTitle" :id="titleId" :class="titleClass">
{{ dialogTitle }} {{ dialogTitle }}
</span> </span>
<div class="flex align-center mr-8" v-if="dialogType === 'pdfDocument'"> <!-- <div class="flex align-center mr-8" v-if="dialogType === 'pdfDocument'">
<span class="mr-4"> <span class="mr-4">
<el-button text> <el-button text>
<el-icon> <Download /> </el-icon> <el-icon> <Download /> </el-icon>
@ -99,7 +99,7 @@
<el-button text> <app-icon iconName="app-export" size="20" /></el-button> <el-button text> <app-icon iconName="app-export" size="20" /></el-button>
</span> </span>
<el-divider direction="vertical" /> <el-divider direction="vertical" />
</div> </div> -->
</div> </div>
</template> </template>
<div class="mb-8"> <div class="mb-8">
@ -149,7 +149,7 @@ const showPDF = (item: any) => {
return ( return (
item.document_name.toLocaleLowerCase().endsWith('.pdf') && item.document_name.toLocaleLowerCase().endsWith('.pdf') &&
item.meta?.source_file_id && item.meta?.source_file_id &&
!props.executionIsRightPanel props.executionIsRightPanel
) )
} }
const dialogVisible = ref(false) const dialogVisible = ref(false)

View File

@ -41,12 +41,12 @@
chatUser.chat_profile.authentication_type === 'password' chatUser.chat_profile.authentication_type === 'password'
" "
> >
<img src="@/assets/user-icon.svg" style="width: 54%" alt=""/> <img src="@/assets/user-icon.svg" style="width: 54%" alt="" />
</el-avatar> </el-avatar>
<el-dropdown v-else trigger="click" type="primary" class="w-full"> <el-dropdown v-else trigger="click" type="primary" class="w-full">
<div class="flex align-center"> <div class="flex align-center">
<el-avatar :size="32"> <el-avatar :size="32">
<img src="@/assets/user-icon.svg" style="width: 54%" alt=""/> <img src="@/assets/user-icon.svg" style="width: 54%" alt="" />
</el-avatar> </el-avatar>
<span v-show="!isPcCollapse" class="ml-8 color-text-primary">{{ <span v-show="!isPcCollapse" class="ml-8 color-text-primary">{{
chatUser.chatUserProfile?.nick_name chatUser.chatUserProfile?.nick_name
@ -58,7 +58,7 @@
<div class="flex align-center p-8"> <div class="flex align-center p-8">
<div class="mr-8 flex align-center"> <div class="mr-8 flex align-center">
<el-avatar :size="40"> <el-avatar :size="40">
<img src="@/assets/user-icon.svg" style="width: 54%" alt=""/> <img src="@/assets/user-icon.svg" style="width: 54%" alt="" />
</el-avatar> </el-avatar>
</div> </div>
<div> <div>
@ -75,7 +75,7 @@
@click="openResetPassword" @click="openResetPassword"
> >
<el-icon> <el-icon>
<Lock/> <Lock />
</el-icon> </el-icon>
{{ $t('views.login.resetPassword') }} {{ $t('views.login.resetPassword') }}
</el-dropdown-item> </el-dropdown-item>
@ -85,7 +85,7 @@
style="padding-top: 8px; padding-bottom: 8px" style="padding-top: 8px; padding-bottom: 8px"
@click="logout" @click="logout"
> >
<AppIcon iconName="app-export"/> <AppIcon iconName="app-export" />
{{ $t('layout.logout') }} {{ $t('layout.logout') }}
</el-dropdown-item> </el-dropdown-item>
</el-dropdown-menu> </el-dropdown-menu>
@ -100,7 +100,7 @@
@click="isPcCollapse = !isPcCollapse" @click="isPcCollapse = !isPcCollapse"
> >
<el-icon> <el-icon>
<component :is="isPcCollapse ? 'ArrowRightBold' : 'ArrowLeftBold'"/> <component :is="isPcCollapse ? 'ArrowRightBold' : 'ArrowLeftBold'" />
</el-icon> </el-icon>
</el-button> </el-button>
</div> </div>
@ -164,7 +164,7 @@
</div> </div>
<div <div
class="execution-detail-panel" class="execution-detail-panel"
:style="`width: ${ rightPanelSize }px`" :style="`width: ${rightPanelSize}px`"
:resizable="false" :resizable="false"
collapsible collapsible
> >
@ -173,16 +173,26 @@
   
<div class="flex align-center"> <div class="flex align-center">
<span v-if="rightPanelType === 'paragraphDocument'" class="mr-4"> <span v-if="rightPanelType === 'paragraphDocument'" class="mr-4">
<a
:href="
getFileUrl(rightPanelDetail?.meta?.source_file_id) ||
rightPanelDetail?.meta?.source_url
"
target="_blank"
class="ellipsis-1"
:title="rightPanelDetail?.document_name?.trim()"
>
<el-button text> <el-button text>
<el-icon> <Download/> </el-icon> <el-icon> <Download /> </el-icon>
</el-button> </el-button>
</a>
</span> </span>
<span v-if="rightPanelType === 'paragraphDocument'"> <!-- <span v-if="rightPanelType === 'paragraphDocument'">
<el-button text> <app-icon iconName="app-export" size="20"/></el-button> <el-button text> <app-icon iconName="app-export" size="20" /></el-button>
</span> </span> -->
<span> <span>
<el-button text @click="closeExecutionDetail"> <el-button text @click="closeExecutionDetail">
<el-icon size="20"><Close/></el-icon <el-icon size="20"><Close /></el-icon
></el-button> ></el-button>
</span> </span>
</div> </div>
@ -197,7 +207,7 @@
:detail="executionDetail" :detail="executionDetail"
:type="applicationDetail?.type" :type="applicationDetail?.type"
/> />
<ParagraphDocumentContent :detail="rightPanelDetail" v-else/> <ParagraphDocumentContent :detail="rightPanelDetail" v-else />
</div> </div>
</div> </div>
</div> </div>
@ -212,30 +222,27 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import {ref, onMounted, nextTick, computed, watch} from 'vue' import { ref, onMounted, nextTick, computed, watch } from 'vue'
import {marked} from 'marked' import { marked } from 'marked'
import {saveAs} from 'file-saver' import { saveAs } from 'file-saver'
import chatAPI from '@/api/chat/chat' import chatAPI from '@/api/chat/chat'
import useStore from '@/stores' import useStore from '@/stores'
import useResize from '@/layout/hooks/useResize' import useResize from '@/layout/hooks/useResize'
import {hexToRgba} from '@/utils/theme' import { hexToRgba } from '@/utils/theme'
import {useRouter} from 'vue-router' import { useRouter } from 'vue-router'
import ResetPassword from '@/layout/layout-header/avatar/ResetPassword.vue' import ResetPassword from '@/layout/layout-header/avatar/ResetPassword.vue'
import {t} from '@/locales' import { t } from '@/locales'
import type {ResetCurrentUserPasswordRequest} from '@/api/type/user' import type { ResetCurrentUserPasswordRequest } from '@/api/type/user'
import ExecutionDetailContent import ExecutionDetailContent from '@/components/ai-chat/component/knowledge-source-component/ExecutionDetailContent.vue'
from '@/components/ai-chat/component/knowledge-source-component/ExecutionDetailContent.vue' import ParagraphSourceContent from '@/components/ai-chat/component/knowledge-source-component/ParagraphSourceContent.vue'
import ParagraphSourceContent import ParagraphDocumentContent from '@/components/ai-chat/component/knowledge-source-component/ParagraphDocumentContent.vue'
from '@/components/ai-chat/component/knowledge-source-component/ParagraphSourceContent.vue'
import ParagraphDocumentContent
from '@/components/ai-chat/component/knowledge-source-component/ParagraphDocumentContent.vue'
import HistoryPanel from '@/views/chat/component/HistoryPanel.vue' import HistoryPanel from '@/views/chat/component/HistoryPanel.vue'
import {cloneDeep} from 'lodash' import { cloneDeep } from 'lodash'
import { getFileUrl } from '@/utils/common'
useResize() useResize()
const {common, chatUser} = useStore() const { common, chatUser } = useStore()
const router = useRouter() const router = useRouter()
const isCollapse = ref(false) const isCollapse = ref(false)
@ -251,7 +258,7 @@ watch(
const logout = () => { const logout = () => {
chatUser.logout().then(() => { chatUser.logout().then(() => {
router.push({name: 'login'}) router.push({ name: 'login' })
}) })
} }
@ -262,7 +269,7 @@ const openResetPassword = () => {
const handleResetPassword = (param: ResetCurrentUserPasswordRequest) => { const handleResetPassword = (param: ResetCurrentUserPasswordRequest) => {
chatAPI.resetCurrentPassword(param).then(() => { chatAPI.resetCurrentPassword(param).then(() => {
router.push({name: 'login'}) router.push({ name: 'login' })
}) })
} }
@ -290,8 +297,7 @@ const applicationDetail = computed({
get: () => { get: () => {
return props.application_profile return props.application_profile
}, },
set: (v) => { set: (v) => {},
},
}) })
const chatLogData = ref<any[]>([]) const chatLogData = ref<any[]>([])
@ -326,9 +332,8 @@ function deleteLog(row: any) {
}) })
} }
function clearChat() { function clearChat() {
chatAPI.clearChat(left_loading, ).then(() => { chatAPI.clearChat(left_loading).then(() => {
currentChatId.value = 'new' currentChatId.value = 'new'
currentChatName.value = t('chat.createChat') currentChatName.value = t('chat.createChat')
paginationConfig.value.current_page = 1 paginationConfig.value.current_page = 1
@ -455,7 +460,7 @@ async function exportMarkdown(): Promise<void> {
.map((record: any) => `# ${record.problem_text}\n\n${record.answer_text}\n\n`) .map((record: any) => `# ${record.problem_text}\n\n${record.answer_text}\n\n`)
.join('\n') .join('\n')
const blob: Blob = new Blob([markdownContent], {type: 'text/markdown;charset=utf-8'}) const blob: Blob = new Blob([markdownContent], { type: 'text/markdown;charset=utf-8' })
saveAs(blob, suggestedName) saveAs(blob, suggestedName)
} }
@ -466,7 +471,7 @@ async function exportHTML(): Promise<void> {
.join('\n') .join('\n')
const htmlContent: any = marked(markdownContent) const htmlContent: any = marked(markdownContent)
const blob: Blob = new Blob([htmlContent], {type: 'text/html;charset=utf-8'}) const blob: Blob = new Blob([htmlContent], { type: 'text/html;charset=utf-8' })
saveAs(blob, suggestedName) saveAs(blob, suggestedName)
} }