feat: 上线银行模块

This commit is contained in:
陈淳
2024-03-14 18:32:58 +08:00
parent 069e411dc4
commit e4f89e5a05
11 changed files with 230 additions and 47 deletions

View File

@@ -29,13 +29,12 @@ export function applyingBankCard() {
export function drawMoney(cardId) {
return request({
url: `/bank/draw/${cardId}`,
method: "put",
data: data,
method: "put"
});
}
// 存款
export function delUser(cardId,moneyNum) {
export function depositMoney(cardId,moneyNum) {
return request({
url: `/bank/deposit/${cardId}/${moneyNum}`,
method: "put"