Commit 0055aa6ffd69a5a45844cf3fc3518b9d8fa7af70

Authored by 史婷婷
1 parent a630e73a

feat: 订货单接口定义

Showing 1 changed file with 12 additions and 0 deletions
... ... @@ -53,3 +53,15 @@ export function cancelApi(id) {
53 53 contentType: ContentTypeEnum.FORM_URLENCODED
54 54 })
55 55 }
  56 +
  57 +// 查询可以撤销/变更的订货单数据
  58 +export function listCanRevokeOrChangeOrderInfo(params) {
  59 + return request({
  60 + url: `${baseUrl}/listCanRevokeOrChangeOrderInfo`,
  61 + method: 'get',
  62 + params: {
  63 + params,
  64 + },
  65 + contentType: ContentTypeEnum.FORM_URLENCODED
  66 + })
  67 +}
... ...