Skip to content

Latest commit

 

History

History
executable file
·
63 lines (43 loc) · 1.02 KB

saveImg.md

File metadata and controls

executable file
·
63 lines (43 loc) · 1.02 KB

uni-app项目保存图片到相册

github地址,喜欢的可以star下哦

插件预览图

功能介绍

1.长按保存图片
2.右下角图片点击保存图片 3.点击图片可以隐藏图片

使用教程

1.插件代码拷贝

  • 下载后把components目录下saveFile.vue文件拷贝到自己项目目录下

2.插件使用

  • vue页面使用
<template>
	<view>
		<!-- 预览图片 -->
		<saveFile v-if="isShowPhoto" :url="qrUrl" @hide="hidePhoto"></saveFile>
	</view>
</template>

<script>
export default {
	data() {
		return {
			qrUrl:'/static/img/img1.jpg',
			isShowPhoto:true,
		};
	},
	onLoad() {},
	methods: {
		hidePhoto(){
			this.isShowPhoto = false;
			uni.showToast({
				title:'图片已隐藏',
				icon:'none'
			})
		}
	}
};
</script>


兼容性

uni-app项目中使用都兼容 除了H5