zhaoke 9 months ago
parent
commit
abec7332af
1 changed files with 8 additions and 6 deletions
  1. 8 6
      src/views/otherPage/views/index.vue

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

@@ -16,12 +16,14 @@ export default {
   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 = 'http://192.168.243.11:2345/abi/ebipro/editrpttpl.do?action=edit&resid=EANA$2$2$1$eqfset_mhrs$173da03d90d740d3903104e432c379f8&id=mhwl&pw=caac@net1'
+      const { auth_id } = this.$route.meta
+      const pageAuths = this.$store.state.auth.authArrs ?? []
+      const pageAuthArrs = pageAuths.filter(item => item['auth_id'] == auth_id)
+      if (!pageAuthArrs.length) return
+      const { auth_comment } = pageAuthArrs[0]
+      if (auth_comment) {
+        this.httpUrl = auth_comment
+      }
     }
   }
 }