Files
electricity_bill_calc_wx/utils/data.js
2025-11-09 17:33:32 +08:00

19 lines
703 B
JavaScript

export const getRechargeOperateType = (num) => {
const types = ["充值", "冲正", "退费"]
return types[num];
}
export const payWays = ["现金", "银行卡", "支付宝", "微信", "云闪付","对公转账", "小程序-微信支付"]
export const getRechargeOperateWay = (num) => {
return payWays[num];
}
export const feeType = ['华昌宝能收费', "物业代收1", "物业代收2", "物业代收线损"]
export const meterType = ['商户电表', '园区电表', '公摊电表']
export const noticeFlowType = ['拆表', '装表', '开户', "解绑", "绑定"]
export const noticeFlowStatus = ["已确认", "待确认"]
export const meterMode = ["预付费", "强控", "临时强控"]