zhuliu пре 1 година
родитељ
комит
0f677230ef

+ 1 - 1
src/views/patentMining/components/view/commonTable.vue

@@ -95,7 +95,7 @@ export default {
   computed: {},
   watch: {
     handleMessage(val) {
-      if (val) {
+      if (val && this.row) {
         this.updateData()
       }
     }

+ 1 - 1
src/views/product/components/view/productTable.vue

@@ -152,7 +152,7 @@ export default {
   },
   watch: {
     handleMessage(val){
-      if(val){
+      if(val && this.row){
         this.updateData()
       }
     }

+ 1 - 1
src/views/project/components/view/table.vue

@@ -106,7 +106,7 @@ export default {
   },
   watch: {
     handleMessage(val){
-      if(val){
+      if(val && this.row){
         this.updateData()
       }
     }

+ 1 - 1
src/views/report/components/view/table.vue

@@ -128,7 +128,7 @@ export default {
   },
   watch: {
     handleMessage(val){
-      if(val){
+      if(val && this.row){
         this.updateData()
       }
     }