添加新文件

This commit is contained in:
hejiangming
2025-05-07 10:09:55 +08:00
parent 007b002b81
commit 7e7a096151
776 changed files with 92603 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
import request from '@/utils/request.js'; // 引入封装的方法
// 查询绑定的银行卡
export function getBankList(data) {
// return request.post('/common/getSmsCode',qs.stringify(params));
return request({
url: "/bankcard/getList",
method: "get",
data,
});
}
// 绑定银行卡
export function bindBank(data) {
// return request.post('/common/getSmsCode',qs.stringify(params));
return request({
url: "/bankcard/bind",
method: "post",
data,
});
}
// 解绑银行卡
export function unbind(data) {
// return request.post('/common/getSmsCode',qs.stringify(params));
return request({
url: "/bankcard/unbind",
method: "post",
data,
});
}