Compare commits
2 Commits
c21b9ee81a
...
fc3dfa7ef4
Author | SHA1 | Date |
---|---|---|
wuyize | fc3dfa7ef4 | |
wuyize | 8044edca44 |
|
@ -258,11 +258,16 @@ FluArea {
|
||||||
iconSource: content_page.isFavorite ? FluentIcons.FavoriteStarFill : FluentIcons.FavoriteStar
|
iconSource: content_page.isFavorite ? FluentIcons.FavoriteStarFill : FluentIcons.FavoriteStar
|
||||||
onClicked: {
|
onClicked: {
|
||||||
content_page.isFavorite = !content_page.isFavorite
|
content_page.isFavorite = !content_page.isFavorite
|
||||||
|
console.log(content_page.isFavorite)
|
||||||
content_page.favoriteCount += (content_page.isFavorite ? 1 : -1)
|
content_page.favoriteCount += (content_page.isFavorite ? 1 : -1)
|
||||||
Request.put("knowledge/" + knowledgeFileId + "/star",
|
Request.put("knowledge/" + knowledgeFileId + "/star",
|
||||||
JSON.stringify({
|
JSON.stringify({
|
||||||
"active": content_page.isFavorite
|
"active": content_page.isFavorite
|
||||||
}))
|
}), response => {
|
||||||
|
console.log(response)
|
||||||
|
}, response => {
|
||||||
|
console.log(response)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
FluText {
|
FluText {
|
||||||
|
|
Loading…
Reference in New Issue