zs 3 meses atrás
pai
commit
98b8b12c7f

+ 4 - 2
src/store/api/platform/matchExt.js

@@ -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 {

+ 2 - 2
src/views/center/parts/preliminaryUser.vue

@@ -344,9 +344,9 @@ const toSign = (type) => {
     .then(async () => {
       let res
       if (type == '0') {
-        res = await matchExtStore.step5Confirm(form.value.match_id)
+        res = await matchExtStore.step5Confirm({ id: form.value.match_id, user_id: id.value })
       } else {
-        res = await matchExtStore.step5Refuse(form.value.match_id)
+        res = await matchExtStore.step5Refuse({ id: form.value.match_id, user_id: id.value })
       }
       if ($checkRes(res, true)) {
         toClose()