123456789101112131415161718192021222324252627282930313233 |
- <template>
- <IframeWrap
- class="square-view"
- :url="url"
- :need-back-btn="false"
- @back="onClickBack"
- />
- </template>
- <script setup>
- import { ref, computed, watch, onMounted } 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()
- // 运营埋点
- store.dispatch('recordPageVisitIfNeeded', {
- pageId: 3,
- })
- const url = ref(`http://app.4dage.com/projects/wxcs/pc/web/index.html?platform=h5&name=${store.state.userInfo.userName}&scene=2`)
- </script>
- <style lang="less" scoped>
- .square-view{
- }
- </style>
|