猫妈狗爸伴宠师小程序后端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
843 B

7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
  1. import request from '@/utils/request'
  2. // 查询不接单日期列表
  3. export function listAppletOutDate(query) {
  4. return request({
  5. url: '/model/AppletOutDate/list',
  6. method: 'get',
  7. params: query
  8. })
  9. }
  10. // 查询不接单日期详细
  11. export function getAppletOutDate(id) {
  12. return request({
  13. url: '/model/AppletOutDate/' + id,
  14. method: 'get'
  15. })
  16. }
  17. // 新增不接单日期
  18. export function addAppletOutDate(data) {
  19. return request({
  20. url: '/model/AppletOutDate',
  21. method: 'post',
  22. data: data
  23. })
  24. }
  25. // 修改不接单日期
  26. export function updateAppletOutDate(data) {
  27. return request({
  28. url: '/model/AppletOutDate',
  29. method: 'put',
  30. data: data
  31. })
  32. }
  33. // 删除不接单日期
  34. export function delAppletOutDate(id) {
  35. return request({
  36. url: '/model/AppletOutDate/' + id,
  37. method: 'delete'
  38. })
  39. }