Browse Source

排课学员使用昵称

skyblued 2 years ago
parent
commit
a6ed258d44

+ 1 - 1
src/teacher/piano-room/class-arrangement/course-schedule/index.tsx

@@ -29,7 +29,7 @@ export default defineComponent({
   },
   setup(props: any) {
     const students = computed(() => {
-      let list = props.students.map((n: IStudent) => n.realName)
+      let list = props.students.map((n: IStudent) => n.userName)
       return list.join('、')
     })
     return () => {