# 弹出提示
import toast from '@sadais/piui-tool/tools/toast'
// or
import { loading } from '@sadais/piui-tool/tools/toast'
// or
this.$pi.toast.info(info)
// or
this.$toast('')
// or
this.$loading('')
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
# Functions
- success(title, duration, mask) ⇒
Promise
成功提示
- info(title, duration, mask) ⇒
Promise
失败提示
- load(title, duration, mask) ⇒
Promise
加载提示
- hideToast()
隐藏消息提示框
- loading(title, title, mask) ⇒
Promise
加载中
- hideLoading()
隐藏 loading 提示框
# success(title, duration, mask) ⇒ Promise
成功提示
Kind: global function
Param | Type | Default | Description |
---|---|---|---|
title | String | '' | 提示标题 |
duration | Number | 1500 | 显示时间 |
mask | Boolean | true | 是否遮罩不可点击 |
# info(title, duration, mask) ⇒ Promise
失败提示
Kind: global function
Param | Type | Default | Description |
---|---|---|---|
title | String | '' | 提示标题 |
duration | Number | 1500 | 显示时间 |
mask | Boolean | true | 是否遮罩不可点击 |
# load(title, duration, mask) ⇒ Promise
加载提示
Kind: global function
Param | Type | Default | Description |
---|---|---|---|
title | String | '' | 提示标题 |
duration | Number | 1500 | 显示时间 |
mask | Boolean | true | 是否遮罩不可点击 |
# hideToast()
隐藏消息提示框
# loading(title, title, mask) ⇒ Promise
加载中
Kind: global function
Param | Type | Default | Description |
---|---|---|---|
title | |||
title | String | '' | 提示标题 |
mask | Boolean | true | 是否遮罩不可点击 |
# hideLoading()
隐藏 loading 提示框
Kind: global function