src/api/index.js
@@ -339,7 +339,6 @@ getLCacheConfig (menuid, minutes) { return new Promise((resolve, reject) => { if (window.GLOB.IndexDB) { let limit = minutes ? moment().subtract(minutes, 'minutes').format('YYYY-MM-DD HH:mm:ss') : '' CacheUtils.getIndexDBCacheConfig(menuid).then(res => { if (res && res.LongParam) { @@ -348,9 +347,6 @@ resolve({data: null, valid: false}) } }) } else { resolve({data: null, valid: false}) } }) }