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