index.vue
<uni-file-picker v-model="formData.qualifications" title="上传图片" :limit="2" :del-icon="false" :imageStyles="imageStyles" file-mediatype="image" :sizeType="['compressed']" @select="select"></uni-file-picker>
uni-file-picker.vue
第234行
limitLength() {
console.log(this.limit)
if (this.returnType === 'object') {
return 1
}
if (!this.limit) {
return 1
}
if (this.limit >= 9) {
return 9
}
return this.limit
}