Browse Source

修改备注

zhaoke 1 year ago
parent
commit
dc6dda34e3
1 changed files with 6 additions and 2 deletions
  1. 6 2
      src/views/newQuery/components/table.vue

+ 6 - 2
src/views/newQuery/components/table.vue

@@ -712,10 +712,13 @@ export default {
               })
             }
           }
+        } else {
+          this.headerClick(row, column)
         }
       }
-      this.form.desc = row.remarks || ''
-      this.headerClick(row, column)
+      else {
+        this.headerClick(row, column)
+      }
     },
     // 表格-备注-单元格点击
     headerClick (row, column) {
@@ -723,6 +726,7 @@ export default {
       const path = this.$route.path
       const newPath = (path.endsWith('/in') || path.endsWith('/out')) ? true : false
       if (!newPath && property != 'remarks') return
+      this.form.desc = row.remarks || ''
       this.reamkeFlag = true
       this.reamkeMap = row
     },