上传之后,右边的这个框就隐藏
在el-upload标签上添加一个::class="{ hide: hideUpload_introduce }"
,动态的class
data
里面
hideUpload_introduce: false,
limitCount: 1,
同时在el-upload上的两个钩子添加事件:on-change=“handleIntroduceUploadHide”,注意,如果我们要删除照片,删除之后,是希望上传框出现的,所以还要:on-remove=“handleIntroduceRemove”,在删除时触发事件,显示上传框
methods
里面
handleIntroduceUploadHide(file, fileList) {
this.ruleForm.hideUpload_introduce =
fileList.length >= this.ruleForm.limitCount;
},
handleIntroduceRemove(file, fileList) {
this.ruleForm.hideUpload_introduce =
fileList.length >= this.ruleForm.limitCount;
},
style
里面
/deep/.hide .el-upload--picture-card {
display: none;
}