uni.showModal({ title: "删除", content: "是否删除该选中的图片!", confirmText: "删除", success(res) { if (res.confirm) { //删除 _this.imageList.splice(index, 1) } } }) }, // 图片预览 previewImage:function(index){ var _this = this uni.previewImage({ current:index, urls:_this.i...
{ uni.showToast({ title: '保存成功', icon: 'none', duration: 2000, mask: true }) //图片保存成功后自动预览图片 uni.previewImage({ urls: [e], longPressActions: { success: function(data) { console.log(data) }, fail: function(err) { console.log(err.errMsg); } } }); }, fail: ...