style: 修改前端样式

This commit is contained in:
wxg0103 2024-10-24 18:17:57 +08:00
parent 6df7d2d965
commit 8c7d84d79d
4 changed files with 39 additions and 35 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -172,7 +172,7 @@
</template> </template>
</div> </div>
</el-scrollbar> </el-scrollbar>
<div class="ai-chat__operate p-24" v-if="!log"> <div class="ai-chat__operate p-16-24" v-if="!log">
<slot name="operateBefore" /> <slot name="operateBefore" />
<div class="operate-textarea flex chat-width"> <div class="operate-textarea flex chat-width">
<el-input <el-input
@ -221,12 +221,12 @@
</el-button> </el-button>
</div> </div>
</div> </div>
<div <div class="chat-width text-center" v-if="data.disclaimer" style="margin-top: 8px">
class="chat-width" <el-text type="info" v-if="data.disclaimer" style="font-size: 12px">
v-if="data.disclaimer" <auto-tooltip :content="data.disclaimer_value">
style="align-items: center; text-align: center; margin-top: 10px"
>
{{ data.disclaimer_value }} {{ data.disclaimer_value }}
</auto-tooltip>
</el-text>
</div> </div>
</div> </div>
</div> </div>

View File

@ -43,13 +43,12 @@
> >
<el-input v-model="form.authentication_value" readonly style="width: 268px" disabled> <el-input v-model="form.authentication_value" readonly style="width: 268px" disabled>
<template #append> <template #append>
<div class="button-container">
<el-tooltip content="复制" placement="top"> <el-tooltip content="复制" placement="top">
<el-button <el-button
type="primary" type="primary"
text text
@click="copyClick(form.authentication_value)" @click="copyClick(form.authentication_value)"
style="width: 24px; height: 24px" style="margin: 0 4px !important"
> >
<AppIcon iconName="app-copy"></AppIcon> <AppIcon iconName="app-copy"></AppIcon>
</el-button> </el-button>
@ -59,12 +58,11 @@
@click="refreshAuthentication" @click="refreshAuthentication"
type="primary" type="primary"
text text
style="width: 24px; height: 24px; margin-left: 20px" style="margin: 0 4px 0 0 !important"
> >
<el-icon><RefreshRight /></el-icon> <el-icon><RefreshRight /></el-icon>
</el-button> </el-button>
</el-tooltip> </el-tooltip>
</div>
</template> </template>
</el-input> </el-input>
</el-form-item> </el-form-item>

View File

@ -111,15 +111,21 @@
<img src="@/assets/display-bg3.png" alt="" width="270" class="ml-8" /> <img src="@/assets/display-bg3.png" alt="" width="270" class="ml-8" />
</div> </div>
</div> </div>
<div style="position: absolute; bottom: 0">
<img src="@/assets/display-bg1.png" alt="" class="w-full" />
<div <div
class="chat-width" style="position: absolute; bottom: 0; padding-bottom: 8px; box-sizing: border-box"
v-if="xpackForm.disclaimer" class="p-16 text-center w-full"
style="align-items: center; text-align: center"
> >
<img src="@/assets/display-bg1.png" alt="" class="w-full" />
<el-text
type="info"
v-if="xpackForm.disclaimer"
class="mt-8"
style="font-size: 12px"
>
<auto-tooltip :content="xpackForm.disclaimer_value">
{{ xpackForm.disclaimer_value }} {{ xpackForm.disclaimer_value }}
</div> </auto-tooltip>
</el-text>
</div> </div>
</div> </div>
</div> </div>