Преглед изворни кода

下载图片保存到相册

jiangfeng пре 5 година
родитељ
комит
bfc6a48568
1 измењених фајлова са 12 додато и 3 уклоњено
  1. 12 3
      hdApp/src/admin/shop/downloadCode.vue

+ 12 - 3
hdApp/src/admin/shop/downloadCode.vue

@@ -10,6 +10,7 @@
 			background: #0099ff;
 			border-radius: 10rpx;
 			margin: 50rpx auto;
+			font-size: 28rpx;
 		}
 	}
 </style>
@@ -43,14 +44,22 @@
 			},
 			downloadCodeFun(){
 				uni.showLoading({
-					title: '下载中'
+					title: '下载中..'
 				});
 				uni.downloadFile({
 					url: this.codeImg,
 					success: (res) => {
 						if (res.statusCode === 200) {
-							uni.hideLoading();
-							uni.showToast({title:'下载成功'})
+							console.log(res)
+							uni.saveImageToPhotosAlbum({
+								filePath: res.tempFilePath,
+								success: function (data) {
+									console.log(data)
+									uni.hideLoading();
+									uni.showToast({title:'下载成功!'})
+								}
+							});
+
 						}
 					}
 				});