直播平台搭建,el-form上传成功后或其他把提示关闭
<el-form
ref="perForm"
:rules="perFormRules"
:model="perForm"
label-width="120px"
class="perForm"
>
<el-upload
class="avatar-uploader"
action="#"
accept="image/jpeg, image/png"
ref="upload"
:limit="1"
:file-list.sync="fileList"
:http-request="httpRequest"
:on-success="handleAvatarSuccess"
:before-upload="beforeAvatarUpload"
:on-remove="removeFile"
>
// 图片上传成功事件
handleAvatarSuccess(url) {
this.imageUrl = url;
this.$refs['perForm'].validateField('headImg')
// console.log('图片上传成功',this.perFormRules.headImg[0].required);
},
以上就是 直播平台搭建,el-form上传成功后或其他把提示关闭,更多内容欢迎关注之后的文章
标签:el,form,perForm,直播,上传,搭建 From: https://www.cnblogs.com/yunbaomengnan/p/17137205.html