2016-07-27 14:15:02 +08:00
|
|
|
|
<script>
|
|
|
|
|
module.exports = {
|
|
|
|
|
methods: {
|
|
|
|
|
open() {
|
|
|
|
|
this.$notify({
|
|
|
|
|
title: '标题名称',
|
|
|
|
|
message: '这是提示文案这是提示文案这是提示文案这是提示文案这是提示文案这是提示文案这是提示文案这是提示文案'
|
|
|
|
|
});
|
|
|
|
|
},
|
2016-08-19 14:45:08 +08:00
|
|
|
|
|
2016-07-27 14:15:02 +08:00
|
|
|
|
open2() {
|
2016-08-26 19:46:45 +08:00
|
|
|
|
this.$notify({
|
|
|
|
|
title: '提示',
|
|
|
|
|
message: '这是一条不会自动关闭的消息',
|
|
|
|
|
duration: 0
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
open3() {
|
2016-07-27 14:15:02 +08:00
|
|
|
|
this.$notify({
|
|
|
|
|
title: '成功',
|
|
|
|
|
message: '这是一条成功的提示消息',
|
|
|
|
|
type: 'success'
|
|
|
|
|
});
|
|
|
|
|
},
|
2016-08-19 14:45:08 +08:00
|
|
|
|
|
2016-08-26 19:46:45 +08:00
|
|
|
|
open4() {
|
2016-07-27 14:15:02 +08:00
|
|
|
|
this.$notify({
|
|
|
|
|
title: '警告',
|
|
|
|
|
message: '这是一条警告的提示消息',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
});
|
|
|
|
|
},
|
2016-08-19 14:45:08 +08:00
|
|
|
|
|
2016-08-26 19:46:45 +08:00
|
|
|
|
open5() {
|
2016-10-04 17:33:32 +08:00
|
|
|
|
this.$notify.info({
|
2016-07-27 14:15:02 +08:00
|
|
|
|
title: '消息',
|
2016-10-04 17:33:32 +08:00
|
|
|
|
message: '这是一条消息的提示消息'
|
2016-07-27 14:15:02 +08:00
|
|
|
|
});
|
|
|
|
|
},
|
2016-08-19 14:45:08 +08:00
|
|
|
|
|
2016-08-26 19:46:45 +08:00
|
|
|
|
open6() {
|
2016-10-04 17:33:32 +08:00
|
|
|
|
this.$notify.error({
|
2016-07-27 14:15:02 +08:00
|
|
|
|
title: '错误',
|
2016-10-04 17:33:32 +08:00
|
|
|
|
message: '这是一条错误的提示消息'
|
2016-07-27 14:15:02 +08:00
|
|
|
|
});
|
|
|
|
|
},
|
2016-11-29 09:55:16 +08:00
|
|
|
|
|
|
|
|
|
open7() {
|
|
|
|
|
this.$notify({
|
|
|
|
|
message: '吴尔丹',
|
|
|
|
|
origin: 100
|
|
|
|
|
});
|
|
|
|
|
},
|
2016-08-19 14:45:08 +08:00
|
|
|
|
|
2016-07-27 14:15:02 +08:00
|
|
|
|
onClose() {
|
|
|
|
|
console.log('Notification 已关闭');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
2016-08-26 19:46:45 +08:00
|
|
|
|
## Notification 通知
|
2016-07-27 14:15:02 +08:00
|
|
|
|
|
2016-08-26 19:46:45 +08:00
|
|
|
|
悬浮出现在页面右上角,显示全局的通知提醒消息。
|
|
|
|
|
|
|
|
|
|
### 基本用法
|
|
|
|
|
|
|
|
|
|
适用性广泛的通知栏
|
|
|
|
|
|
|
|
|
|
::: demo Notification 组件提供通知功能,Element 注册了`$notify`方法,接收一个`options`字面量参数,在最简单的情况下,你可以设置`title`字段和`message`字段,用于设置通知的标题和正文。默认情况下,经过一段时间后 Notification 组件会自动关闭,但是通过设置`duration`,可以控制关闭的时间间隔,特别的是,如果设置为`0`,则不会自动关闭。注意:`duration`接收一个`Number`,单位为毫秒,默认为`4500`。
|
2016-07-27 14:15:02 +08:00
|
|
|
|
```html
|
|
|
|
|
<template>
|
2016-08-23 16:57:58 +08:00
|
|
|
|
<el-button
|
|
|
|
|
plain
|
2016-11-20 22:39:33 +08:00
|
|
|
|
@click="open">
|
2016-08-26 19:46:45 +08:00
|
|
|
|
可自动关闭
|
2016-08-23 16:57:58 +08:00
|
|
|
|
</el-button>
|
2016-08-26 19:46:45 +08:00
|
|
|
|
<el-button
|
|
|
|
|
plain
|
2016-11-20 22:39:33 +08:00
|
|
|
|
@click="open2">
|
2016-08-26 19:46:45 +08:00
|
|
|
|
不会自动关闭
|
|
|
|
|
</el-button>
|
2016-07-27 14:15:02 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
methods: {
|
|
|
|
|
open() {
|
|
|
|
|
this.$notify({
|
|
|
|
|
title: '标题名称',
|
|
|
|
|
message: '这是提示文案这是提示文案这是提示文案这是提示文案这是提示文案这是提示文案这是提示文案这是提示文案'
|
|
|
|
|
});
|
2016-08-26 19:46:45 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
open2() {
|
|
|
|
|
this.$notify({
|
|
|
|
|
title: '提示',
|
|
|
|
|
message: '这是一条不会自动关闭的消息',
|
|
|
|
|
duration: 0
|
|
|
|
|
});
|
2016-07-27 14:15:02 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
```
|
2016-08-23 16:57:58 +08:00
|
|
|
|
:::
|
2016-07-27 14:15:02 +08:00
|
|
|
|
|
2016-08-26 19:46:45 +08:00
|
|
|
|
### 带有倾向性
|
2016-07-27 14:15:02 +08:00
|
|
|
|
|
2016-08-26 19:46:45 +08:00
|
|
|
|
带有 icon,常用来显示「成功、警告、消息、错误」类的系统消息
|
|
|
|
|
|
2016-10-04 17:33:32 +08:00
|
|
|
|
::: demo Element 为 Notification 组件准备了四种通知类型:`success`, `warning`, `info`, `error`。通过`type`字段来设置,除此以外的值将被忽略。同时,我们也为 Notification 的各种 type 注册了方法,可以在不传入`type`字段的情况下像`open5`和`open6`那样直接调用。
|
2016-07-27 14:15:02 +08:00
|
|
|
|
```html
|
|
|
|
|
<template>
|
2016-08-23 16:57:58 +08:00
|
|
|
|
<el-button
|
|
|
|
|
plain
|
2016-11-20 22:39:33 +08:00
|
|
|
|
@click="open3">
|
2016-08-23 16:57:58 +08:00
|
|
|
|
成功
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
plain
|
2016-11-20 22:39:33 +08:00
|
|
|
|
@click="open4">
|
2016-08-23 16:57:58 +08:00
|
|
|
|
警告
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
plain
|
2016-11-20 22:39:33 +08:00
|
|
|
|
@click="open5">
|
2016-08-23 16:57:58 +08:00
|
|
|
|
消息
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
plain
|
2016-11-20 22:39:33 +08:00
|
|
|
|
@click="open6">
|
2016-08-23 16:57:58 +08:00
|
|
|
|
错误
|
|
|
|
|
</el-button>
|
2016-07-27 14:15:02 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
methods: {
|
2016-08-26 19:46:45 +08:00
|
|
|
|
open3() {
|
2016-07-27 14:15:02 +08:00
|
|
|
|
this.$notify({
|
|
|
|
|
title: '成功',
|
|
|
|
|
message: '这是一条成功的提示消息',
|
2016-08-19 18:54:18 +08:00
|
|
|
|
type: 'success'
|
2016-07-27 14:15:02 +08:00
|
|
|
|
});
|
|
|
|
|
},
|
2016-08-19 14:45:08 +08:00
|
|
|
|
|
2016-08-26 19:46:45 +08:00
|
|
|
|
open4() {
|
2016-07-27 14:15:02 +08:00
|
|
|
|
this.$notify({
|
|
|
|
|
title: '警告',
|
|
|
|
|
message: '这是一条警告的提示消息',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
});
|
|
|
|
|
},
|
2016-08-19 14:45:08 +08:00
|
|
|
|
|
2016-08-26 19:46:45 +08:00
|
|
|
|
open5() {
|
2016-10-04 17:33:32 +08:00
|
|
|
|
this.$notify.info({
|
2016-07-27 14:15:02 +08:00
|
|
|
|
title: '消息',
|
2016-10-04 17:33:32 +08:00
|
|
|
|
message: '这是一条消息的提示消息'
|
2016-07-27 14:15:02 +08:00
|
|
|
|
});
|
|
|
|
|
},
|
2016-08-19 14:45:08 +08:00
|
|
|
|
|
2016-08-26 19:46:45 +08:00
|
|
|
|
open6() {
|
2016-10-04 17:33:32 +08:00
|
|
|
|
this.$notify.error({
|
2016-07-27 14:15:02 +08:00
|
|
|
|
title: '错误',
|
2016-10-04 17:33:32 +08:00
|
|
|
|
message: '这是一条错误的提示消息'
|
2016-07-27 14:15:02 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
```
|
2016-08-23 16:57:58 +08:00
|
|
|
|
:::
|
2016-07-27 14:15:02 +08:00
|
|
|
|
|
2016-11-29 09:55:16 +08:00
|
|
|
|
### 带有偏移
|
|
|
|
|
|
|
|
|
|
让 Notification 偏移一些位置
|
|
|
|
|
|
|
|
|
|
::: demo Element Notification 组件提供设置偏移量的功能, 通过设置 `origin` 字段,可以使弹出的消息距屏幕上方偏移一段距离, 在同一时刻,所有的 Notification 实例应当只有同一个偏移量。
|
|
|
|
|
```html
|
|
|
|
|
<template>
|
|
|
|
|
<el-button
|
|
|
|
|
plain
|
|
|
|
|
@click="open7">
|
|
|
|
|
偏移的消息
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
methods: {
|
|
|
|
|
open7() {
|
|
|
|
|
this.$notify({
|
|
|
|
|
message: '吴尔丹',
|
|
|
|
|
origin: 100
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
```
|
|
|
|
|
:::
|
|
|
|
|
|
2016-08-26 19:46:45 +08:00
|
|
|
|
### 全局方法
|
2016-07-27 14:15:02 +08:00
|
|
|
|
|
2016-08-26 19:46:45 +08:00
|
|
|
|
Element 为 `Vue.prototype` 添加了全局方法 `$notify`。因此在 vue instance 中可以采用本页面中的方式调用 Notification。
|
2016-07-27 14:15:02 +08:00
|
|
|
|
|
2016-08-26 19:46:45 +08:00
|
|
|
|
### 单独引用
|
2016-07-27 14:15:02 +08:00
|
|
|
|
|
2016-08-26 19:46:45 +08:00
|
|
|
|
单独引入 Notification:
|
2016-07-27 14:15:02 +08:00
|
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
|
import { Notification } from 'element-ui';
|
|
|
|
|
```
|
|
|
|
|
|
2016-10-04 17:33:32 +08:00
|
|
|
|
此时调用方法为 `Notification(options)`。我们也为每个 type 定义了各自的方法,如 `Notification.success(options)`。
|
2016-07-27 14:15:02 +08:00
|
|
|
|
|
2016-08-26 19:46:45 +08:00
|
|
|
|
### Options
|
2016-07-27 14:15:02 +08:00
|
|
|
|
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
|
|
|
|
|
|---------- |-------------- |---------- |-------------------------------- |-------- |
|
2016-09-02 13:56:47 +08:00
|
|
|
|
| title | 标题 | string | — | — |
|
|
|
|
|
| message | 说明文字 | string | — | — |
|
|
|
|
|
| type | 主题样式,如果不在可选值内将被忽略 | string | success/warning/info/error | — |
|
|
|
|
|
| duration | 显示时间, 毫秒。设为 0 则不会自动关闭 | number | — | 4500 |
|
|
|
|
|
| onClose | 关闭时的回调函数 | function | — | — |
|
2016-11-29 09:55:16 +08:00
|
|
|
|
| origin | 偏移的距离,在同一时刻,所有的 Notification 实例应当只有同一个偏移量 | number | — | 0 |
|
2016-11-13 20:03:17 +08:00
|
|
|
|
|
|
|
|
|
### 方法
|
|
|
|
|
调用 `Notification` 或 `this.$notify` 会返回当前 Notification 的实例。如果需要手动关闭实例,可以调用它的 `close` 方法。
|
|
|
|
|
| 方法名 | 说明 |
|
|
|
|
|
| ---- | ---- |
|
|
|
|
|
| close | 关闭当前的 Notification |
|