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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import React, { Component } from 'react'
// import { is, fromJS } from 'immutable'
import { notification, Spin } from 'antd'
// import { BankOutlined } from '@ant-design/icons'
 
import Api from '@/api'
import MKEmitter from '@/utils/events.js'
import './index.scss'
 
export default class SysMessage extends Component {
  state = {
    loading: true
  }
 
  getAppList = () => {
    let param = {
      func: 's_get_kei'
    }
 
    Api.getSystemConfig(param).then(result => {
      if (result.status) {
        let applist = result.data.map(item => {
          item.sublist = item.data_detail || []
          item.sublist = item.sublist.map(cell => {
            cell.ID = cell.d_id
            return cell
          })
 
          return item
        })
        let selectApp = applist[0] || null
 
        this.setState({ applist, selectApp })
      } else {
        notification.warning({
          top: 92,
          message: result.message,
          duration: 5
        })
      }
    })
  }
 
 
  reloadMenuView = (menuId) => {
    if (menuId !== 'message_page_id') return
 
    this.getAppList()
  }
 
  UNSAFE_componentWillMount () {
 
  }
 
  componentDidMount () {
    MKEmitter.addListener('reloadMenuView', this.reloadMenuView)
  }
 
  /**
   * @description 组件销毁,清除state更新
   */
  componentWillUnmount () {
    this.setState = () => {
      return
    }
    MKEmitter.removeListener('reloadMenuView', this.reloadMenuView)
  }
 
  render() {
    const { loading, } = this.state
 
    return (
      <div className="mk-sys-message">
        {loading && <Spin />}
      </div>
    )
  }
}