<template>
<view class="">
<view class="" v-for="(item,index) in photos" :key="index" >
<navigator :src="item.src" @click="previewImage(index)">111111111111111111</navigator>
<image :src="item.src" @click="previewImage(index)"></image>
</view>
</view>
</template>
<script>
export default {
data(){
return {
photos:[
{src:'/static/logo.png'}
]
}
},
methods: {
// 预览图片
previewImage(index) {
let photoList = this.photos.map(item => {
return item.src;
});
uni.previewImage({
current: index, // 当前显示图片的链接/索引值
urls: photoList, // 需要预览的图片链接列表,photoList要求必须是数组
loop:true // 是否可循环预览
});
},
}
}
</script>
<style>
</style>
点开图片预览就是这样 。。。。。加载不出来 求解
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…