Message 消息提示

说明

信息反馈组件,在右上角显示,并自动消失。有多种不同的提示状态可选择。

代码示例

>{}
<template>
  <div>
    <Button type="dashed" @click="btnInfo('all')"> 按钮触发消息提示 </Button>
    <Button type="error" @click="btnInfo('error')"> 消息error </Button>
    <Button type="warning" @click="btnInfo('warning')"> 消息warning </Button>
    <Button type="success" @click="btnInfo('success')"> 消息success </Button>
    <Button type="info" @click="btnInfo('info')"> 消息info </Button>
    <Button type="text" @click="btnInfo('text')"> 内容消息text </Button>
    <Button type="primary" @click="btnInfo('clear')">
      <Badge dot> 清除所有消息 </Badge>
    </Button>

    <notice
      title="测试消息"
      :show="true"
      type="warning"
      style="top:2rem;right:2rem"
    >
      <div style="padding:0.4rem;padding-top:0">
        <Icon type="icon-star" /> 我是自动关闭的
      </div>
    </notice>
  </div>
</template>

<script>
export default {
  setup(props, { refs }) {
    // 使用外挂方式引入,具体查看demo
    const $plus = window.$plus;
    const reactive = $plus.vue.reactive;
    const getCurrentInstance = $plus.getCurrentInstance;
    const message = $plus.message;

    /** 消息框 */
    const btnInfo = (type) => {
      // const message =$plus.message;
      let resp;
      switch (type) {
        case 'clear':
          resp = message.clear();
          break;
        case 'error':
          resp = message.error('网络异常提示!', { pars: 'errorid121212' });
          break;
        case 'warning':
          resp = message.warning('网络警告提示!', {
            text: '网络警告内容',
            pars: { id: 5 },
          });
          break;
        case 'success':
          resp = message.success('成功提示!');
          break;
        case 'info':
          resp = message.info('info提示!', {
            text: '消息提示内容',
            pars: '点击传递的参数',
            // 不自动关闭
            timeout: 0,
          });
          break;
        case 'text':
          resp = message.text('消息提示', {
            text: '消息提示内容',
            pars: '点击传递的参数',
            // 不自动关闭
            timeout: 0,
          });
          break;
        default:
          resp = message.notice({
            title: '点击标题的参数',
            /** 传入点击标题的参数 */
            pars: 'ddd',
            text: `<p>网页可见区域宽:document.body.clientWidth</p>
网页可见区域高:<b>document.body.clientHeight</b>
网页可见区域宽:document.body.offsetWidth (包括边线的宽)
网页可见区域高:document.body.offsetHeight (包括边线的宽)
屏幕可用工作区宽度:window.screen.availWidth`,
            timeout: 80,
            type: 'success', //'info', 'error', 'success', 'warning', 'loading'
          });
      }
      console.log('message', resp);
    };

    return { btnInfo };
  },
};
</script>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91

API

Message instance

实例类别

  • Message.info(config);

  • Message.error(config);

  • Message.warning(config);

  • Message.success(config);

  • Message.text(config);

  • config 参数说明
参数说明类型默认值
第一个提示标题String-
第二个配置参数Object-
  • 配置参数说明
参数名说明类型默认值
text消息内容String-
pars点击传递的参数String-
timeout消失时间,为0时不消失Number-

TIP

清除所有消息提示

Message.clear();
1

Last Updated: