contact.js 711 B

12345678910111213141516171819202122232425262728293031
  1. Page({
  2. choosePhoneContact() {
  3. my.choosePhoneContact({
  4. success: (res) => {
  5. my.alert({
  6. content: 'choosePhoneContact response: ' + JSON.stringify(res)
  7. });
  8. },
  9. fail: (res) => {
  10. my.alert({
  11. content: 'choosePhoneContact response: ' + JSON.stringify(res)
  12. });
  13. }
  14. });
  15. },
  16. chooseAlipayContact() {
  17. my.chooseAlipayContact({
  18. count: 2,
  19. success: (res) => {
  20. my.alert({
  21. content: 'chooseAlipayContact response: ' + JSON.stringify(res)
  22. });
  23. },
  24. fail: (res) => {
  25. my.alert({
  26. content: 'chooseAlipayContact response: ' + JSON.stringify(res)
  27. });
  28. }
  29. });
  30. },
  31. });