diff --git a/anrui-buscenter/anrui-buscenter-ui/src/api/discountpackagehandover/discountpackagehandover.js b/anrui-buscenter/anrui-buscenter-ui/src/api/discountpackagehandover/discountpackagehandover.js index 7ffd984260..1c40bdff1f 100644 --- a/anrui-buscenter/anrui-buscenter-ui/src/api/discountpackagehandover/discountpackagehandover.js +++ b/anrui-buscenter/anrui-buscenter-ui/src/api/discountpackagehandover/discountpackagehandover.js @@ -32,10 +32,22 @@ export function uploadPicture(data) { }) } -// 优惠包准备 -export function toDohandover(data) { +// 优惠包完成 +export function handoverReady(data) { + return request({ + url: '/buscenter/v1/busdiscountpackagehandover/handoverReady', + method: 'post', + data: data, + headers: { + 'Content-Type': 'application/json' + } + }) +} + +// 优惠包确认 +export function handoverConfirm(data) { return request({ - url: '/buscenter/v1/busdiscountpackagehandover/toDohandover', + url: '/buscenter/v1/busdiscountpackagehandover/handoverConfirm', method: 'post', data: data, headers: { diff --git a/anrui-buscenter/anrui-buscenter-ui/src/views/discountpackagehandover/discountpackagehandoverAdd.vue b/anrui-buscenter/anrui-buscenter-ui/src/views/discountpackagehandover/discountpackagehandoverAdd.vue index 0d5a08e8fc..75948e2e14 100644 --- a/anrui-buscenter/anrui-buscenter-ui/src/views/discountpackagehandover/discountpackagehandoverAdd.vue +++ b/anrui-buscenter/anrui-buscenter-ui/src/views/discountpackagehandover/discountpackagehandoverAdd.vue @@ -101,7 +101,7 @@