|
@@ -138,7 +138,11 @@ export default defineComponent({
|
|
|
}
|
|
|
);
|
|
|
|
|
|
- forms.studentList = data || [];
|
|
|
+ const result = data || [];
|
|
|
+ result.forEach((item: any) => {
|
|
|
+ item.userId = item.activationCodeRecordId;
|
|
|
+ });
|
|
|
+ forms.studentList = result;
|
|
|
|
|
|
let count = 0;
|
|
|
forms.studentList.forEach((item: any) => {
|