|
@@ -40,11 +40,13 @@ export const MatchExtStore = defineStore('matchExt', () => {
|
|
|
return res
|
|
|
}
|
|
|
const step5Confirm = async (payload) => {
|
|
|
- const res = await axios.$get(`${url}/step5/confirm/${payload}`)
|
|
|
+ const id = get(payload, 'id', get(payload, '_id'))
|
|
|
+ const res = await axios.$post(`${url}/step5/confirm/${id}`, payload)
|
|
|
return res
|
|
|
}
|
|
|
const step5Refuse = async (payload) => {
|
|
|
- const res = await axios.$get(`${url}/step5/refuse/${payload}`)
|
|
|
+ const id = get(payload, 'id', get(payload, '_id'))
|
|
|
+ const res = await axios.$post(`${url}/step5/refuse/${id}`, payload)
|
|
|
return res
|
|
|
}
|
|
|
return {
|