在前端项目中,附件上传是很常用的功能,几乎所有的app相关项目中都会使用到,一般在选择使用某个前端UI框架时,可以查找其内封装好的图片上传组件,但某些情况下可能并不适用于自身的项目需求,本文中实现的附件上传区域支持超多类型附件分类型上传,并且可根据特定条件具体展示某些类型的附件上传,本文中是直接摘自具体的页面,后面会抽时间单独封装出来一个附件上传的组件。
一、Vue页面内附件展示区域代码
<div class="retuinfo">
<div class="theadInfo-headline">
<span></span>
{{FileDivName}}
</div>
<Collapse v-model="defaultCollapse">
<Panel v-for="(item,pngIndex) in pngFileArray" v-bind:key="pngIndex" :name="item.num" v-show="item.isshow">
{{item.name}}
<div class="obsfilesdiv" slot="content">
<div v-for="(obs,index) in item.files" v-bind:key="index" class="obsfileslist">
<input ref="fileImg" type="file" accept="image
align-items: center;
justify-content: center;
}
.modal img {
animation-name: zoom;
animation-duration: 0.6s;
display: block;
padding: 10px;
margin: auto;
max-width: 100%;
max-height: 100%;
box-shadow: 0 2px 6px rgb(0, 0, 0, 0), 0 10px 20px rgb(0, 0, 0, 0);
border-radius: 12px;
border: 1px solid white;
position: absolute;
top: 50%;
transform: translateY(-50%);
}
.showname {
width: 100px;
height: 60px;
position: relative;
top: -4.5rem;
white-space: normal;
word-break: break-all;
word-wrap: break-word;
}
.wrong_class {
width: 30% !important;
height: 30% !important;
position: relative;
top: -3.8rem;
left: 2.6rem;
}
.wrongs_class {
width: 4% !important;
height: 4% !important;
position: relative;
left: 0.5rem;
}
最后附上实际效果图:
到此这篇关于Vue页面内公共的多类型附件图片上传区域并适用折叠面板的文章就介绍到这了,更多相关Vue多类型附件图片上传内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!