| 12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <IframeWrap
- class="charity-hall"
- :url="url"
- :need-back-btn="false"
- @back="onClickBack"
- />
- </template>
- <script setup>
- import { ref, computed, watch, onMounted, inject } from "vue"
- import { useRoute, useRouter } from "vue-router"
- import { useStore } from "vuex"
- import IframeWrap from '@/components/IframeWrap.vue'
- const route = useRoute()
- const router = useRouter()
- const store = useStore()
- const $env = inject('$env')
- // 运营埋点
- store.dispatch('recordPageVisitIfNeeded', {
- pageId: 5,
- })
- const url = ref(`${$env.VUE_APP_DEPLOY_ORIGIN}/pc/index.html?platform=h5&name=${store.state.userInfo.userName}&scene=1`)
- </script>
- <style lang="less" scoped>
- .charity-hall{
- }
- </style>
|