moreShopAdmin/src/api/store_finance_flow.ts

30 lines
1.0 KiB
TypeScript
Raw Normal View History

2024-05-31 17:16:19 +08:00
import request from '@/utils/request'
// 门店资金流水表列表
export function apiStoreFinanceFlowLists(params: any) {
return request.get({ url: '/store_finance_flow/storefinanceflow/lists', params })
}
// 添加门店资金流水表
export function apiStoreFinanceFlowAdd(params: any) {
return request.post({ url: '/store_finance_flow/storefinanceflow/add', params })
}
// 编辑门店资金流水表
export function apiStoreFinanceFlowEdit(params: any) {
return request.post({ url: '/store_finance_flow/storefinanceflow/edit', params })
}
// 删除门店资金流水表
export function apiStoreFinanceFlowDelete(params: any) {
return request.post({ url: '/store_finance_flow/storefinanceflow/delete', params })
}
// 门店资金流水表详情
export function apiStoreFinanceFlowDetail(params: any) {
return request.get({ url: '/store_finance_flow/storefinanceflow/detail', params })
2025-02-11 18:00:33 +08:00
}
// 导出
export function apiStoreFinanceFlowExport(params: any) {
return request.post({ url: '/store_finance_flow/storefinanceflow/export', params })
2024-05-31 17:16:19 +08:00
}