[TOC]Upload 组件⾃带上传进度功能,但我们并没有使⽤对应的结构,这时需要⾃⾏设置。 这⾥使⽤ Element 中 Progress 进度条组件的环形进度条功能。 // Element 官⽅示例:Progress 进度条组件 - 环形进度条(下图为对应效果示意 图) type=“circle” :percentage=“0”> type=“circle” :percentage=“25”> type=“circle” :percentage=“100” status=“success”> -progress> type=“circle” :percentage=“70” status=“warning”> progress> type=“circle” :percentage=“50” status=“exception”> l-progress> 将 Progress 组件设置到 Upload 同级,并调整尺⼨(根据 Upload 在 style 中预设宽度设置即可)。width 需要 Number,设置 String 时 Vue 会进⾏警告。 // course-image.vue … type=“circle” :percentage=“0” :width=“178” > … > … 根据上传情况,应显示两个组件之⼀,这⾥通过⼀个属性控制两个组件的显示情况// course-image.vue … … data () { return { … // 保存下载状态 isUploading: false } }, … async handleUpload (options) { // 设置进度信息展示 this.isUploading = true … if (data.code === ‘000000’) { … // 关闭进度信息展示 this.isUploading = false } } .. … v-if=“isUploading” … > v-else … > …