讨论打包

This commit is contained in:
A1300399510
2025-02-20 14:19:15 +08:00
parent 4250086957
commit 0ed747a035
69 changed files with 974 additions and 820 deletions

View File

@@ -475,7 +475,7 @@ const submitAnswerComments = (content, index, i) => {
let data = res.data
if (i != null) {
console.log("targetCommentList[index]", targetCommentList[index])
// console.log("targetCommentList[index]", targetCommentList[index])
targetCommentList[index]["child"][i]["commentInput"] = ""
targetCommentList[index]["child"][i]["picture"] = {}
@@ -920,7 +920,7 @@ const openEdit = (token, index, i) => {
let target = {}
if (i != null) target = list[index]["child"][i]
else target = list[index]
console.log(token, index, i, target)
// console.log(token, index, i, target)
editToken = target.token || ""
editInput.value = target.content || ""
editPicture.value = target.image || {}
@@ -928,7 +928,7 @@ const openEdit = (token, index, i) => {
editCommentState.value = true
nextTick(() => {
console.log("editInput.value", editInputRef.value)
// console.log("editInput.value", editInputRef.value)
editInputRef.value.style.height = `${editInputRef.value.scrollHeight}px`
})
}