zhaoke 1 year ago
parent
commit
30cca1a168
1 changed files with 6 additions and 3 deletions
  1. 6 3
      src/views/tablePage/index.vue

+ 6 - 3
src/views/tablePage/index.vue

@@ -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)
     },