|
@@ -294,7 +294,8 @@ export default defineComponent({
|
|
|
forms.regionCode,
|
|
|
forms.currentClassText,
|
|
|
studentInfo.currentGradeNum,
|
|
|
- studentInfo.currentClass
|
|
|
+ studentInfo.currentClass,
|
|
|
+ studentInfo.password
|
|
|
],
|
|
|
() => {
|
|
|
// 缓存数据到 localStorage
|
|
@@ -313,7 +314,8 @@ export default defineComponent({
|
|
|
regionCode: forms.regionCode,
|
|
|
currentClassText: forms.currentClassText,
|
|
|
currentGradeNum: studentInfo.currentGradeNum,
|
|
|
- currentClass: studentInfo.currentClass
|
|
|
+ currentClass: studentInfo.currentClass,
|
|
|
+ password: studentInfo.password
|
|
|
})
|
|
|
);
|
|
|
}
|
|
@@ -329,6 +331,7 @@ export default defineComponent({
|
|
|
localForm = JSON.parse(localForm);
|
|
|
|
|
|
studentInfo.phone = localForm.phone;
|
|
|
+
|
|
|
studentInfo.nickname = localForm.name;
|
|
|
studentInfo.gender = localForm.gender;
|
|
|
forms.schoolAreaId = localForm.schoolAreaId;
|
|
@@ -341,6 +344,7 @@ export default defineComponent({
|
|
|
forms.currentClassText = localForm.currentClassText;
|
|
|
studentInfo.currentGradeNum = localForm.currentGradeNum;
|
|
|
studentInfo.currentClass = localForm.currentClass;
|
|
|
+ studentInfo.password = localForm.password;
|
|
|
|
|
|
if (forms.cityCode && forms.regionCode && forms.provinceCode) {
|
|
|
getSchoolAreaList();
|
|
@@ -724,7 +728,9 @@ export default defineComponent({
|
|
|
<img class={styles.title} src={loginSuccess} />
|
|
|
|
|
|
<div class={styles.content} style={{ textAlign: 'center' }}>
|
|
|
- 乐器的实际发放将以基金会最终的审核结果为准。
|
|
|
+ 乐器的实际发放将以基金会最终的
|
|
|
+ <br />
|
|
|
+ 审核结果为准。
|
|
|
</div>
|
|
|
<div class={styles.pBtnGroup}>
|
|
|
<Button
|