zhaoke пре 1 година
родитељ
комит
fc2ae0f75a

+ 1 - 1
src/components/SimpleQuery/index.vue

@@ -167,7 +167,7 @@ export default {
                 column: key,
                 comparator: '=',
                 value,
-                connector: '',
+                connector: 'and',
                 left: '(',
                 right: ')'
               }

+ 3 - 0
src/components/SimpleTable/index.vue

@@ -304,6 +304,9 @@ export default {
       const { columns, data } = param
       const sums = []
       columns.forEach((column, index) => {
+        if (index === 0) {
+          sums[index] = '合计:' + this.tableData.length
+        }
         this.tableCols.forEach(p => {
           if (column.property === p.pagecode && p.enablecount) {
             const values = data.map(item => Number(item[column.property]))

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

@@ -113,6 +113,7 @@ export default {
       simpleQueryItem: [], //简易查询表单数据项
       simpleQueryValue: [], //简易查询缓存值
       advancedQueryValue: [], //高级查询缓存值
+      pageSizeDatas: ['outairportpage', 'landairportpage', 'transairportpage']
     }
   },
   computed: {
@@ -821,7 +822,7 @@ export default {
         datacontent,
         event: '0'
       }
-      if (this.selected) {
+      if (this.selected || this.pageSizeDatas.includes(this.$route.path.replace('/', ''))) {
         parmas.size = 9999
       }
       try {
@@ -841,7 +842,7 @@ export default {
         this.page--
         this.noMore = true
       }
-      if (this.selected) {
+      if (this.selected || this.pageSizeDatas.includes(this.$route.path.replace('/', ''))) {
         this.noMore = true
       }
       this.loading = false