# 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',
},
]
this.$bridge
.callTelList(params)
.then(res => {
this.$alert(res)
})
.catch(err => {
this.$toast(err)
})
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 接口返回示例
N/A
1
2
3
2
3