17 lines
596 B
JavaScript
17 lines
596 B
JavaScript
/**
|
|
* index中汇总了前端启动需要的引用配置
|
|
*/
|
|
import attrUpdateMatrix from './attrUpdateMatrix';
|
|
import { actionDefDict } from '../oak-app-domain/ActionDefDict';
|
|
import { selectFreeEntities, authDeduceRelationMap, updateFreeDict } from './relation';
|
|
import cacheSavedEntities from './cache';
|
|
export default {
|
|
attrUpdateMatrix,
|
|
actionDefDict,
|
|
authDeduceRelationMap,
|
|
selectFreeEntities,
|
|
updateFreeDict,
|
|
cacheSavedEntities,
|
|
// cacheKeepFreshPeriod: 600 * 1000, // cache默认对缓存对象的刷新间隔时长(在这个间隔内不刷新)
|
|
};
|