zs пре 6 месеци
родитељ
комит
373bcfcc0b
2 измењених фајлова са 8 додато и 8 уклоњено
  1. 5 5
      src/views/center/match.vue
  2. 3 3
      src/views/two/add/match.vue

+ 5 - 5
src/views/center/match.vue

@@ -375,10 +375,10 @@ const toSave = async () => {
   if (get(data, 'id')) res = await store.update({ ...data, ...other })
   else res = await store.create({ ...data, ...other })
   if ($checkRes(res, true)) {
-    if (res.data.id) match_id.value = res.data.id
+    if (res.data && res.data.id) match_id.value = res.data.id
     await toProcessSave()
     await search({ skip, limit })
-    await toClose()
+    toClose()
   }
 }
 const toDraftSave = async () => {
@@ -393,10 +393,10 @@ const toDraftSave = async () => {
   if (get(data, 'id')) res = await store.update({ ...data, ...other })
   else res = await store.create({ ...data, ...other })
   if ($checkRes(res, true)) {
-    if (res.data.id) match_id.value = res.data.id
+    if (res.data && res.data.id) match_id.value = res.data.id
     await toProcessSave()
     await search({ skip, limit })
-    await toClose()
+    toClose()
   }
 }
 // 审核保存
@@ -437,7 +437,7 @@ const toProcessSave = async () => {
   for (const val of processList.value) {
     const data = cloneDeep(val)
     delete data.sid
-    if (!val.match) val.match = match_id.value
+    if (!data.match) data.match = match_id.value
     if (get(data, 'id')) await processStore.update(data)
     else await processStore.create(data)
   }

+ 3 - 3
src/views/two/add/match.vue

@@ -236,7 +236,7 @@ const toSave = async () => {
   if (get(data, 'id')) res = await store.update({ ...data, ...other })
   else res = await store.create({ ...data, ...other })
   if (res.errcode == 0) {
-    if (res.data.id) match_id.value = res.data.id
+    if (res.data && res.data.id) match_id.value = res.data.id
     await toProcessSave()
     ElMessage({ message: `发布成功可以上历史发布查看`, type: 'success' })
     form.value = { time: [], rules: {} }
@@ -255,7 +255,7 @@ const toDraftSave = async () => {
   if (get(data, 'id')) res = await store.update({ ...data, ...other })
   else res = await store.create({ ...data, ...other })
   if (res.errcode == 0) {
-    if (res.data.id) match_id.value = res.data.id
+    if (res.data && res.data.id) match_id.value = res.data.id
     await toProcessSave()
     ElMessage({ message: `发布成功可以上历史发布查看`, type: 'success' })
     form.value = { time: [], rules: {} }
@@ -272,7 +272,7 @@ const toProcessSave = async () => {
   for (const val of processList.value) {
     const data = cloneDeep(val)
     delete data.sid
-    if (!val.match) val.match = match_id.value
+    if (!data.match) data.match = match_id.value
     if (get(data, 'id')) await processStore.update(data)
     else await processStore.create(data)
   }