king
2023-08-08 22c9b94be213ff93064d7c463d82344023ffab1c
src/tabviews/custom/components/card/data-card/index.jsx
@@ -261,15 +261,15 @@
      if (config.$time && !config.setting.laypage) {
        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()
              }, config.setting.delay || 0)
            }
            if (!res || this.loaded) return
            let _data = res.map((item, index) => {
            if (!res.data || this.loaded) return
            let _data = res.data.map((item, index) => {
              item.key = index
              item.$$uuid = item[config.setting.primaryKey] || ''
              item.$Index = index + 1 + ''
@@ -289,9 +289,9 @@
      } else {
        if (!this.loaded) {
          Api.getLCacheConfig(config.uuid, 0).then(res => {
            if (!res || this.loaded) return
            if (!res.data || this.loaded) return
    
            let _data = res.map((item, index) => {
            let _data = res.data.map((item, index) => {
              item.key = index
              item.$$uuid = item[config.setting.primaryKey] || ''
              item.$Index = index + 1 + ''