HTML部分代码:
<el-upload
class="upload-demo"
:action="fileAction"
accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/vnd.ms-excel"
:show-file-list="false" :before-upload="beforeAvatarUpload" :on-progress="uploadProcess"
:on-success="importSuccess" :on-error="importError">
<el-button size="small" type="primary">文件导入</el-button>
</el-upload>
JS部分代码:
<script>
export default {
data () {
return {
paramId: "",
loadProgress: 0, // 动态显示进度条
progressFlag: false, // 关闭进度条
fileAction: "",
dataList: [], //列表数据
pageIndex: 1,
pageSize: 10,
totalPage: 0,
customColors: [
{color: '#f56c6c', percentage: 20},
{color: '#e6a23c', percentage: 40},
{color: '#5cb87a', percentage: 60},
{color: '#1989fa', percentage: 80},
{color: '#6f7ad3', percentage: 100}
]
}
},
methods: {
init (id) {
this.paramId = id;
//上传的接口
this.fileAction = this.$http.adornUrl(this.apiUrl.cinaImport+"?taskId="+this.paramId);
this.loadProgress = 0; // 动态显示进度条
this.progressFlag = false; // 关闭进度条
this.dataList = []; //列表数据
this.pageIndex = 1;
this.pageSize = 10;
this.totalPage = 0;
this.$nextTick(() => {
this.getDataList();
})
},
//获取导入的数据列表
getDataList(){
},
// 每页数
sizeChangeHandle (val) {
this.pageSize = val
this.pageIndex = 1
this.getDataList()
},
// 当前页
currentChangeHandle (val) {
this.pageIndex = val
this.getDataList();
},
beforeAvatarUpload(file) {
},
//导入
uploadProcess(event, file, fileList) {
this.progressFlag = true; // 显示进度条
this.loadProgress = parseInt(event.percent); // 动态获取文件上传进度
if (this.loadProgress >= 100) {
this.loadProgress = 100
setTimeout( () => {this.progressFlag = false}, 1000) // 一秒后关闭进度条
}
},
//导入成功
importSuccess(res) {
if(res.code === 200){
this.$message({
message: '导入成功',
type: "success",
duration: 1500,
onClose: () => {
this.getDataList();
}
});
}else{
this.$message({
showClose: true,
message: res.msg,
type: 'error'
});
}
},
//导入失败
importError(err) {
this.$message({
showClose: true,
message: "导入失败",
type: 'error'
});
}
}
}
</script>
相关推荐
ElementUI 是一个基于 Vue.js 的开源前端组件库,它提供了丰富的 UI 组件,用于快速构建美观且响应式的 Web 应用。在“axure-elementui.zip”这个压缩包中,很可能是包含了一些使用 Axure 设计工具制作的原型,这些...
在开发Web应用时,Element UI和Vue.js的组合是一个常用的选择,它们提供了丰富的组件和便捷的框架支持。本文将详细讲解如何使用Element UI与Vue.js实现单文件上传和多文件批量上传,且确保所有文件通过一个接口进行...
Element UI 是一个基于 Vue.js 的开源前端组件库,它提供了丰富的界面组件,旨在使开发者能够快速构建美观且响应式的 Web 应用。在 Axure 中,它可以作为一个元组件使用,帮助设计人员更高效地创建原型。 标题 ...
ElementUi是一款基于Vue.js的开源UI组件库,它为开发者提供了丰富的前端组件,方便快速构建出美观、统一的用户界面。在实际工作中,熟练掌握ElementUi的使用对于提升开发效率和用户体验至关重要。以下是对ElementUi...
在Vue应用中,我们需要导入这些库,并注册ElementUI的Upload和Progress组件: ```javascript import vue from 'vue' import { Upload, Progress } from 'element-ui' vue.use(Upload) vue.use(Progress) ``` 接着...