antd message 提示 jsx

1111

   
      this.$message.open({
        key: 'noticeInfo',
        content: h => (
          
            下载任务已提交,请前往
            this.gotoReportPage}>
              报表中心
            
            查看进度
          
        )
      })



   beforeDestroy() {
    this.$message.destroy()
  },
  deactivated() {
    console.log('beforeRouteLeave  resultPage..')
    this.$message.close('exportNotice')
    // this.$notification.destroy()
  },


  this.$notification.open({
        key: 'exportNotice',
        class: 'myExportNotice',
        // duration: 9999,
        message: h => (
          alert
            class="my-alert"
            type="success"
            message={
              
                下载任务已提交,请前往
                this.gotoReportPage}>
                  {' '}
                  报表中心{' '}
                {' '}
                查看进度
              
            }
          >
        ),
        onClick: () => {
          console.log('Notification Clicked!')
        }
      })

 

2222

你可能感兴趣的:(antd message 提示 jsx)