king
2023-01-16 97e18fa9b628357fa43013cfefc96eec078de25e
src/tabviews/custom/components/timeline/normal-timeline/index.jsx
@@ -32,6 +32,8 @@
    description: false
  }
  loaded = false
  /**
   * @description 初始化处理
   * 1、 initdata 为打印时使用的数据集
@@ -66,6 +68,7 @@
    }
    if (_data) {
      this.loaded = true
      _data = _data.map((item, index) => {
        item.key = index
        item.$$uuid = item[_config.setting.primaryKey] || ''
@@ -110,7 +113,7 @@
  }
  componentDidMount () {
    const { config, sync } = this.state
    const { config } = this.state
    MKEmitter.addListener('reloadData', this.reloadData)
    MKEmitter.addListener('resetSelectLine', this.resetParentParam)
@@ -124,9 +127,9 @@
      })
    }
    if (config.$cache && (config.setting.sync !== 'true' || sync)) {
    if (config.$cache && !this.loaded) {
      Api.getLCacheConfig(config.uuid).then(res => {
        if (!res) return
        if (!res || this.loaded) return
        this.setState({data: res.map((item, index) => {
          item.key = index
@@ -175,6 +178,8 @@
        item.$Index = index + 1 + ''
        return item
      })
      this.loaded = true
      this.setState({sync: false, data: _data})
    } else if (config.setting.useMSearch && nextProps.mainSearch && !is(fromJS(this.props.mainSearch), fromJS(nextProps.mainSearch))) {
@@ -260,6 +265,7 @@
      this.setState({
        data: [],
      })
      this.loaded = true
      return
    }
@@ -294,6 +300,7 @@
    let result = await Api.genericInterface(param)
    if (result.status) {
      this.loaded = true
      if (config.$cache) {
        Api.writeCacheConfig(config.uuid, result.data || '')
      }