zhaoke 1 年之前
父节点
当前提交
2943a4172d
共有 2 个文件被更改,包括 5 次插入11 次删除
  1. 3 3
      src/views/dataAccessPage/components/accessPageNode.vue
  2. 2 8
      src/views/otherPage/index.vue

+ 3 - 3
src/views/dataAccessPage/components/accessPageNode.vue

@@ -252,9 +252,9 @@ export default {
       const event = this.type == 'add' ? 1 : this.type == 'edit' ? 2 : 3
       data.serviceid = this.msgContent.serviceid
       if (this.type == 'edit') {
-        const { algorithmtype, algorithmlibraryid } = this.nodeForm
-        data.algorithmtype = algorithmtype
-        data.algorithmsourcelibraryid = algorithmlibraryid
+        // const { algorithmtype, algorithmlibraryid } = this.nodeForm
+        // data.algorithmtype = algorithmtype
+        // data.algorithmsourcelibraryid = algorithmlibraryid
         this.tableColumnData(event)
       } else if (this.type == 'add') {
         data.algorithmname = sessionStorage.getItem('nodeTreeTxt') || ''

+ 2 - 8
src/views/otherPage/index.vue

@@ -1,6 +1,6 @@
 <template>
   <div class="otherPage">
-    <iframe :src="httpUrl" width="100%" height="100%" frameborder="0"></iframe>
+    11
   </div>
 </template>
 
@@ -15,13 +15,7 @@ export default {
   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
+
     }
   }
 }