feat:性能优化

This commit is contained in:
2026-07-25 09:12:36 +08:00
parent 3eba959b48
commit 9ab39d2aec
138 changed files with 232 additions and 1511 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,
});
}