|
@@ -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)
|
|
|
}
|