|
@@ -37,7 +37,10 @@ export default defineComponent({
|
|
|
pointVideo: {} as any, // 需要处理有效的时间段
|
|
|
pointVideoTime: 0, // 有效时长
|
|
|
videoSelectId: null, // 选中的编号
|
|
|
- isPageHide: false // 处理页面返回没有刷新的问题
|
|
|
+ isPageHide: false, // 处理页面返回没有刷新的问题
|
|
|
+ parentConferencesNotes: '',
|
|
|
+ orchestraRegisterType: '',
|
|
|
+ status: ''
|
|
|
})
|
|
|
|
|
|
// 播放视频总时长
|
|
@@ -340,22 +343,21 @@ export default defineComponent({
|
|
|
initVideoCount(videoIntervalRef.isActive.value)
|
|
|
|
|
|
await updateStat()
|
|
|
- window.location.href =
|
|
|
- window.location.origin +
|
|
|
- window.location.pathname +
|
|
|
- '/project/preRegister.html?' +
|
|
|
- qs.stringify({
|
|
|
- orchestraId: forms.orchestraId,
|
|
|
- openId: forms.openId
|
|
|
- })
|
|
|
-
|
|
|
- // window.location.href =
|
|
|
- // window.location.origin +
|
|
|
- // '/project/preRegister.html?' +
|
|
|
- // qs.stringify({
|
|
|
- // orchestraId: forms.orchestraId,
|
|
|
- // openId: forms.openId
|
|
|
- // })
|
|
|
+ if (forms.orchestraRegisterType === 'PARENT_TEACHER_REGISTRATION') {
|
|
|
+ window.location.href =
|
|
|
+ window.location.origin +
|
|
|
+ window.location.pathname +
|
|
|
+ '/project/preRegister.html?' +
|
|
|
+ qs.stringify({
|
|
|
+ orchestraId: forms.orchestraId,
|
|
|
+ openId: forms.openId
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ window.location.href =
|
|
|
+ window.location.origin +
|
|
|
+ window.location.pathname +
|
|
|
+ `/#/preApply?id=${forms.orchestraId}`
|
|
|
+ }
|
|
|
} catch (e) {
|
|
|
console.log(e, 'e')
|
|
|
// 还原
|
|
@@ -381,6 +383,8 @@ export default defineComponent({
|
|
|
forms.introductionVideoTime = data.introductionVideoTime
|
|
|
forms.coverImg = data.coverImg
|
|
|
moreTime.value = data.videoBrowseData ? JSON.parse(data.videoBrowseData) : []
|
|
|
+ forms.parentConferencesNotes = data.parentConferencesNotes
|
|
|
+ forms.orchestraRegisterType = data.orchestraRegisterType
|
|
|
|
|
|
const videoDetails = data.videoDetails || []
|
|
|
videoDetails.forEach((video: any) => {
|
|
@@ -495,7 +499,7 @@ export default defineComponent({
|
|
|
</div>
|
|
|
<div class={styles.messageContainer}>
|
|
|
<div class={styles.messageContent}>
|
|
|
- <p>家长您好!</p>
|
|
|
+ {/* <p>家长您好!</p>
|
|
|
<p class={styles.c1}>
|
|
|
请家长们合理安排时间,<span>认真观看</span>家长会内容。在<span>详细了解</span>
|
|
|
所有要求后,有意向让孩子加入乐团的家长,请在<span>明晚20:00前</span>,为孩子完成
|
|
@@ -506,10 +510,10 @@ export default defineComponent({
|
|
|
</p>
|
|
|
<p class={styles.bottom}>
|
|
|
注:乐团于下学期正式开始训练,训练时间下学期开学前另行通知,训练时间会与学校其他社团错开,家长无需担心时间冲突问题。
|
|
|
- </p>
|
|
|
+ </p> */}
|
|
|
+ <div v-html={forms.parentConferencesNotes}></div>
|
|
|
+ <Button class={styles.submitBtn} onClick={onSubmit}></Button>
|
|
|
</div>
|
|
|
-
|
|
|
- <Button class={styles.submitBtn} onClick={onSubmit}></Button>
|
|
|
</div>
|
|
|
</div>
|
|
|
)
|