king
2024-11-07 a02fc6a77fa1b35c6516b2d37108d80e260c6c85
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
import React, { Component } from 'react'
import { notification } from 'antd'
import { MessageFilled } from '@ant-design/icons'
 
import Api from '@/api'
import MKEmitter from '@/utils/events.js'
 
class SysIcon extends Component {
  state = {
    notices: []
  }
 
  componentDidMount () {
    setTimeout(() => {
      this.getMsgList()
    }, 2000)
  }
 
  getMsgList = () => {
    let param = {
      func: 's_get_kei'
    }
 
    Api.getSystemConfig(param).then(result => {
      if (result.status) {
        let notices = result.data || []
 
        this.setState({ notices })
        MKEmitter.emit('sysMessageChange', notices)
 
        setTimeout(() => {
          this.getMsgList()
        }, 600000)
      } else {
        notification.warning({
          top: 92,
          message: result.message,
          duration: 5
        })
      }
    })
  }
 
  open = () => {
    MKEmitter.emit('sysMessageOpen')
  }
 
  render() {
    const { notices } = this.state
 
    return (
      <MessageFilled className="mk-msg-icon" data-title={notices.length ? notices.length : ''} onClick={this.open} />
    )
  }
}
 
export default SysIcon