zhuliu 8 months ago
parent
commit
79c4f2551f

+ 13 - 2
src/views/components/import/conditionImport/internal_search/searchResult_internal.vue

@@ -773,7 +773,10 @@ export default {
         size: this.queryParams.size, //每页返回条数(最多 50 条)
         size: this.queryParams.size, //每页返回条数(最多 50 条)
         projectId: this.innerProjectId,
         projectId: this.innerProjectId,
         searchQuery: this.condition.searchCondition || '',//检索条件
         searchQuery: this.condition.searchCondition || '',//检索条件
-        semanteme:this.semanteme
+        semanteme:this.semanteme,
+        //专利号检索
+        numberQuery:this.condition.NO,
+        redisKey:this.condition.redisKey,
       }
       }
       if(this.queryParams.OrderBy && this.queryParams.OrderByType){
       if(this.queryParams.OrderBy && this.queryParams.OrderByType){
         var orderDTOList = [
         var orderDTOList = [
@@ -806,6 +809,11 @@ export default {
           this.tableData = records
           this.tableData = records
           this.$store.commit("SET_PATENT_RECORDS", records);
           this.$store.commit("SET_PATENT_RECORDS", records);
           this.loading = false;
           this.loading = false;
+          if(response.data.redisKey && !this.condition.redisKey){
+            this.condition.redisKey = response.data.redisKey
+            this.condition.NO=''
+            this.reLoadQuery()
+          }
         }
         }
       }).catch((error) => {
       }).catch((error) => {
           this.loading = false;
           this.loading = false;
@@ -882,7 +890,10 @@ export default {
           data: JSON.stringify(this.condition),
           data: JSON.stringify(this.condition),
           noveltySearch:this.noveltySearch,
           noveltySearch:this.noveltySearch,
           projectId:this.projectId,
           projectId:this.projectId,
-          retrieveRecordId:this.queryParams.retrieveRecordId
+          retrieveRecordId:this.queryParams.retrieveRecordId,
+          outside:this.outside,
+          innerProjectId:this.innerProjectId,
+          semanteme:this.semanteme
         }
         }
       })
       })
     },
     },

+ 4 - 1
src/views/components/import/conditionImport/searchResult.vue

@@ -618,7 +618,10 @@ export default {
           data: JSON.stringify(this.condition),
           data: JSON.stringify(this.condition),
           noveltySearch:this.noveltySearch,
           noveltySearch:this.noveltySearch,
           projectId:this.projectId,
           projectId:this.projectId,
-          retrieveRecordId:this.queryParams.retrieveRecordId
+          retrieveRecordId:this.queryParams.retrieveRecordId,
+          outside:this.outside,
+          innerProjectId:this.innerProjectId,
+          semanteme:this.semanteme
         }
         }
       })
       })
     },
     },