|
@@ -673,12 +673,15 @@ export default {
|
|
|
//简易查询-确定
|
|
|
queryValue (dataRules) {
|
|
|
const arr = [...dataRules]
|
|
|
- if (arr && arr.length) {
|
|
|
+ const arrmap = {}
|
|
|
+ if (arr?.length) {
|
|
|
arr.forEach(item => {
|
|
|
- item.value = typeof item.value == 'string' ? item.value.replace(/\s*/g, "") : item.value
|
|
|
+ const { column, value } = item
|
|
|
+ item.value = typeof value == 'string' ? value.replace(/\s*/g, "") : value
|
|
|
+ arrmap[column] = value
|
|
|
})
|
|
|
}
|
|
|
- this.defaultfilter = arr.length ? arr : { 1: 1 }
|
|
|
+ this.defaultfilter = Object.keys(arrmap).length ? arrmap : arr.length ? arr : { 1: 1 }
|
|
|
this.simpleQueryValue = arr
|
|
|
this.queryTableData(true)
|
|
|
},
|