Skip to content

Latest commit

 

History

History
14 lines (13 loc) · 266 Bytes

imagePicker-beforeDel.md

File metadata and controls

14 lines (13 loc) · 266 Bytes
<ClImagePicker
  chooseImgObj={{ count: 3 }}
  beforeDel={async () => {
    const res = await Taro.showModal({
      title: "您确认要删除吗"
    });
    console.log(res);
    if (res.confirm) return true;
    if (res.cancel) return false;
  }}
/>