123456789101112131415161718192021222324252627282930 |
- <template>
- <div class="officeCenterBox">
- <iframe :src="iframeUrl"></iframe>
- </div>
- </template>
- <script setup lang="ts">
- defineOptions({
- name: 'CreateNewOffice'
- })
- const { query } = useRoute() // 查询参数
- const iframeUrl: string = query['url']
- </script>
- <style lang="scss" scoped>
- .officeCenterBox {
- margin-top: 20px;
- height: calc(100% - 20px);
- background-color: #fff;
- border-radius: 20px;
- position: relative;
- text-align: center;
- overflow: hidden;
- > iframe {
- width: 100%;
- height: 100%;
- border: 0px;
- }
- }
- </style>
|