12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <view class="iframe-content">
- <headContent borderBottom>
- <template #left>
- <reverse-back />
- </template>
- <template #content>
- <view class="haed-title">
- </view>
- </template>
- </headContent>
- <view class="iframe-box">
- <iframe :src="iframeUrl" frameborder="0"></iframe>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- iframeUrl: ''
- };
- },
- onLoad(opt) {
- this.iframeUrl = opt.link
- }
- }
- </script>
- <style lang="scss">
- </style>
|