|
@@ -306,7 +306,12 @@ export default {
|
|
const specialty = (await this.$http.get(
|
|
const specialty = (await this.$http.get(
|
|
"/api/ecs_exam_work/exam_student/specialtyNameList/"
|
|
"/api/ecs_exam_work/exam_student/specialtyNameList/"
|
|
)).data;
|
|
)).data;
|
|
- const user = { ...data, ...student, specialty: specialty.join() };
|
|
|
|
|
|
+ const user = {
|
|
|
|
+ ...data,
|
|
|
|
+ ...student,
|
|
|
|
+ specialty: specialty.join(),
|
|
|
|
+ schoolDomain: this.schoolDomain
|
|
|
|
+ };
|
|
this.updateUser(user);
|
|
this.updateUser(user);
|
|
window.localStorage.setItem("user-for-reload", JSON.stringify(user));
|
|
window.localStorage.setItem("user-for-reload", JSON.stringify(user));
|
|
|
|
|