[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>

上传进度 - 图1

将 Progress 组件设置到 Upload 同级,并调整尺⼨(根据 Upload 在 style 中预设宽度设置即可)。

width 需要 Number,设置 String 时 Vue 会进⾏警告。 // course-image.vue type=“circle” :percentage=“0” :width=“178” >
>

根据上传情况,应显示两个组件之⼀,这⾥通过⼀个属性控制两个组件的显示情况

// course-image.vue v-if=“isUploading” >
v-else >