king
2023-08-14 cc20b3cfe18b36c7b0f75937f88679eb031ecc6f
src/tabviews/custom/components/chart/antv-dashboard/index.jsx
@@ -146,7 +146,7 @@
    if (config.timer) {
      this.timer = new TimerTask()
      this.timer.init(config.uuid, config.timer, config.timerRepeats, () => {
        this.loadData(true)
        this.loadData('timer')
      })
    }
@@ -175,15 +175,15 @@
      if (config.$time) {
        if (!this.loaded) {
          Api.getLCacheConfig(config.uuid, config.$time).then(res => {
            if (!res && config.setting.onload === 'true') {
            if (!res.valid && config.setting.onload === 'true') {
              setTimeout(() => {
                this.loadData()
                this.loadData('init')
              }, config.setting.delay || 0)
            }
  
            if (!res || this.loaded) return
            if (!res.data || this.loaded) return
            this.data = res
            this.data = res.data
            if (config.subtype !== 'ratioboard') {
              if (Array.isArray(this.data)) {
@@ -200,9 +200,9 @@
      } else {
        if (!this.loaded) {
          Api.getLCacheConfig(config.uuid, 0).then(res => {
            if (!res || this.loaded) return
            if (!res.data || this.loaded) return
    
            this.data = res
            this.data = res.data
            if (config.subtype !== 'ratioboard') {
              if (Array.isArray(this.data)) {
@@ -217,7 +217,7 @@
        if (config.setting.onload === 'true') {
          setTimeout(() => {
            this.loadData()
            this.loadData('init')
          }, config.setting.delay || 0)
        } else if (this.loaded) {
          this.handleData()
@@ -250,10 +250,8 @@
      _data.value = _data[config.plot.valueField] || 0
    }
    if (!is(fromJS(this.data), fromJS(_data))) {
      this.data = _data
      this.handleData()
    }
    this.data = _data
    this.handleData()
    this.loaded = true
@@ -302,7 +300,7 @@
    }, 100)
  }
  async loadData (hastimer) {
  async loadData (type) {
    const { config, arr_field, BID } = this.state
    if (config.setting.supModule && !BID) { // BID 不存在时,不做查询
@@ -331,7 +329,7 @@
      return
    }
    if (!hastimer) {
    if (type !== 'timer') {
      this.setState({
        loading: true
      })
@@ -342,7 +340,7 @@
    let result = await Api.genericInterface(param)
    if (result.status) {
      if (config.$cache && config.setting.onload !== 'false') {
      if (config.$cache && type === 'init') {
        Api.writeCacheConfig(config.uuid, result.data || [])
      }