feat:【antd】【ai】chat 的样式 review 修复
This commit is contained in:
@@ -554,9 +554,8 @@ onMounted(async () => {
|
|||||||
<!-- 右侧:详情部分 -->
|
<!-- 右侧:详情部分 -->
|
||||||
<Layout class="bg-card mx-4">
|
<Layout class="bg-card mx-4">
|
||||||
<Layout.Header
|
<Layout.Header
|
||||||
class="!bg-card border-border flex !h-12 items-center justify-between border-b"
|
class="!bg-card border-border flex !h-12 items-center justify-between border-b !px-4"
|
||||||
>
|
>
|
||||||
<!-- TODO @AI:距离左侧的间距有点大 -->
|
|
||||||
<div class="text-lg font-bold">
|
<div class="text-lg font-bold">
|
||||||
{{ activeConversation?.title ? activeConversation?.title : '对话' }}
|
{{ activeConversation?.title ? activeConversation?.title : '对话' }}
|
||||||
<span v-if="activeMessageList.length > 0">
|
<span v-if="activeMessageList.length > 0">
|
||||||
@@ -564,7 +563,6 @@ onMounted(async () => {
|
|||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- TODO @AI:距离右侧的间距有点大 -->
|
|
||||||
<div class="flex w-72 justify-end" v-if="activeConversation">
|
<div class="flex w-72 justify-end" v-if="activeConversation">
|
||||||
<Button
|
<Button
|
||||||
type="primary"
|
type="primary"
|
||||||
@@ -615,9 +613,10 @@ onMounted(async () => {
|
|||||||
</div>
|
</div>
|
||||||
</Layout.Content>
|
</Layout.Content>
|
||||||
|
|
||||||
<!-- TODO @AI:宽度没满 -->
|
<Layout.Footer class="!bg-card flex flex-col !p-0">
|
||||||
<Layout.Footer class="!bg-card m-0 flex flex-col p-0">
|
<form
|
||||||
<form class="border-border m-2 flex flex-col rounded-xl border p-2">
|
class="border-border mx-4 mb-8 mt-2 flex flex-col rounded-xl border p-2"
|
||||||
|
>
|
||||||
<textarea
|
<textarea
|
||||||
class="box-border h-24 resize-none overflow-auto rounded-md p-2 focus:outline-none"
|
class="box-border h-24 resize-none overflow-auto rounded-md p-2 focus:outline-none"
|
||||||
v-model="prompt"
|
v-model="prompt"
|
||||||
|
|||||||
Reference in New Issue
Block a user