开始做充值,,调整了首页

This commit is contained in:
2024-04-02 17:32:28 +08:00
parent 3284bea475
commit db6d253898
44 changed files with 676 additions and 141 deletions

9
utils/data.js Normal file
View File

@@ -0,0 +1,9 @@
export const getRechargeOperateType = (num) => {
const types = ["充值", "冲正", "退费"]
return types[num];
}
export const getRechargeOperateWay = (num) => {
const types = ["现金", "银行卡", "支付宝", "微信", "云闪付"]
return types[num];
}