|
@@ -120,7 +120,6 @@ export default defineComponent({
|
|
studentRegisterStore.setShoolId(route.query.sId as any);
|
|
studentRegisterStore.setShoolId(route.query.sId as any);
|
|
const countDownRef = ref();
|
|
const countDownRef = ref();
|
|
const mstickyRef = ref();
|
|
const mstickyRef = ref();
|
|
- const isCatchTip = localStorage.getItem('isCatchTip');
|
|
|
|
const forms = reactive({
|
|
const forms = reactive({
|
|
schoolId: route.query.sId as any,
|
|
schoolId: route.query.sId as any,
|
|
paymentType: '', // 支付类型
|
|
paymentType: '', // 支付类型
|
|
@@ -161,7 +160,7 @@ export default defineComponent({
|
|
cancelButtonText: '取消',
|
|
cancelButtonText: '取消',
|
|
messageAlign: 'center' as 'left' | 'center' | 'right',
|
|
messageAlign: 'center' as 'left' | 'center' | 'right',
|
|
|
|
|
|
- tipStatus: isCatchTip ? false : true,
|
|
|
|
|
|
+ tipStatus: true,
|
|
dialogConfirmStatus: false,
|
|
dialogConfirmStatus: false,
|
|
contract_sign: false, // 是否实名认证
|
|
contract_sign: false, // 是否实名认证
|
|
countDownTimePay: 60 * 1000,
|
|
countDownTimePay: 60 * 1000,
|
|
@@ -1311,9 +1310,9 @@ export default defineComponent({
|
|
秒
|
|
秒
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- {/* <div class={styles.timerTip}>
|
|
|
|
|
|
+ <div class={styles.timerTip}>
|
|
为了确保您能顺利参与学习,请在规定时间内报名。
|
|
为了确保您能顺利参与学习,请在规定时间内报名。
|
|
- </div> */}
|
|
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
)}
|
|
|
|
|
|
@@ -1625,7 +1624,10 @@ export default defineComponent({
|
|
forms.joinType === 'digitalize' && styles.selected
|
|
forms.joinType === 'digitalize' && styles.selected
|
|
]}></i>
|
|
]}></i>
|
|
|
|
|
|
- {forms.tipStatus && <i class={styles.showBg}></i>}
|
|
|
|
|
|
+ {/* {forms.tipStatus && <i class={styles.showBg}></i>} */}
|
|
|
|
+ {forms.joinType === 'digitalize' && (
|
|
|
|
+ <i class={styles.showBg}></i>
|
|
|
|
+ )}
|
|
</div>
|
|
</div>
|
|
),
|
|
),
|
|
title: () => (
|
|
title: () => (
|
|
@@ -1997,8 +1999,6 @@ export default defineComponent({
|
|
}
|
|
}
|
|
} else if (otherParams.otherType === 'payment') {
|
|
} else if (otherParams.otherType === 'payment') {
|
|
forms.joinType = 'tradition';
|
|
forms.joinType = 'tradition';
|
|
- forms.tipStatus = false;
|
|
|
|
- localStorage.setItem('isCatchTip', '1');
|
|
|
|
}
|
|
}
|
|
}}
|
|
}}
|
|
onConfirm={async () => {
|
|
onConfirm={async () => {
|