You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
235 B

8 months ago
  1. //用户二次确认
  2. function showConfirm(title, callback) {
  3. uni.showModal({
  4. title,
  5. success: function(res) {
  6. if (res.confirm) {
  7. callback && callback()
  8. } else if (res.cancel) {}
  9. }
  10. });
  11. }
  12. export default {
  13. showConfirm
  14. }