增加常用功能高亮

This commit is contained in:
aixianling
2024-07-18 09:39:04 +08:00
parent 2a882cb3ee
commit 870bc38f1c

View File

@@ -155,7 +155,7 @@ export default {
<span v-text="profile.girdName"/>
</div>
<div class="apps">
<div v-for="(item,i) in apps" :key="i" class="app pointer" :style="getIcon(item)" v-text="item.appName" @click="handleChangeApp(item)"/>
<div v-for="(item,i) in apps" :key="i" class="app pointer" :class="{current:item.id==app.aiConfigId}" :style="getIcon(item)" v-text="item.appName" @click="handleChangeApp(item)"/>
</div>
<div class="conversation">
<el-input class="search" v-model="filter" placeholder="搜索历史对话记录" size="small" suffix-icon="el-icon-search" clearable @change="getConversations"/>
@@ -308,7 +308,7 @@ export default {
border-radius: 4px;
&:hover {
&:hover, &.current {
background-color: #286ffd14;
}
}