请扫码查看示例
 # callTelList ^7.8
弹出拨打电话列表接口(从 APP 整屏底部弹出)
# 请求参数
| Prop | Type | Default | Comment | 
|---|---|---|---|
| tel | String | N/A | 13535676678 | 
| title | String | N/A | 美的: | 
| desc | String | N/A | 在线客服 | 
# 接口调用示例
const params = [
  {
    tel: '13535676678',
    title: '美的:',
    desc: '在线客服',
  },
  {
    tel: '18888888888',
    title: '美的:',
    desc: '在线客服2',
  },
]
bridge
  .callTelList(params)
  .then((res) => {
    console.log(res)
  })
  .catch((err) => {
    console.log(err)
  })
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 接口返回示例
N / A
1