Merge pull request '增加log 定位列表无法查询问题' (#2) from dev_csw into master

Reviewed-on: http://121.41.2.71:3000/wyw/mh_jy_safe_web/pulls/2
This commit is contained in:
chenshaowei 2026-04-09 15:55:10 +08:00
commit 39f2ff3d74
4 changed files with 7 additions and 1 deletions

View File

@ -422,6 +422,7 @@ class TableBaseComponent extends ComponentBase {
实际加载表数据 实际加载表数据
*/ */
doLoadTableData = (loadParamJson, tableCode, onComplete, onLoadData) => { doLoadTableData = (loadParamJson, tableCode, onComplete, onLoadData) => {
console.log('调用查询实际过程', 6)
const payloadJson = this.getLoadTableDataParams(loadParamJson, tableCode) const payloadJson = this.getLoadTableDataParams(loadParamJson, tableCode)
if (!payloadJson) return if (!payloadJson) return
@ -430,6 +431,7 @@ class TableBaseComponent extends ComponentBase {
} }
const tableConfig = this.getTableConfig({ tableCode }); const tableConfig = this.getTableConfig({ tableCode });
const { api } = tableConfig ? tableConfig : {}; const { api } = tableConfig ? tableConfig : {};
console.log('调用查询实际过程', 7, api)
this.props.dispatch({ this.props.dispatch({
type: 'listPage/getTableData', type: 'listPage/getTableData',

View File

@ -60,6 +60,7 @@ class ListPage extends React.Component {
loadData = (params) => { loadData = (params) => {
if (this.state.loadDataFunc) { if (this.state.loadDataFunc) {
console.log('调用查询中间过程', 5)
if (!this.state.loadDataFunc.length) { if (!this.state.loadDataFunc.length) {
this.directSearchStop = true this.directSearchStop = true
this.directSearchParams = params this.directSearchParams = params
@ -87,6 +88,7 @@ class ListPage extends React.Component {
loadDataFunc: data loadDataFunc: data
}, () => { }, () => {
if (!this.props.preventDefaultSearch || this.directSearchStop) { if (!this.props.preventDefaultSearch || this.directSearchStop) {
console.log('调用查询中间过程', 4)
this.refOfSearch && this.refOfSearch.handleSearch() this.refOfSearch && this.refOfSearch.handleSearch()
} }
}) })

View File

@ -79,6 +79,7 @@ class AdvanceSearch extends Component {
const { search, dispatch } = this.props const { search, dispatch } = this.props
let stopSelfChangeSearch = false let stopSelfChangeSearch = false
let stopSelfExtraSearch = false let stopSelfExtraSearch = false
console.log('共享搜索条件', this.shareKey)
if (this.shareKey) { if (this.shareKey) {
const instances = search.shareIns[this.shareKey] || [] const instances = search.shareIns[this.shareKey] || []
// 同一 filterList 组里面的 Search 组件不共享搜索条件 // 同一 filterList 组里面的 Search 组件不共享搜索条件
@ -297,7 +298,7 @@ class AdvanceSearch extends Component {
*/ */
handleSearch = (self = true) => { handleSearch = (self = true) => {
if (this.setShareIns(self)) return if (this.setShareIns(self)) return
console.log('调用查询开始', 1)
const { onSearch } = this.props const { onSearch } = this.props
onSearch instanceof Function && onSearch() onSearch instanceof Function && onSearch()
} }

View File

@ -161,6 +161,7 @@ class Search extends React.Component {
if (errorLabel) return if (errorLabel) return
const { onSearch } = this.props const { onSearch } = this.props
console.log('调用查询中间过程', 2)
onSearch instanceof Function && onSearch(rule) onSearch instanceof Function && onSearch(rule)
return rule return rule
} }