12345678910111213141516171819202122232425262728293031 |
- Page({
- choosePhoneContact() {
- my.choosePhoneContact({
- success: (res) => {
- my.alert({
- content: 'choosePhoneContact response: ' + JSON.stringify(res)
- });
- },
- fail: (res) => {
- my.alert({
- content: 'choosePhoneContact response: ' + JSON.stringify(res)
- });
- }
- });
- },
- chooseAlipayContact() {
- my.chooseAlipayContact({
- count: 2,
- success: (res) => {
- my.alert({
- content: 'chooseAlipayContact response: ' + JSON.stringify(res)
- });
- },
- fail: (res) => {
- my.alert({
- content: 'chooseAlipayContact response: ' + JSON.stringify(res)
- });
- }
- });
- },
- });
|