mirror of
https://gitee.com/lijingbo-2021/open-anylink-web.git
synced 2026-05-21 22:58:01 +00:00
imageInSession的结构重构
This commit is contained in:
@@ -47,7 +47,7 @@ const url = computed(() => {
|
||||
})
|
||||
|
||||
const imageInSessionSort = computed(() => {
|
||||
const imageList = imageData.imageInSession[props.sessionId]
|
||||
const imageList = Object.values(imageData.imageInSession[props.sessionId])
|
||||
return imageList.sort((a, b) => {
|
||||
const bTime = new Date(b.createdTime).getTime()
|
||||
const aTime = new Date(a.createdTime).getTime()
|
||||
|
||||
Reference in New Issue
Block a user