ItemDataUtils.js 184 B

12345678910
  1. let ItemDataUtils = {
  2. /**
  3. * 物品配置
  4. */
  5. getConfig (itemId) {
  6. return G.CfgMgr.ResItemConfig.getByMainKey(itemId);
  7. },
  8. }
  9. module.exports = ItemDataUtils;