export function useMakePhoneCall() { /** * 拨打电话 */ const makePhoneCall = (phoneNumber) => { uni.makePhoneCall({ phoneNumber, }); } return { makePhoneCall }; }