|
@@ -0,0 +1,36 @@
|
|
|
+<template>
|
|
|
+ <div class="otherPage">
|
|
|
+ <iframe :src="httpUrl" width="100%" height="100%" frameborder="0"></iframe>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+export default {
|
|
|
+ name: 'OtherPage',
|
|
|
+ data () {
|
|
|
+ return {
|
|
|
+ httpUrl: ''
|
|
|
+ }
|
|
|
+ },
|
|
|
+ mounted () { this.pageInit() },
|
|
|
+ methods: {
|
|
|
+ pageInit () {
|
|
|
+ //获取页面配置
|
|
|
+ const { auth_id } = this.$route.meta
|
|
|
+ const pageAuths = this.$store.state.auth.authArrs ?? []
|
|
|
+ const pageAuthArrs = pageAuths.filter(item => item['pageconfigurationid'] == auth_id)
|
|
|
+ if (!pageAuthArrs.length) return
|
|
|
+ const { defaultfilter } = pageAuthArrs[0]
|
|
|
+ this.httpUrl = defaultfilter
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.otherPage {
|
|
|
+ padding: 20px;
|
|
|
+ height: calc(100vh - 90px);
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+</style>
|