edit 框架设计 #176

Merged
lyc merged 1 commits from lyc-dev into main 2024-12-24 14:48:27 +08:00
1 changed files with 6 additions and 2 deletions
Showing only changes of commit 406e581182 - Show all commits

View File

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