This commit is contained in:
JiXinHui 2026-01-21 11:57:05 +08:00
commit 57f63e02fa
1 changed files with 15 additions and 2 deletions

View File

@ -20,8 +20,8 @@
@scrolltoupper="handleScrollToUpper" @scrolltoupper="handleScrollToUpper"
> >
<view class="chat-content"> <view class="chat-content">
<!-- 教师信息 --> <!-- vuex_userType === 0 展示 教师信息 -->
<div class="teacher-info-card" v-if="vuex_userType == 0"> <div class="teacher-info-card" v-if="vuex_userType === 0">
<image <image
class="teacher-avatar" class="teacher-avatar"
:src="receiverHeadSculptureUrl" :src="receiverHeadSculptureUrl"
@ -82,6 +82,19 @@
</div> </div>
</div> </div>
<!-- vuex_userType === 1 展示 学生信息 -->
<div class="student-info-card" v-if="vuex_userType === 1">
<!-- <image
class="student-avatar"
:src="headSculptureUrl"
></image>
<div class="student-info">
<div class="student-header">
<div class="student-name">{{ vuex_user.name }}</div>
</div>
</div> -->
</div>
<!-- 上拉刷新loading --> <!-- 上拉刷新loading -->
<view class="loading-more" v-if="isLoading"> <view class="loading-more" v-if="isLoading">
<u-loading mode="circle" color="#4370fe"></u-loading> <u-loading mode="circle" color="#4370fe"></u-loading>