|
@@ -37,6 +37,7 @@ export default defineComponent({
|
|
|
showPopupMessage: '请使用微信打开',
|
|
|
wxAppId: '', //
|
|
|
code: '', // 授权code码
|
|
|
+ orchestraPath: 'preApply' as any,
|
|
|
orchestraInfo: {} as any,
|
|
|
hasBuyInstruments: false, // 是否购买商品
|
|
|
// 是否开启微信登录(测试使用)默认为false
|
|
@@ -57,6 +58,9 @@ export default defineComponent({
|
|
|
}
|
|
|
},
|
|
|
mounted() {
|
|
|
+ const { returnUrl } = this.$route.query
|
|
|
+ this.orchestraPath = returnUrl
|
|
|
+
|
|
|
removeAuth()
|
|
|
this.directNext()
|
|
|
|
|
@@ -232,9 +236,14 @@ export default defineComponent({
|
|
|
return (
|
|
|
<div class={styles.login}>
|
|
|
<div class={styles.loginTitle}>
|
|
|
- {/* 您好,
|
|
|
- <br /> 欢迎使用管乐团学员端 */}
|
|
|
- 乐团报名
|
|
|
+ {this.orchestraPath === '/preGoodsApply' ? (
|
|
|
+ '乐团报名'
|
|
|
+ ) : (
|
|
|
+ <>
|
|
|
+ 您好,
|
|
|
+ <br /> 欢迎使用管乐团学员端{' '}
|
|
|
+ </>
|
|
|
+ )}
|
|
|
</div>
|
|
|
<CellGroup class={styles.margin34} border={false}>
|
|
|
<Row style={{ marginBottom: '16px' }}>
|