imatrix-ui 2.9.15-dw → 2.9.15-dw-tmp1
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
|
@@ -1826,6 +1826,7 @@ export default {
|
|
|
1826
1826
|
doSearch(searchForm) {
|
|
1827
1827
|
// 修改当前页为第1页
|
|
1828
1828
|
this.currentPage = 1
|
|
1829
|
+
console.log('doSearch----searchForm=', searchForm)
|
|
1829
1830
|
// 将toolbar 参数和查询表单参数合并
|
|
1830
1831
|
if (searchForm) {
|
|
1831
1832
|
if (searchForm.length > 0) {
|
|
@@ -1847,6 +1848,7 @@ export default {
|
|
|
1847
1848
|
}
|
|
1848
1849
|
}
|
|
1849
1850
|
}
|
|
1851
|
+
console.log('doSearch----searchForm2=', searchForm)
|
|
1850
1852
|
this.search(searchForm, true)
|
|
1851
1853
|
},
|
|
1852
1854
|
doSearchDialog(searchForm) {
|
|
@@ -1857,6 +1859,7 @@ export default {
|
|
|
1857
1859
|
},
|
|
1858
1860
|
// cs123
|
|
1859
1861
|
search(searchForm, isSearch, parentRowIds) {
|
|
1862
|
+
console.log('doSearch----searchForm3=', searchForm)
|
|
1860
1863
|
// 重新查询列表数据时,抛出refresh事件,供父组件捕获做自己的业务处理
|
|
1861
1864
|
this.$emit('refresh')
|
|
1862
1865
|
const vm = this
|
|
@@ -1912,6 +1915,7 @@ export default {
|
|
|
1912
1915
|
}
|
|
1913
1916
|
resolve(gridData)
|
|
1914
1917
|
} else {
|
|
1918
|
+
console.log('doSearch----searchForm4=', searchForm)
|
|
1915
1919
|
vm.fetchData(vm.getSearchParam(), isSearch, parentRowIds)
|
|
1916
1920
|
.then(data => {
|
|
1917
1921
|
console.log('打印1====', gridParams)
|
|
@@ -1985,6 +1989,7 @@ export default {
|
|
|
1985
1989
|
}
|
|
1986
1990
|
},
|
|
1987
1991
|
getSearchParam() {
|
|
1992
|
+
console.log('doSearch--getSearchParam-----')
|
|
1988
1993
|
const searchParam = {
|
|
1989
1994
|
code: this.code
|
|
1990
1995
|
}
|