直播平台搭建,el-form上传成功后或其他把提示关闭

直播平台搭建,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上传成功后或其他把提示关闭,更多内容欢迎关注之后的文章

 

posted @ 2023-02-20 14:11  云豹科技-苏凌霄  阅读(30)  评论(0)    收藏  举报