king
2025-02-14 f128d679cacda2a6b5b730ad0368b5fe73f887f7
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
import React, {Component} from 'react'
import PropTypes from 'prop-types'
import { is, fromJS } from 'immutable'
import { Button, Modal, notification } from 'antd'
 
import SettingForm from './settingform'
import Api from '@/api'
 
class TransferWrap extends Component {
  static propTpyes = {
    MenuID: PropTypes.string
  }
 
  state = {
    visible: false,
    loading: false,
    translist: []
  }
 
  shouldComponentUpdate (nextProps, nextState) {
    return !is(fromJS(this.state), fromJS(nextState))
  }
 
  verifySubmit = () => {
    const { MenuID } = this.props
 
    this.verifyRef.handleConfirm().then(res => {
      let param = {
        func: 's_sVersionDetail_CloudAdd',
        kei_no: sessionStorage.getItem('kei_no'),
        kei_no_detail: sessionStorage.getItem('typename'),
        lang: sessionStorage.getItem('lang'),
        BID: res.VersionName,
        VType: 'mob_menu',
        TrdMenuID: MenuID
      }
 
      this.setState({
        loading: true
      })
      
      Api.getCloudConfig(param).then(result => {
        if (result.status) {
          notification.success({
            top: 92,
            message: '操作成功!',
            duration: 3
          })
          this.setState({
            loading: false,
            visible: false
          })
        } else {
          this.setState({
            loading: false
          })
          notification.warning({
            top: 92,
            message: result.message,
            duration: 5
          })
        }
      }, () => {
        this.setState({
          loading: false
        })
      })
    })
  }
 
  getTransList = () => {
    let param = {
      func: 's_get_sVersion',
      dataM: 'Y',
      PageSize: 9999,
      PageIndex: 1,
      OrderCol: 'ID desc'
    }
 
    this.setState({
      visible: true,
      loading: false
    })
 
    Api.getCloudConfig(param).then(result => {
      if (result.status) {
        this.setState({
          translist: result.data
        })
      } else {
        notification.warning({
          top: 92,
          message: result.message,
          duration: 5
        })
      }
    })
  }
 
  render () {
    const { visible, loading, translist } = this.state
 
    return (
      <div className="transfer-wrap">
        <Button icon="pull-request" className="mk-border-green" onClick={this.getTransList}>传输号</Button>
        <Modal
          title="加入传输号"
          visible={visible}
          width={500}
          maskClosable={false}
          okText="提交"
          onOk={this.verifySubmit}
          onCancel={() => { this.setState({ visible: false }) }}
          confirmLoading={loading}
          destroyOnClose
        >
          <SettingForm
            translist={translist}
            wrappedComponentRef={(inst) => this.verifyRef = inst}
          />
        </Modal>
      </div>
    )
  }
}
 
export default TransferWrap