Merge branch 'main' of http://sl.vrgon.com:3000/JiXinHui/YingXingAI
This commit is contained in:
commit
57f63e02fa
|
|
@ -20,8 +20,8 @@
|
|||
@scrolltoupper="handleScrollToUpper"
|
||||
>
|
||||
<view class="chat-content">
|
||||
<!-- 教师信息 -->
|
||||
<div class="teacher-info-card" v-if="vuex_userType == 0">
|
||||
<!-- vuex_userType === 0 展示 教师信息 -->
|
||||
<div class="teacher-info-card" v-if="vuex_userType === 0">
|
||||
<image
|
||||
class="teacher-avatar"
|
||||
:src="receiverHeadSculptureUrl"
|
||||
|
|
@ -82,6 +82,19 @@
|
|||
</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 -->
|
||||
<view class="loading-more" v-if="isLoading">
|
||||
<u-loading mode="circle" color="#4370fe"></u-loading>
|
||||
|
|
|
|||
Loading…
Reference in New Issue