mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-13 03:52:50 +00:00
fix: 修复在列表中未找到当前图像时的处理逻辑
This commit is contained in:
parent
5e1f3c5564
commit
7660164583
@ -3919,7 +3919,11 @@ export default {
|
|||||||
//
|
//
|
||||||
const current = $A.thumbRestore(currentUrl)
|
const current = $A.thumbRestore(currentUrl)
|
||||||
if (!list.find(item => $A.thumbRestore(item.src) == current)) {
|
if (!list.find(item => $A.thumbRestore(item.src) == current)) {
|
||||||
return false
|
list.unshift({
|
||||||
|
src: currentUrl,
|
||||||
|
width: 0,
|
||||||
|
height: 0,
|
||||||
|
})
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
this.$store.dispatch("previewImage", {index: currentUrl, list})
|
this.$store.dispatch("previewImage", {index: currentUrl, list})
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user