|
@@ -9,6 +9,7 @@ import { state } from '@/state'
|
|
|
import dayjs from 'dayjs'
|
|
|
import ColPopup from '@/components/col-popup'
|
|
|
import UserAuth from '../order-detail/userAuth'
|
|
|
+import ColHeader from '@/components/col-header'
|
|
|
|
|
|
export default defineComponent({
|
|
|
name: 'award-activity',
|
|
@@ -75,6 +76,8 @@ export default defineComponent({
|
|
|
}
|
|
|
},
|
|
|
async onAuthSuccess() {
|
|
|
+ this.popupShow = false
|
|
|
+ this.status = false
|
|
|
await this.getUserRegisterProtocol()
|
|
|
this.onGetAward()
|
|
|
},
|
|
@@ -108,6 +111,7 @@ export default defineComponent({
|
|
|
render() {
|
|
|
return (
|
|
|
<div class={styles.award}>
|
|
|
+ <ColHeader />
|
|
|
{this.dataShow ? (
|
|
|
<List
|
|
|
class={styles.videoList}
|
|
@@ -183,6 +187,9 @@ export default defineComponent({
|
|
|
type="primary"
|
|
|
block
|
|
|
color="linear-gradient(180deg, #59E5D5 0%, #2DC7AA 100%)"
|
|
|
+ onClick={() => {
|
|
|
+ this.popupShow = true
|
|
|
+ }}
|
|
|
>
|
|
|
立即认证
|
|
|
</Button>
|