vant 图片上传 多图上传

2024-04-20 16:08
文章标签 图片 上传 vant 多图

本文主要是介绍vant 图片上传 多图上传,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1.mpvue 中使用了vant-weapp中多图上传

先上代码

data中要定义个数组存放图片
定义数据

data(){return {fileList: []}
}

html

<ul style="display:block;clear:both;margin:13px 10px;width:88%"><li v-for="(item,index) in fileList" :key="index" style="width:30%;float:left;position:relative"><image :src="item" style="width:77px;height:77px;background:rgba(247,248,250);border-radius:5px"></image><div class="closeImg" @click="closeImg(index)"><van-icon name="cross" custom-style="color:#fff;font-size:12px" /></div></li><li><image @click="afterRead" style="width:77px;height:77px;text-align:center;line-height:77px;background:rgba(247,248,250);margin-left:7px;border-radius:5px;position:relative"><span class="iconfont uploadimg">&#xe688;</span></image></li>
</ul>

js

// 转base64
base64({url,type}){return new Promise((resolve, reject) => {wx.getFileSystemManager().readFile({filePath: url, //选择图片返回的相对路径encoding: 'base64', //编码格式success: res => {resolve('data:image/' + type.toLocaleLowerCase() + ';base64,' + res.data)},fail: res => reject(res.errMsg)})})
},//上传async afterRead(file){var count = 1;var that = this;wx.chooseImage({count: count,sizeType: ['compressed'],sourceType: ['album'],success(res) {var tempFilePaths = res.tempFilePaths;for (let i = 0; i < res.tempFilePaths.length; i++) {wx.compressImage({// 图片压缩src: res.tempFilePaths[i],quality: 1,success(res) {console.log(res,'===compressImage')wx.getFileSystemManager().readFile({filePath: res.tempFilePath, //选择图片返回的相对路径encoding: "base64",//这个是很重要的success: res => { //成功的回调if (that.fileList.length >= 2) {Toast.fail('最多上传两张');return;}//返回base64格式let base64_img = `data:image/png;base64,${res.data}`;wx.compressImage({// 图片压缩src: base64_img,quality: 30,success(res) {console.log(res)}})console.log(base64_img)Toast.success('图片上传成功');that.fileList.push(base64_img)}})}}}})},//删除图片closeqmImg(index){this.fileListqm.splice(index,1);},// 图片压缩dealImage(res) {var that = this;console.log(res);wx.compressImage({// 图片压缩src: res.path,quality: 1,success(res) {console.log(res)}})}

css样式

.van-popup--center{margin-top: 43px;
}
.iconfont {font-family: "iconfont" !important;font-size: 16px;font-style: normal;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;
}
.cellss{align-items:center;
}
.value-class {flex: none !important;
}
.van-field__label{color: #299cff !important;
}
.van-checkbox{height: 48px !important;
}
.shqm{display: block;margin: 16rpx auto;width: 92%;font-size: 15px;line-height: 31px;color: #299cff;
}
.uploadimg{position: absolute;top: 0;left:0;right: 0;bottom: 0;margin: auto;font-size: 26px;color: #a2a4a5;
}
.h7{height: @h7;background: @bg_eee;
}
.agreement{width: @w90;height: 180px;margin: 12px auto 12px auto;border: 1px dashed #eee;
}
.idcard{display: block;margin: 14px auto;width: 91%;font-size: 17px;text-align: left;color: @color999;
}
.closeImg{position:absolute;width:17px;height:17px;background-color:rgba(0,0,0,.8);top:0;right:0;border-bottom-left-radius:57%;text-align: center;line-height: 17px;
}.logoWrap{width: @w80;margin: 40px auto 50px auto;.loginTxt{font-size: 28px;color: @color4040;font-weight: bold;position: relative;margin: 17px 0 6px 0;z-index: 99;}.loginTxt::after{content: '';display: inline;width: 60px;height: 10px;background-color: #3a53aeba;position: absolute;bottom: 2px;left: -2px;z-index: 88;}.notxt {display: block;color: @color4040;font-size: 15px;font-family: Arial, Helvetica, sans-serif;a{display: inline-block;color: rgb(33, 70, 236);}}}
.iptwrap,.signWrap{width: 88%;margin: @m_auto;
}.btn{width: 88%;margin: 85px auto 40px auto;.forget{display: block;margin-top: 17px;text-align: center;color: @color4040;a{color: #2146ec;display: inline-block;}}
}
.countdownSpan{position: fixed;width: 28px;height: 28px;bottom: 240rpx;left: 10rpx;right: 0;background: #0B255B;color: #fff;display: block;z-index: 999999;border-radius: 50%;font-size: 12px;text-align: center;padding: 11px;line-height: 16px;
}
.downBtn{position: fixed;bottom: 3px;left: 0;right: 0;z-index: 999999;
}

这篇关于vant 图片上传 多图上传的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/920708

相关文章

使用Python实现大文件切片上传及断点续传的方法

《使用Python实现大文件切片上传及断点续传的方法》本文介绍了使用Python实现大文件切片上传及断点续传的方法,包括功能模块划分(获取上传文件接口状态、临时文件夹状态信息、切片上传、切片合并)、整... 目录概要整体架构流程技术细节获取上传文件状态接口获取临时文件夹状态信息接口切片上传功能文件合并功能小

使用 Python 和 LabelMe 实现图片验证码的自动标注功能

《使用Python和LabelMe实现图片验证码的自动标注功能》文章介绍了如何使用Python和LabelMe自动标注图片验证码,主要步骤包括图像预处理、OCR识别和生成标注文件,通过结合Pa... 目录使用 python 和 LabelMe 实现图片验证码的自动标注环境准备必备工具安装依赖实现自动标注核心

Java操作xls替换文本或图片的功能实现

《Java操作xls替换文本或图片的功能实现》这篇文章主要给大家介绍了关于Java操作xls替换文本或图片功能实现的相关资料,文中通过示例代码讲解了文件上传、文件处理和Excel文件生成,需要的朋友可... 目录准备xls模板文件:template.xls准备需要替换的图片和数据功能实现包声明与导入类声明与

基于C#实现将图片转换为PDF文档

《基于C#实现将图片转换为PDF文档》将图片(JPG、PNG)转换为PDF文件可以帮助我们更好地保存和分享图片,所以本文将介绍如何使用C#将JPG/PNG图片转换为PDF文档,需要的可以参考下... 目录介绍C# 将单张图片转换为PDF文档C# 将多张图片转换到一个PDF文档介绍将图片(JPG、PNG)转

Qt QWidget实现图片旋转动画

《QtQWidget实现图片旋转动画》这篇文章主要为大家详细介绍了如何使用了Qt和QWidget实现图片旋转动画效果,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 一、效果展示二、源码分享本例程通过QGraphicsView实现svg格式图片旋转。.hpjavascript

使用opencv优化图片(画面变清晰)

文章目录 需求影响照片清晰度的因素 实现降噪测试代码 锐化空间锐化Unsharp Masking频率域锐化对比测试 对比度增强常用算法对比测试 需求 对图像进行优化,使其看起来更清晰,同时保持尺寸不变,通常涉及到图像处理技术如锐化、降噪、对比度增强等 影响照片清晰度的因素 影响照片清晰度的因素有很多,主要可以从以下几个方面来分析 1. 拍摄设备 相机传感器:相机传

Android 10.0 mtk平板camera2横屏预览旋转90度横屏拍照图片旋转90度功能实现

1.前言 在10.0的系统rom定制化开发中,在进行一些平板等默认横屏的设备开发的过程中,需要在进入camera2的 时候,默认预览图像也是需要横屏显示的,在上一篇已经实现了横屏预览功能,然后发现横屏预览后,拍照保存的图片 依然是竖屏的,所以说同样需要将图片也保存为横屏图标了,所以就需要看下mtk的camera2的相关横屏保存图片功能, 如何实现实现横屏保存图片功能 如图所示: 2.mtk

Spring MVC 图片上传

引入需要的包 <dependency><groupId>commons-logging</groupId><artifactId>commons-logging</artifactId><version>1.1</version></dependency><dependency><groupId>commons-io</groupId><artifactId>commons-

Prompt - 将图片的表格转换成Markdown

Prompt - 将图片的表格转换成Markdown 0. 引言1. 提示词2. 原始版本 0. 引言 最近尝试将图片中的表格转换成Markdown格式,需要不断条件和优化提示词。记录一下调整好的提示词,以后在继续优化迭代。 1. 提示词 英文版本: You are an AI assistant tasked with extracting the content of

研究人员在RSA大会上演示利用恶意JPEG图片入侵企业内网

安全研究人员Marcus Murray在正在旧金山举行的RSA大会上公布了一种利用恶意JPEG图片入侵企业网络内部Windows服务器的新方法。  攻击流程及漏洞分析 最近,安全专家兼渗透测试员Marcus Murray发现了一种利用恶意JPEG图片来攻击Windows服务器的新方法,利用该方法还可以在目标网络中进行特权提升。几天前,在旧金山举行的RSA大会上,该Marcus现场展示了攻击流程,