uniapp+uview 图片预览组件

uniapp + uview 图片列表预览组件

注意:在app端需要先判断是否存在手机相册权限

html 复制代码
<template>
	<!-- css使用的是uview1.0组件中的css -->
	<!-- u-image  使用的是uview1.0的组件 -->
	<view class="u-flex u-row-between u-flex-wrap">
		<view class="u-m-b-24" v-for="(item, index) in imgList" :key="index">
			<u-image @click="preImg(index)" :border-radius="borderRadius" :width="width" :height="height" :src="item[name]"></u-image>
		</view>
		<view :style="{ width: width }" v-for="i in remaining" :key="i"></view>
	</view>
</template>
javascript 复制代码
<script>
export default {
	props: {
		/* 图片宽度 */
		width: {
			type: String,
			default: '144rpx'
		},
		/* 图片高度 */
		height: {
			type: String,
			default: '144rpx'
		},
		/* 图片圆角 */
		borderRadius: {
			type: [String, Number],
			default: '8'
		},
		/* 图片数组 */
		imgList: {
			type: Array,
			default: () => {
				return [];
			}
		},
		/* 组件内部读取的imgList参数中的属性名 */
		name: {
			type: String,
			default: 'image'
		},
		/* 可空余几个位置 */
		remaining: {
			type: Number,
			default: 0
		},
		/* 是否可循环预览,默认值为 false */
		loop: {
			type: Boolean,
			default: false
		}
	},
	methods: {
		preImg(index) {
			/* app端需要在这里先判断是否已开启相册权限 */
			let urls = [];
			this.imgList.map((item, i) => {
				if (index == i) {
					urls.unshift(item[this.name]);
				} else {
					urls.push(item[this.name]);
				}
			});
			uni.previewImage({
				urls,
				loop:this.loop
			});
		}
	}
};
</script>
相关推荐
sunly_43 分钟前
uniapp:公告上下轮播
android·uni-app
cy玩具4 小时前
uniapp中vuex(全局共享)的应用
uni-app
王者鳜錸4 小时前
UNIAPP-微信小程序实现文本纠错功能
微信小程序·小程序·uni-app
袭烽5 小时前
uni-app多环境配置动态修改
uni-app·uniapp多环境配置修改
玄尺_0075 小时前
bug:uniapp运行到微信开发者工具 白屏 页面空白
uni-app·bug
zzzzzzzi11113 小时前
uniapp自定义tabbar
uni-app
堕落年代21 小时前
Uniapp安卓端获取手机号码
android·uni-app
请叫我欧皇i1 天前
uniapp uni-table实现多选,点击单行弹出选择器,默认禁用某行
uni-app
rm_ing1 天前
uniapp实现国际化语言
uni-app