feat(custom): 新增支付管理
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-07-18 19:04:51 +08:00
parent 587b11e1ec
commit c157d6024e
3 changed files with 298 additions and 7 deletions

View File

@@ -0,0 +1,7 @@
import { request } from '@/utils'
export default {
getData: (data) => request.post('/paytype/list', data),
add: (data) => request.post('/paytype/add', data),
edit: (data) => request.post('/paytype/edit', data),
}