|
@@ -31,7 +31,18 @@ export default defineComponent({
|
|
|
// 是否开启微信登录(测试使用)默认为false
|
|
|
testIsWeixin: false
|
|
|
})
|
|
|
-
|
|
|
+ const showPopup = ref(false)
|
|
|
+ const noPaymentList = ref(['1656572729093021697', '1656572205262200834', '1656488025144713217'])
|
|
|
+ console.log(
|
|
|
+ '提示乐团报名失败',
|
|
|
+ route.query.id,
|
|
|
+ noPaymentList.value.indexOf(route.query.id as string)
|
|
|
+ )
|
|
|
+ if (route.query.id && noPaymentList.value.indexOf(route.query.id as string) != -1) {
|
|
|
+ console.log('提示乐团报名失败')
|
|
|
+ // 提示乐团报名失败
|
|
|
+ showPopup.value = true
|
|
|
+ }
|
|
|
const onNext = async (name: string) => {
|
|
|
if (name === 'payment') {
|
|
|
await getRegisterStatus()
|
|
@@ -274,6 +285,22 @@ export default defineComponent({
|
|
|
})
|
|
|
}}
|
|
|
/>
|
|
|
+
|
|
|
+ <Popup
|
|
|
+ v-model:show={showPopup.value}
|
|
|
+ round
|
|
|
+ style={{ width: '88%', marginTop: '-6vh' }}
|
|
|
+ closeOnClickOverlay={false}
|
|
|
+ class={styles.wxPopupDialog}
|
|
|
+ >
|
|
|
+ <div class={styles.popupContainer}>
|
|
|
+ <p class={styles.title1}>温馨提示</p>
|
|
|
+ <p class={styles.popupTips}>
|
|
|
+ 尊敬的用户,为了进一步提升服务质量 ,<br />
|
|
|
+ 系统需临时升级,完成后将以短信的形式通知, 带来的不便敬请谅解,感谢您的支持!
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+ </Popup>
|
|
|
</div>
|
|
|
)
|
|
|
}
|