Browse Source

网格化事件页面

master
YUJT 3 years ago
parent
commit
7d27118c11
  1. 27
      src/views/modules/productIframe/cabaseinfo-wghSjxxb.vue

27
src/views/modules/productIframe/cabaseinfo-wghSjxxb.vue

@ -0,0 +1,27 @@
<template>
<div class="">
<iframe :src="URL" class="iframe" frameborder="no"/>
</div>
</template>
<script>
import Cookies from 'js-cookie'
export default {
data () {
return {
URL: ''
}
},
created () {
this.URL = `${window.SITE_CONFIG['iframeBaseUrl']}/cabaseinfo-wghSjxxb?token=${Cookies.get('token')}`
},
methods: {
}
}
</script>
<style lang="scss" scoped>
.iframe {
width: 100%;
min-height: calc(100vh - 123px);
}
</style>
Loading…
Cancel
Save