标签:div 文件 token ui组件 formdata BMI mes element 成功
// 上传excel
upload() {
this.$refs.upload.submit(); //调用upload中自定义的方法
},
// 导入excel学生列表
uploadFile(item) { //:http-request自定义方法
const form = new FormData();
form.append("token", this.token);
form.append("file", item.file);
importPerinfo(form).then(res => {
if (res.status == 200) {
this.$message.success(‘导入成功!‘)
} else {
this.$message.warning(‘导入失败!‘);
}
})
},
import() { //自定义按钮
this.$refs.upload.clearFiles(); //清除之前上传的文件
},
标签:div 文件 token ui组件 formdata BMI mes element 成功
原文地址:https://www.cnblogs.com/tt-ff/p/12073163.html