refactor(agent): 重构智能体页面布局和样式
-调整了智能体卡片的布局结构,优化了标题和描述的显示方式 - 改进了历史对话的展示样式,增加了滚动指示器 - 统一了标签和图标的样式,提升了视觉一致性 - 优化了搜索框和卡片列表的样式,提高了用户体验
This commit is contained in:
@ -8,6 +8,7 @@ const route = useRoute();
|
||||
const routerKey = computed(() => {
|
||||
return route.path + Math.random();
|
||||
});
|
||||
const hideFooter = computed(() => route.meta?.hideFooter);
|
||||
/*** - end */
|
||||
</script>
|
||||
|
||||
@ -19,7 +20,7 @@ const routerKey = computed(() => {
|
||||
<component :is="Component" :key="route.fullPath" />
|
||||
</keep-alive>
|
||||
</transition>
|
||||
<view class="footer">
|
||||
<view class="footer" v-if="!hideFooter">
|
||||
<view>闽公网安备 352018502850842号 闽ICP备20250520582号 © 2025小题科技,All Rights Reserved.</view>
|
||||
<view>* 数据通过公开渠道获取,灵机进行统计分析</view>
|
||||
</view>
|
||||
|
||||
Reference in New Issue
Block a user