浏览代码

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

zhongxiaoyu 1 年之前
父节点
当前提交
02c7f9c804
共有 2 个文件被更改,包括 4 次插入5 次删除
  1. 2 4
      src/views/newQuery/components/search.vue
  2. 2 1
      src/views/newQuery/components/table.vue

+ 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) {