12345678910111213141516171819202122232425262728 |
- <template>
- <div>
- <!-- <iframe :src="envUrl" style="width:100%;" scrolling="no" frameborder="0" :height="iframeHeight" /> -->
- </div>
- </template>
- <script>
- // import { host } from '@/apiConfig/requestIP.js'
- export default {
- name: 'ENV',
- data() {
- return {
- show: true
- // iframeHeight: '720px'
- }
- },
- computed: {
- envUrl() {
- return 'http://zhihui-api.intra.didichuxing.com/'
- }
- },
- mounted() {
- window.open('http://zhihui-api.intra.didichuxing.com/', '_blank')
- // var height = window.innerHeight > document.body.clientHeight ? window.innerHeight : document.body.clientHeight
- // this.iframeHeight = height + 'px'
- }
- }
- </script>
|