king
2024-02-28 2dadcbe39d6211bb08139cd600d6b8c9ca92d508
src/tabviews/custom/components/table/normal-table/index.jsx
@@ -390,6 +390,7 @@
      this.setState({
        data: [],
        selectedData: [],
        loading: false,
        total: 0
      })
      
@@ -428,13 +429,11 @@
    let _orderBy = orderBy || setting.order
    let param = UtilsDM.getQueryDataParams(setting, searches, _orderBy, pageIndex, pageSize, BID)
    if (param.func === 'sPC_Get_TableData') {
      this.requestId = param.timestamp
    }
    this.requestId = config.uuid + new Date().getTime()
    let result = await Api.genericInterface(param)
    let result = await Api.genericInterface(param, '', '', this.requestId)
    if (result.status) {
      if (result.timestamp_back && this.requestId !== result.timestamp_back) return
      if (result.$requestId && this.requestId !== result.$requestId) return
      
      this.loaded = true
      if (config.$cache && type === 'init') {