You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
552 B

<template>
<div class="mobile-page">
<iframe class="iframe-page" :src="h5Src"></iframe>
</div>
</template>
<script>
import { getToken } from '@/utils/auth'
export default {
data() {
return {
h5Src: `http://172.16.34.83:7003/?t=${getToken()}`,
}
},
created(){}
}
</script>
<style lang="scss">
.mobile-page{
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
.iframe-page{
border: 1px solid #ccc;
border-radius: 10px;
width: 375px;
height: 720px;
}
}
</style>