VuePressVuePress
  • Introduction
  • Getting Started
  • Users

    • 身份验证
  • 管理后台

    • 用户管理
    • 角色管理
    • 权限管理
    • 操作日志
  • English
  • 简体中文
  • Introduction
  • Getting Started
  • Users

    • 身份验证
  • 管理后台

    • 用户管理
    • 角色管理
    • 权限管理
    • 操作日志
  • English
  • 简体中文
  • Users

    • 身份验证
  • 后台

    • 用户管理
    • 角色管理
    • 权限管理
    • 操作日志

银行管理

GET /api/admin/banks

POST /api/admin/banks

axios.post(`/api/admin/banks`, {
    name: "Techcombank",
    code: "TCB",
    currenry: "VND"
}).then(response => {
    console.log(response)
}).catch(error => {
    console.error(error)
})

GET /api/admin/banks/:bank

PUT /api/admin/banks/:bank

axios.put(`/api/admin/banks`, {
    name: "Techcombank",
    code: "TCB",
    currenry: "VND"
}).then(response => {
    console.log(response)
}).catch(error => {
    console.error(error)
})

DELETE /api/admin/banks/:bank

Last Updated:
Contributors: jinfakeji168