# showConfirmView ^7.8
系统alert框
# 请求参数
Prop | Type | Required | Default | Comment |
---|---|---|---|---|
title | String | Y | N/A | 标题 |
content | String | Y | N/A | 内容说明描述 |
args | String | Y | N/A | 按钮数组 |
args参数介绍
数据类型为数组,数组内每一项数据为对象,内部支持两个参数
Prop | Type | Required | Default | Comment |
---|---|---|---|---|
confirmText | String | Y | N/A | 按钮文本 |
index | Number | Y | N/A | 按钮对应的下标 |
# 接口调用示例
const params = {
title: '标题',
content: '内容说明描述',
args: [
{
confirmText: '取消',
index: 10,
},
{
confirmText: '确定',
index: 11,
},
],
}
this.$bridge
.showConfirmView(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
22
23
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 返回参数
Prop | Type | Required | Default | Comment |
---|---|---|---|---|
confirmText | String | Y | N/A | 点击的按钮文案 |
index | Number | Y | N/A | 点击的按钮对应的index值 |
# 接口返回示例
// 成功时返回
{
confirmText: "取消",
index: 10
}
1
2
3
4
5
6
2
3
4
5
6