bug修复

This commit is contained in:
francis_fh
2026-01-23 13:10:40 +08:00
parent 7bfc765a73
commit ebb6bc6e33
2 changed files with 276 additions and 59 deletions

View File

@@ -135,14 +135,14 @@
</view>
<view v-if="isTyping" class="self">
<view class="message msg-loading">
<div class="loading-content">
<span class="ai-loading">
<span></span>
<span></span>
<span></span>
</span>
<view class="loading-content">
<view class="ai-loading">
<view></view>
<view></view>
<view></view>
</view>
<text class="loading-text">AI正在思考中...</text>
</div>
</view>
</view>
</view>
</view>
@@ -1299,7 +1299,7 @@ image-margin-top = 40rpx
}
/* 三个点的样式 - 使用标准CSS语法不使用嵌套 */
.ai-loading span {
.ai-loading view {
display: inline-block;
width: 12rpx;
height: 12rpx;
@@ -1311,15 +1311,15 @@ image-margin-top = 40rpx
}
/* 为每个点设置不同的动画延迟 */
.ai-loading span:nth-child(1) {
.ai-loading view:nth-child(1) {
animation-delay: -0.32s;
}
.ai-loading span:nth-child(2) {
.ai-loading view:nth-child(2) {
animation-delay: -0.16s;
}
.ai-loading span:nth-child(3) {
.ai-loading view:nth-child(3) {
animation-delay: 0s;
}
</style>