zhuliu пре 1 година
родитељ
комит
11e6fa9d40

+ 5 - 5
src/views/components/import/conditionImport/searchResult.vue

@@ -430,11 +430,11 @@ export default {
         var params = {
           appNo: item.rowApplicationNo,
         }
-        // this.$api.getPictureGuid(params).then(response => {
-        //   if (response.code == 200) {
-        //     this.$set(item, 'pictureGuid', response.data)
-        //   }
-        // })
+        this.$api.getPictureGuid(params).then(response => {
+          if (response.code == 200) {
+            this.$set(item, 'pictureGuid', response.data)
+          }
+        })
         this.$api.getLegalStatus(params).then(response => {
           if (response.code == 200) {
             this.$set(item, 'legalStatus', response.data)

+ 10 - 10
src/views/project/patentCollection/components/views/Table.vue

@@ -138,16 +138,16 @@ export default {
   },
   methods: {
     showPopover(row){
-      if(this.outside && !row.showPopover){
-        var params = {
-          appNo: row.rowApplicationNo,
-        }
-        this.$api.getPictureGuid(params).then(response => {
-          if (response.code == 200) {
-            this.$set(row, 'pictureGuid', response.data)
-          }
-        })
-      }
+      // if(this.outside && !row.showPopover){
+      //   var params = {
+      //     appNo: row.rowApplicationNo,
+      //   }
+      //   this.$api.getPictureGuid(params).then(response => {
+      //     if (response.code == 200) {
+      //       this.$set(row, 'pictureGuid', response.data)
+      //     }
+      //   })
+      // }
       this.$set(row,'showPopover',true)
       
     },