Explorar o código

航班视图合计、高级查询修改key清除value

zhongxiaoyu hai 1 ano
pai
achega
02c7f9c804

+ 2 - 4
src/views/newQuery/components/search.vue

@@ -269,10 +269,8 @@ export default {
         // const datas = this.tableColMunt.filter(item => item.columnName == value)
         const { dataType, options } = this.columnSet[value]
         // const { dataType, options } = datas[0]
-        //下拉框发生改变清空之前的数据
-        this.paramsForm.params.forEach(item => {
-          item.paramValue = ''
-        })
+        // 下拉框发生改变清空之前的数据
+        this.paramsForm.params[rowIndex].paramValue = ''
         if (dataType === 'date') {
           this.paramsTableCols[1].options[rowIndex] = comparisonOperatorOptions
             .slice(0, 5)

+ 2 - 1
src/views/newQuery/components/table.vue

@@ -520,7 +520,8 @@ export default {
       const sums = []
       columns.forEach((column, index) => {
         if (index === 0) {
-          sums[index] = '合计:' + this.tableData.length
+          sums[index] = '合计:' + data.length
+          return
         }
         this.tableCath.forEach(p => {
           if (column.property == p.columnName && p.needCount) {