demo.js 480 B

12345678910111213141516
  1. import service from '@/utils/request'
  2. // @Tags SysApi
  3. // @Summary 删除客户
  4. // @Security ApiKeyAuth
  5. // @accept application/json
  6. // @Produce application/json
  7. // @Param data body dbModel.ExaCustomer true "删除客户"
  8. // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
  9. // @Router /customer/customer [post]
  10. export const demoCustomer = (data) => {
  11. return service({
  12. url: '/customer/customer',
  13. method: 'post',
  14. data
  15. })
  16. }