首先,需要在 el-upload 组件中将 auto-upload 属性设置为 false,这样文件选择后不会自动上传,而是需要手动触发。 vue <el-upload ref="upload" action="#" :auto-upload="false" :file-list="fileList" :on-change="handleFileChange" > <el-button slot="trigger" size="small" type="primary...