|
@@ -228,7 +228,7 @@ export default defineComponent({
|
|
|
<div class={[styles.attInfo, styles.attBackInfo]}>
|
|
|
<div
|
|
|
class={
|
|
|
- teacherAttInfo.value?.signInStatus === 'NORMAL' ? styles.passWrap : styles.goWrap
|
|
|
+ teacherAttInfo.value?.signOutStatus === 'NORMAL' ? styles.passWrap : styles.goWrap
|
|
|
}
|
|
|
>
|
|
|
<div class={styles.attInfoDot}>
|
|
@@ -237,7 +237,7 @@ export default defineComponent({
|
|
|
下课时间<span>{dayjs(teacherAttInfo.value?.endTime).format('HH:mm')}</span>
|
|
|
</p>
|
|
|
<img
|
|
|
- src={teacherAttInfo.value?.signInStatus === 'NORMAL' ? successIcon : errorIcon}
|
|
|
+ src={teacherAttInfo.value?.signOutStatus === 'NORMAL' ? successIcon : errorIcon}
|
|
|
alt=""
|
|
|
/>
|
|
|
</div>
|