对接搜索中心

This commit is contained in:
qq787203167
2022-08-19 10:33:11 +08:00
parent b97b8e9cf8
commit 9c878e9cb9
@@ -37,7 +37,7 @@
<div class="search-text-title">
<div class="search-header-left">
<span>{{$t('searchScope')}}</span>
<span>{{queryParamSeach}}</span>
<span>{{queryParam.selectValue}}</span>
</div>
</div>
<div class="box-content">
@@ -128,14 +128,14 @@
loading: false,
fileList: [],
downLoadFileUrl: window._CONFIG['domianPreviewURL'] + '/sys/common/download',
queryParamSeach: '',
mapOne: {},
mapTwo: {},
queryParamOne: {},
searchQueryOne: {},
orderBy: '1',
orderByField: '',
tagList: []
tagList: [],
selectValue: '',
selectValueTwo: ''
}
},
watch: {
@@ -180,86 +180,55 @@
}
},
pageOnChange(page, pageSize) {
this.queryParam = { ...this.queryParamOne, ...this.searchQueryOne }
this.pageNo = page
this.getParagraphInfoList(1)
this.getParagraphInfoList()
},
SizeChange(page, pageSize) {
this.queryParam = { ...this.queryParamOne, ...this.searchQueryOne }
this.pageNo = 1
this.pageSize = pageSize
this.getParagraphInfoList(1)
this.getParagraphInfoList()
},
searchReset() {
this.pageNo = 1
this.queryParamOne = {}
this.queryParam = { ...this.queryParamOne, ...this.searchQueryOne }
this.queryParamSeach = ''
this.getParagraphInfoList(1)
this.getParagraphInfoList()
},
searchQuery() {
this.ParamSeach()
this.queryParam = { ...this.queryParamOne, ...this.searchQueryOne }
this.pageNo = 1
this.getParagraphInfoList(1)
this.getParagraphInfoList()
},
ParamSeach() {
let queryParam = JSON.parse(JSON.stringify(this.searchQueryOne))
if (queryParam[this.selectModel]) {
this.queryParamSeach = this.selectModelName + '' + queryParam[this.selectModel]
} else {
this.queryParamSeach = ''
}
},
searchData(data) {
this.queryParam = {}
this.searchQueryOne = data || {}
this.queryParam = { ...this.queryParamOne, ...data }
this.ParamSeach()
searchData(value) {
this.queryParam.selectValue = value || undefined
this.queryParam.selectValueTwo = undefined
this.pageNo = 1
this.getParagraphInfoList(1)
this.getParagraphInfoList()
},
searchDataTwo(data) {
this.queryParam = {}
this.searchQueryOne = data || {}
this.queryParam = { ...this.queryParamOne, ...data }
this.ParamSeach()
searchDataTwo(value) {
this.queryParam.selectValueTwo = value
this.pageNo = 1
this.getParagraphInfoList(2)
this.getParagraphInfoList()
},
ResetSearch() {
this.queryParam = {}
this.queryParamOne = {}
this.searchQueryOne = {}
this.checkboxText = []
this.selectedRowKeys = []
this.ParamSeach()
this.pageNo = 1
this.getParagraphInfoList(1)
this.getParagraphInfoList()
},
getParagraphInfoList(num) {
let queryParam = JSON.parse(JSON.stringify(this.queryParam))
getParagraphInfoList() {
let queryParamOne = Object.assign(this.queryParam, this.queryParamOne)
let queryParam = JSON.parse(JSON.stringify(queryParamOne))
Object.keys(queryParam).forEach(val => {
if (queryParam[val] instanceof Array) {
queryParam[val] = queryParam[val].join(',')
}
if (val.includes('_name')) {
delete queryParam[val]
}
})
this.mapTwo = {}
if (num == 1) {
this.mapOne = queryParam
} else if (num == 2) {
this.mapTwo = queryParam
let checkboxText = JSON.parse(JSON.stringify(this.checkboxText))
this.mapTwo.ids = checkboxText.join(',')
}
let checkboxText = JSON.parse(JSON.stringify(this.checkboxText))
let query = {
pageNo: this.pageNo,
pageSize: this.pageSize,
mapOne: this.mapOne,
mapTwo: this.mapTwo
ids: checkboxText.join(','),
...queryParam
}
this.loading = true
postAction(this.url.getParagraphInfoList, query).then((res) => {