useMakePhoneCall.js 200 B

1234567891011121314
  1. export function useMakePhoneCall() {
  2. /**
  3. * 拨打电话
  4. */
  5. const makePhoneCall = (phoneNumber) => {
  6. uni.makePhoneCall({
  7. phoneNumber,
  8. });
  9. }
  10. return {
  11. makePhoneCall
  12. };
  13. }