浏览代码

新增第三方

zhaoke 1 年之前
父节点
当前提交
b796278685
共有 1 个文件被更改,包括 36 次插入0 次删除
  1. 36 0
      src/views/otherPage/index.vue

+ 36 - 0
src/views/otherPage/index.vue

@@ -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>