imatrix-ui 2.9.15-dw-tmp1 → 2.9.15-dw-tmp2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "imatrix-ui",
3
- "version": "2.9.15-dw-tmp1",
3
+ "version": "2.9.15-dw-tmp2",
4
4
  "description": "前端组件库:表格、表单、组织结构树等",
5
5
  "main": "lib/super-ui.umd.min.js",
6
6
  "private": false,
@@ -1824,6 +1824,7 @@ export default {
1824
1824
  })
1825
1825
  },
1826
1826
  doSearch(searchForm) {
1827
+ console.log('doSearch----searchForm111=', searchForm)
1827
1828
  // 修改当前页为第1页
1828
1829
  this.currentPage = 1
1829
1830
  console.log('doSearch----searchForm=', searchForm)
@@ -2092,12 +2093,14 @@ export default {
2092
2093
  }
2093
2094
  },
2094
2095
  handleCurrentChange(val) {
2096
+ console.log('handleCurrentChange======val=', val)
2095
2097
  if (!this.options || !this.options.isPageShow) {
2096
2098
  // 翻页操作会导致筛选项发生变化,所以需要清空已有的
2097
2099
  this.changePage()
2098
2100
  }
2099
2101
  },
2100
2102
  changePage() {
2103
+ console.log('changePage======', this.currentChange)
2101
2104
  // 翻页操作会导致筛选项发生变化,所以需要清空已有的
2102
2105
  this.$refs.superGrid.clearFilter()
2103
2106
  // TODO: 把当前页数、每页条数、查询条件、排序信息传回后台
@@ -2114,6 +2117,7 @@ export default {
2114
2117
  }
2115
2118
  },
2116
2119
  handleSortChange({ column, prop, order }) {
2120
+ console.log('handleSortChange=======')
2117
2121
  if (!this.options || !this.options.isPageShow) {
2118
2122
  let columnSetting = null
2119
2123
  const items = this.visibleColumns.filter(item => {