feature:代码初始化。

This commit is contained in:
tianyongbao
2024-04-19 09:36:13 +08:00
commit 2f89616d14
454 changed files with 111421 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
import request from '@/utils/request'
// 查询银行卡信息列表
export function listBankcardLend(query) {
return request({
url: '/invest/bankcardlend/list',
method: 'get',
params: query
})
}
// 查询银行卡信息详细
export function getBankcardLend(id) {
return request({
url: '/invest/bankcardlend/' + id,
method: 'get'
})
}
// 新增银行卡信息
export function addBankcardLend(data) {
return request({
url: '/invest/bankcardlend',
method: 'post',
data
})
}
// 修改银行卡信息
export function updateBankcardLend(data) {
return request({
url: '/invest/bankcardlend',
method: 'put',
data
})
}
// 删除银行卡信息
export function delBankcardLend(id) {
return request({
url: '/invest/bankcardlend/' + id,
method: 'delete'
})
}