notification点击后消失

notification.open({

        message: 'Notification:New Call Inbound',

        description:

         

           

Account:{accountName}

           

Customer:{contactName}

           

Phone#:{phoneNumber}

           

         

,

        icon: ,

        style: {

          backgroundColor: '#FF4D4F'

        },

        duration: null,

        top: 100,

        maxCount: 4,

        onClick: () => {

          history.push(`/Case/view/` + caseId);

          setTimeout(() => {

            notification.destroy()

          }, 1000);

        },

      })

你可能感兴趣的:(notification点击后消失)