perf: 对话日志摘要样式优化 (#315)
This commit is contained in:
parent
62c959f905
commit
e5e2ece1bd
@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-drawer v-model="visible" size="60%" @close="closeHandle" class="chat-record-drawer">
|
<el-drawer v-model="visible" size="60%" @close="closeHandle" class="chat-record-drawer">
|
||||||
<template #header>
|
<template #header>
|
||||||
<h4>{{ currentAbstract }}</h4>
|
<h4 class="single-line">{{ currentAbstract }}</h4>
|
||||||
</template>
|
</template>
|
||||||
<div
|
<div
|
||||||
v-loading="paginationConfig.current_page === 1 && loading"
|
v-loading="paginationConfig.current_page === 1 && loading"
|
||||||
@ -120,6 +120,11 @@ defineExpose({
|
|||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
|
.single-line {
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
.chat-record-drawer {
|
.chat-record-drawer {
|
||||||
.el-drawer__body {
|
.el-drawer__body {
|
||||||
background: var(--app-layout-bg-color);
|
background: var(--app-layout-bg-color);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user