Browse Source

bug修复

chenrui 3 years ago
parent
commit
1084c961b0
2 changed files with 1 additions and 4 deletions
  1. 1 0
      src/layouts/PageView.vue
  2. 0 4
      src/views/purchasingManagement/purchaseOrder/edit.vue

+ 1 - 0
src/layouts/PageView.vue

@@ -133,6 +133,7 @@ export default {
       height: 100%;
       >div{
         height: 100%;
+        overflow: auto;
       }
     }
     .link {

+ 0 - 4
src/views/purchasingManagement/purchaseOrder/edit.vue

@@ -580,17 +580,13 @@ export default {
     }
   },
   mounted () {
-    console.log(555)
     if (!this.$store.state.app.isNewTab) { // 页签刷新时调用
-      console.log(666)
       this.pageInit()
     }
   },
   activated () {
     // 如果是新页签打开或者进入新的子页(例:存在列表第2条数据编辑页页签时再打开第4条数据的编辑页),则重置当前页面
-    console.log(777)
     if (this.$store.state.app.isNewTab || !this.$store.state.app.isNewSubTab) {
-      console.log(888)
       this.pageInit()
     }
   },