|
@@ -82,7 +82,12 @@ onMounted(async () => {
|
|
|
if (is_use === '1') return
|
|
|
const imgList = get(res, 'data.index_img', [])
|
|
|
imgs.value = imgList
|
|
|
- if (imgList.length > 0) dialog.value = true
|
|
|
+ if (imgList.length > 0) {
|
|
|
+ dialog.value = true
|
|
|
+ setTimeout(() => {
|
|
|
+ dialog.value = false
|
|
|
+ }, 3000);
|
|
|
+ }
|
|
|
}
|
|
|
})
|
|
|
|