moreShopAdmin/src/api/store_extract.ts

32 lines
973 B
TypeScript
Raw Normal View History

2024-05-31 17:16:19 +08:00
import request from '@/utils/request'
// 门店提现表列表
export function apiStoreExtractLists(params: any) {
return request.get({ url: '/store_extract/storeextract/lists', params })
}
// 添加门店提现表
export function apiStoreExtractAdd(params: any) {
return request.post({ url: '/store_extract/storeextract/add', params })
}
2024-10-29 16:33:06 +08:00
// 确认提现
export function apiStoreExtractEnter(params: any) {
return request.post({ url: '/store_extract/storeextract/enter', params })
}
2024-05-31 17:16:19 +08:00
// 编辑门店提现表
export function apiStoreExtractEdit(params: any) {
return request.post({ url: '/store_extract/storeextract/edit', params })
}
// 删除门店提现表
export function apiStoreExtractDelete(params: any) {
return request.post({ url: '/store_extract/storeextract/delete', params })
}
// 门店提现表详情
export function apiStoreExtractDetail(params: any) {
return request.get({ url: '/store_extract/storeextract/detail', params })
2024-10-29 16:33:06 +08:00
}