zym2525
2025-02-23 797fa07355a312a06541ca105a00928e95dbded6
packages/components/src/utils/lifeRechargeConstants.ts
@@ -46,4 +46,34 @@
    [IspCode.dianxin]: '中国电信',
    [IspCode.liantong]: '中国联通',
  };
  export enum ElectricType {
    /**国家电网 */
    guowang = 'guowang',
    /**南方电网 */
    nanwang = 'nanwang',
  }
  export const ElectricTypeText = {
    [ElectricType.guowang]: '国家电网',
    [ElectricType.nanwang]: '南方电网',
  };
  export enum ElectricAccountType {
    /**住宅 */
    house = 'house',
    /**企事业 */
    enterprise = 'enterprise',
    /**店铺 */
    shop = 'shop',
    /**店铺-不建议使用 */
    nanwashopng = 'nanwashopng',
  }
  export const ElectricAccountTypeText = {
    [ElectricAccountType.house]: '住宅',
    [ElectricAccountType.enterprise]: '企事业',
    [ElectricAccountType.shop]: '店铺',
    [ElectricAccountType.nanwashopng]: '店铺-不建议使用',
  };
}