12345678910111213141516171819202122232425262728 |
- <template>
- <IframeWrap
- class="cloud-school"
- :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()
- const url = ref(`https://app.4dage.com/projects/wxcs/web/index.html?platform=h5&name=${store.state.userInfo.userName}&scene=0`)
- </script>
- <style lang="less" scoped>
- .cloud-school{
- }
- </style>
|