|
@@ -147,12 +147,10 @@ export default {
|
|
|
const examId = localStorage.getItem('examId')
|
|
|
const organId = localStorage.getItem('organId')
|
|
|
const examRegistrationParams = localStorage.getItem("examRegistrationParams") ? JSON.parse(localStorage.getItem("examRegistrationParams")) : null
|
|
|
- const query = this.$route.query
|
|
|
return {
|
|
|
examId: examId,
|
|
|
organId: organId,
|
|
|
examRegistrationParams: examRegistrationParams,
|
|
|
- studentName: query.studentName,
|
|
|
patternPhone: patternPhone,
|
|
|
sheetForm: { // 上拉弹窗
|
|
|
currentType: null, // 当前选择的类型
|
|
@@ -823,7 +821,8 @@ export default {
|
|
|
let form = this.form,
|
|
|
formText = this.formText
|
|
|
let params = {
|
|
|
- studentName: this.studentName,
|
|
|
+ // studentName: localStorage.getItem("studentName"),
|
|
|
+ examStartTime: localStorage.getItem("examStartTime"),
|
|
|
adviserName: form.adviserName,
|
|
|
adviserPhone: form.adviserPhone,
|
|
|
examMusicTheoryId: form.examMusicTheoryId == 999 ? null : form.examMusicTheoryId,
|