mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 16:56:38 +08:00
283 lines
6.5 KiB
Vue
283 lines
6.5 KiB
Vue
<template>
|
|
<div class="chat-line chat-line-reply">
|
|
<div class="chat-line-inner">
|
|
<div class="chat-icon">
|
|
<img :src="data.icon" alt="ChatGPT">
|
|
</div>
|
|
|
|
<div class="chat-item">
|
|
<div class="content" v-html="data.content"></div>
|
|
<div class="bar" v-if="data.created_at">
|
|
<span class="bar-item"><el-icon><Clock/></el-icon> {{ dateFormat(data.created_at) }}</span>
|
|
<!-- <span class="bar-item">Tokens: {{ tokens }}</span>-->
|
|
<span class="bar-item">
|
|
<el-tooltip
|
|
class="box-item"
|
|
effect="dark"
|
|
content="复制回答"
|
|
placement="bottom"
|
|
>
|
|
<el-icon class="copy-reply" :data-clipboard-text="data.orgContent">
|
|
<DocumentCopy/>
|
|
</el-icon>
|
|
</el-tooltip>
|
|
</span>
|
|
<span v-if="!readOnly">
|
|
<span class="bar-item" @click="reGenerate(data.prompt)">
|
|
<el-tooltip
|
|
class="box-item"
|
|
effect="dark"
|
|
content="重新生成"
|
|
placement="bottom"
|
|
>
|
|
<el-icon><Refresh/></el-icon>
|
|
</el-tooltip>
|
|
</span>
|
|
|
|
<span class="bar-item" @click="synthesis(data.orgContent)">
|
|
<el-tooltip
|
|
class="box-item"
|
|
effect="dark"
|
|
content="生成语音朗读"
|
|
placement="bottom"
|
|
>
|
|
<i class="iconfont icon-speaker"></i>
|
|
</el-tooltip>
|
|
</span>
|
|
</span>
|
|
<!-- <span class="bar-item">-->
|
|
<!-- <el-dropdown trigger="click">-->
|
|
<!-- <span class="el-dropdown-link">-->
|
|
<!-- <el-icon><More/></el-icon>-->
|
|
<!-- </span>-->
|
|
<!-- <template #dropdown>-->
|
|
<!-- <el-dropdown-menu>-->
|
|
<!-- <el-dropdown-item :icon="Headset" @click="synthesis(orgContent)">生成语音</el-dropdown-item>-->
|
|
<!-- </el-dropdown-menu>-->
|
|
<!-- </template>-->
|
|
<!-- </el-dropdown>-->
|
|
<!-- </span>-->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import {Clock, DocumentCopy, Refresh} from "@element-plus/icons-vue";
|
|
import {ElMessage} from "element-plus";
|
|
import {dateFormat} from "@/utils/libs";
|
|
// eslint-disable-next-line no-undef,no-unused-vars
|
|
const props = defineProps({
|
|
data: {
|
|
type: Object,
|
|
default: {},
|
|
},
|
|
readOnly: {
|
|
type: Boolean,
|
|
default: false
|
|
}
|
|
})
|
|
|
|
const emits = defineEmits(['regen']);
|
|
|
|
if (!props.data.icon) {
|
|
props.data.icon = "images/gpt-icon.png"
|
|
}
|
|
|
|
const synthesis = (text) => {
|
|
console.log(text)
|
|
ElMessage.info("语音合成功能暂不可用")
|
|
}
|
|
|
|
// 重新生成
|
|
const reGenerate = (prompt) => {
|
|
emits('regen', prompt)
|
|
}
|
|
</script>
|
|
|
|
<style lang="stylus">
|
|
.common-layout {
|
|
.chat-line-reply {
|
|
justify-content: center;
|
|
background-color: rgba(247, 247, 248, 1);
|
|
width 100%
|
|
padding-bottom: 1.5rem;
|
|
padding-top: 1.5rem;
|
|
border-bottom: 1px solid #d9d9e3;
|
|
|
|
.chat-line-inner {
|
|
display flex;
|
|
width 100%;
|
|
max-width 900px;
|
|
padding-left 10px;
|
|
|
|
.chat-icon {
|
|
margin-right 20px;
|
|
|
|
img {
|
|
width: 36px;
|
|
height: 36px;
|
|
border-radius: 10px;
|
|
padding: 1px;
|
|
}
|
|
}
|
|
|
|
.chat-item {
|
|
width 100%
|
|
position: relative;
|
|
padding: 0 0 0 5px;
|
|
overflow: hidden;
|
|
|
|
.content {
|
|
min-height 20px;
|
|
word-break break-word;
|
|
padding: 6px 10px;
|
|
color #374151;
|
|
font-size: var(--content-font-size);
|
|
border-radius: 5px;
|
|
overflow auto;
|
|
|
|
a {
|
|
color #20a0ff
|
|
}
|
|
|
|
// control the image size in content
|
|
|
|
img {
|
|
max-width: 600px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
p {
|
|
line-height 1.5
|
|
|
|
code {
|
|
color #374151
|
|
background-color #e7e7e8
|
|
padding 0 3px;
|
|
border-radius 5px;
|
|
}
|
|
}
|
|
|
|
p:last-child {
|
|
margin-bottom: 0
|
|
}
|
|
|
|
p:first-child {
|
|
margin-top 0
|
|
}
|
|
|
|
.code-container {
|
|
position relative
|
|
|
|
.hljs {
|
|
border-radius 10px
|
|
line-height 1.5
|
|
}
|
|
|
|
.copy-code-btn {
|
|
position: absolute;
|
|
right 10px
|
|
top 10px
|
|
cursor pointer
|
|
font-size 12px
|
|
color #c1c1c1
|
|
|
|
&:hover {
|
|
color #20a0ff
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
.lang-name {
|
|
position absolute;
|
|
right 10px
|
|
bottom 50px
|
|
padding 2px 6px 4px 6px
|
|
background-color #444444
|
|
border-radius 10px
|
|
color #00e0e0
|
|
}
|
|
|
|
|
|
// 设置表格边框
|
|
|
|
table {
|
|
width 100%
|
|
margin-bottom 1rem
|
|
color #212529
|
|
border-collapse collapse;
|
|
border 1px solid #dee2e6;
|
|
background-color #ffffff
|
|
|
|
thead {
|
|
th {
|
|
border 1px solid #dee2e6
|
|
vertical-align: bottom
|
|
border-bottom: 2px solid #dee2e6
|
|
padding 10px
|
|
}
|
|
}
|
|
|
|
td {
|
|
border 1px solid #dee2e6
|
|
padding 10px
|
|
}
|
|
}
|
|
|
|
// 代码快
|
|
|
|
blockquote {
|
|
margin 0
|
|
background-color: #ebfffe;
|
|
padding: 0.8rem 1.5rem;
|
|
border-left: 0.5rem solid;
|
|
border-color: #026863;
|
|
color: #2c3e50;
|
|
}
|
|
}
|
|
|
|
|
|
.bar {
|
|
padding 10px;
|
|
|
|
.bar-item {
|
|
background-color #e7e7e8;
|
|
color #888
|
|
padding 3px 5px;
|
|
margin-right 10px;
|
|
border-radius 5px;
|
|
cursor pointer
|
|
|
|
.el-icon {
|
|
position relative
|
|
top 2px;
|
|
cursor pointer
|
|
}
|
|
}
|
|
|
|
.el-button {
|
|
height 20px
|
|
padding 5px 2px;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
.tool-box {
|
|
font-size 16px;
|
|
|
|
.el-button {
|
|
height 20px
|
|
padding 5px 2px;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
</style>
|