zhuliu 1 year ago
parent
commit
1eb746530e

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

@@ -382,7 +382,7 @@ export default {
         retrieveRecordId: this.queryParams.retrieveRecordId,
         retrieveRecordId: this.queryParams.retrieveRecordId,
 
 
         //专利号检索
         //专利号检索
-        NO:this.condition.NO,
+        numberQuery:this.condition.NO,
         redisKey:this.condition.redisKey
         redisKey:this.condition.redisKey
       };
       };
       // console.log(this.$s.getSession('retrieveRecordId'),)
       // console.log(this.$s.getSession('retrieveRecordId'),)
@@ -405,7 +405,7 @@ export default {
           this.$store.commit("SET_PATENT_RECORDS", records);
           this.$store.commit("SET_PATENT_RECORDS", records);
           this.getImageAndStatus()
           this.getImageAndStatus()
           this.loading = false;
           this.loading = false;
-          if(response.data.redisKey){
+          if(response.data.redisKey && !this.condition.redisKey){
             this.condition.redisKey = response.data.redisKey
             this.condition.redisKey = response.data.redisKey
             this.condition.NO=''
             this.condition.NO=''
             this.$router.push({
             this.$router.push({

+ 2 - 1
src/views/project/patentDetails/components/menu.vue

@@ -277,7 +277,8 @@ export default {
         RowCount: queryParams.size, //每页返回条数(最多 50 条)
         RowCount: queryParams.size, //每页返回条数(最多 50 条)
         OrderBy: this.searchOption.OrderBy, //排序字段:“AD”,“PD”,“GD”, “ID”(检索引擎自生成字段,排序顺序固定)
         OrderBy: this.searchOption.OrderBy, //排序字段:“AD”,“PD”,“GD”, “ID”(检索引擎自生成字段,排序顺序固定)
         OrderByType: this.searchOption.OrderByType, //排序方式:“ASC”,“DESC” 即正序倒序
         OrderByType: this.searchOption.OrderByType, //排序方式:“ASC”,“DESC” 即正序倒序
-        retrieveRecordId: this.searchOption.retrieveRecordId
+        retrieveRecordId: this.searchOption.retrieveRecordId,
+        redisKey:this.searchOption.redisKey
       };
       };
       return this.$api.patentSelect(params).then(response=> response.data)
       return this.$api.patentSelect(params).then(response=> response.data)
     },
     },