problem description
how to use antd-mobile imagepicker to customize the method of selecting pictures, which can only be taken, not selected locally? How to set
related codes
/ / Please paste the code text below (do not replace the code with pictures)
<ImagePicker
files={files}
onChange={this.onChange.bind(this)}
onImageClick={(index, fs) => console.log(index, fs)}
selectable={files.length < 3}
onAddImageClick={this.onAddImageClick.bind(this)}
/>
onAddImageClick (e){
console.log(e)
}