ant design vue는 파일을 업로드 한 후 삭제 버튼을 표시하지 않습니다.보기 만 가능하지만 삭제할 수는 없습니다.

1. 문서보기 (업로드 업로드)

2. 코드

  <a-descriptions-item label="文件" :span="3">
              <a-upload
                action="http://xxxxx/File"//上传文件接口
                :multiple="true"
                :showUploadList="{showRemoveIcon:false}" //不显示删除按钮
                :default-file-list="record.file"
              >
            
              </a-upload>
            </a-descriptions-item>

3. 마우스를 가리키면 다음과 같이 삭제 버튼이 없습니다.

추천

출처blog.csdn.net/asteriaV/article/details/114397760