mirror of
https://github.com/yudaocode/yudao-ui-admin-vue3.git
synced 2026-04-30 22:41:45 +00:00
7 lines
209 B
TypeScript
7 lines
209 B
TypeScript
import request from '@/config/axios'
|
|
|
|
/** 获取钱包充值金额 */
|
|
export const getWalletRechargePrice = async () => {
|
|
return await request.get<number>({ url: `/statistics/pay/wallet-recharge-price` })
|
|
}
|