Merge pull request 'edit 框架设计' (#176) from lyc-dev into main

This commit is contained in:
lyc 2024-12-24 14:48:25 +08:00
commit 89e0b2f97c
1 changed files with 6 additions and 2 deletions

View File

@ -206,7 +206,7 @@ const handleCompleteText = async (answer, index) => {
} }
// //
const onSaveTemp = (item) => { const onSaveTemp = async (item) => {
if (item.answer == '') return if (item.answer == '') return
const data = { const data = {
@ -216,7 +216,11 @@ const onSaveTemp = (item) => {
content: item.answer, content: item.answer,
ex1: curNode.id ex1: curNode.id
} }
tempSave(data).then(res => { }) const res = await tempSave(data)
if(!item.resultId){
item.resultId = res.data
}
} }
const isWordDialog = ref(false) const isWordDialog = ref(false)