menuAdd.js
26.7 KB
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
import React from 'react';
import './menu.less'
import axios from '@src/axios/index'
import Utils from '@src/utils/utils'
import SYS_CONFIG from '@src/config/constant.js'
import { NavLink } from 'react-router-dom'
import { API_MENU_MANAGE, API_FILEUPLOAD_MANAGE } from '@src/Api'
import { IconOptionsForm, UserManageBar, MenuOptionsForm } from '@components/Common'
import { Form, Button, Input, Icon, message, Modal, Radio, Checkbox, Col, Row, Upload, Spin } from 'antd'
const FormItem = Form.Item;
const RadioGroup = Radio.Group;
const CheckboxGroup = Checkbox.Group;
const TextArea = Input.TextArea
class MenuAdd extends React.Component {
//终端设备
clientTermFlagsOpts = [
{ label: '安卓', value: 1 },
{ label: 'IOS', value: 2 },
{ label: '微信', value: 4 },
{ label: 'ipad(苹果)', value: 8 },
{ label: 'pad(安卓)', value: 16 },
];
serverTermFlagsOpts = [
{ label: 'PC', value: 32 },
]
state = {
isShowMenuModal: false,//所属菜单弹窗是否展示
menuOptionsArr: [],//菜单弹窗渲染树形数据
checkedObj: {},//选中的菜单
menuInfo: {},//修改带参返回角菜单信息
titleParams: '新增菜单',
termFlagsArr: [],
showOrg: { display: 'block' },
hideOrg: { display: 'none' },
showUploadList:true,
defaultFileList:[],
showError: false,
chgIconSelect:1,
selectTerminal:1,
spinStatus: false
}
componentWillMount() {
document.getElementById('root').scrollIntoView(true);//为ture返回顶部,false为底部
}
async componentDidMount() {
//获取菜单树状图
await this.getMenuTreeList()
//获取跳转参数
this.getRouterParams()
//获取菜单信息
//await this.getMenuByid()
}
// 菜单清空
onRef = (ref) => {
this.child = ref;
}
//选权限时显示菜单图标
chgIconSelect = (e) => {
const { selectTerminal } = this.state
if (e.target.value === 2) {
this.setState({
chgIconSelect: 2,
})
} else {
if (selectTerminal === 2) {
this.setState({
chgIconSelect: 1,
})
} else {
this.setState({
chgIconSelect: 1,
})
}
}
}
//根据菜单ID查询菜单信息
getMenuByid = () => {
let _this = this
this.setState({spinStatus: true})
return new Promise((resolve, reject) => {
const { optTag, id } = this.props.match.params
const { defaultFileList} = this.state
if (!id) {
message.warn('请重新选择,或者刷新页面')
this.props.history.push({
pathname: '/home/permission/menuManage/menu/',
});
return
} else {
//if (id) {
axios.ajax({
url: API_MENU_MANAGE.getModuleByModuleId,
data: {
id
}
}).then(res => {
if (res && Object.keys(res).length > 0) {
let initModuleType
if (optTag === 'updateItem') {
if (res.moduleType === 32) {
initModuleType = _this.getval(_this.serverTermFlagsOpts, res.moduleType)
this.setState({
initModuleType,
selectTerminal: 2,
chgIconSelect: res.menuType ? res.menuType : 1,
termFlagsArr: this.serverTermFlagsOpts,
})
} else {
//渲染已上传图片
let fileObj={}
fileObj.uid=1
fileObj.name=res.iconName
res.menuIcon && res.iconName ? defaultFileList.push(fileObj):""
initModuleType = _this.getval(_this.clientTermFlagsOpts, res.moduleType)
this.setState({
initModuleType,
selectTerminal: 1,
chgIconSelect: res.menuType ? res.menuType : 1,
termFlagsArr: this.clientTermFlagsOpts,
defaultFileList,
})
}
this.props.form.setFieldsValue({ 'parentId': res.parentId })
if (res.parentId === 0) {
this.props.form.setFieldsValue({ 'parentName': res.name })
this.props.form.setFieldsValue({ 'upParentName': res.name })
} else {
this.props.form.setFieldsValue({ 'parentName': res.parentName })
this.props.form.setFieldsValue({ 'upParentName': res.parentName })
}
this.props.form.setFieldsValue({ 'moduleType': res.moduleType })
this.props.form.setFieldsValue({ 'module_Type': initModuleType })
} else if (optTag === 'addNextItem') {
this.props.form.setFieldsValue({ 'parentId': res.id })
this.props.form.setFieldsValue({ 'parentName': res.name })
this.props.form.setFieldsValue({ 'upParentName': res.name })
}
this.setState({spinStatus: false})
resolve(this.setState({
menuInfo: res,
menuSelectedItem: res.menuIcon,
checkedObj: {
key: res.parentId,
val: res.name,
},
parentCheckedObj: res.name
}))
}
})
}
//}
})
}
//获取跳转过来的传参
getRouterParams = () => {
const params = this.props.match.params
if (!params || !params.optTag) {
message.warn('请重新选择,或者刷新页面')
this.props.history.push({
pathname: '/home/permission/menuManage/menu',
});
return
}
if (params.optTag === 'addItem') {
this.setState({
chgIconSelect: 1,
titleParams: '新增菜单',
termFlagsArr: this.clientTermFlagsOpts
})
} else if (params.optTag === 'updateItem') {
this.getMenuByid();
this.setState({
titleParams: '修改菜单',
termFlagsArr: this.clientTermFlagsOpts
})
} else if (params.optTag === 'addNextItem') {
this.getMenuByid();
this.setState({
chgIconSelect: 1,
titleParams: '新增下级菜单',
termFlagsArr: this.clientTermFlagsOpts,
showOrg: { display: 'none' },
hideOrg: { display: 'block' },
})
}
}
//根据菜单名称获取菜单树形结构
getMenuByName = (menuName) => {
axios.ajax({
url: API_MENU_MANAGE.getModuleTreeList,
data: {
moduleName: menuName
}
}).then(res => {
if (res && res.length > 0) {
this.setState({
menuOptionsArr: res
})
} else {
this.setState({
menuOptionsArr: []
})
}
})
}
//获取菜单树状图
getMenuTreeList = (menuName) => {
axios.ajax({
url: API_MENU_MANAGE.getModuleTreeList,
data: {
pageNum: 1,
pageSize: 50
}
}).then(res => {
if (res && res.length > 0) {
this.setState({
menuOptionsArr: res
})
} else {
this.setState({
menuOptionsArr: []
})
}
})
}
//终端机使用标识数据初始化处理
getval = (data, val) => {
if (val === 0) return []
let termFlagsOptsInit = data.map(k => {
if ((k.value & val) === k.value) {
return k.value
}
}).filter(k => k !== undefined)
return termFlagsOptsInit
}
//选择终端
selectTerminal = (e) => {
const { chgIconSelect} = this.state
this.props.form.setFieldsValue({ "moduleType": "" })
this.props.form.setFieldsValue({ "module_Type": "" })
this.clearUploadImgPath()
if (chgIconSelect === 1) {
if (e.target.value === 2) {
this.setState({
selectTerminal: 2,
termFlagsArr: this.serverTermFlagsOpts
})
} else {
this.setState({
selectTerminal: 1,
termFlagsArr: this.clientTermFlagsOpts
})
}
}
if (chgIconSelect === 2) {
if (e.target.value === 2) {
this.setState({
selectTerminal: 2,
termFlagsArr: this.serverTermFlagsOpts
})
} else {
this.setState({
selectTerminal: 1,
termFlagsArr: this.clientTermFlagsOpts
})
}
}
}
//选择终端设备
onChange = (checkedValues) => {
let moduleType
if (checkedValues && checkedValues.length > 0) {
moduleType = checkedValues.reduce((pre, cur) => {
return pre + cur
})
}
this.props.form.setFieldsValue({ moduleType })
}
//获取菜单弹窗选中项
getCheckedObj = (obj) => {
this.setState({
checkedObj: obj
})
}
//获取所属菜单
showMenuModal = () => {
let menuInfo = Utils.trim(this.props.form.getFieldsValue());
this.setState({
isShowMenuModal: true,
checkedObj: {
key: menuInfo.parentId,
val: menuInfo.parentName
}
})
}
//获取所属图标
showIconModal = () => {
let menuInfo = Utils.trim(this.props.form.getFieldsValue());
this.setState({
isShowIconModal: true,
iconCheckedObj: menuInfo.menuIcon,
})
}
//获取图标
getIconObj = (obj) => {
this.setState({
iconCheckedObj: obj
})
}
//获取确定选中图标
handleIconOptions = () => {
const iconCheckedObj = this.state.iconCheckedObj
if (!iconCheckedObj) {
message.warn('请选择对应的图标')
return
} else {
this.setState({
iconCheckedObj
})
this.props.form.setFieldsValue({ 'menuIcon': iconCheckedObj })
this.setState({
isShowIconModal: false
})
}
}
//保存新增菜单
handleOperator = (e) => {
e && e.preventDefault();
let data = Utils.trim(this.props.form.getFieldsValue());
const { optTag } = this.props.match.params
const { menuInfo ,menuIcon} = this.state
const { chgIconSelect,selectTerminal} = this.state
console.log("iconName",data.iconName)
this.props.form.validateFieldsAndScroll((err, values) => {
if (!err) {
this.setState({
spinStatus: true,
})
axios.optAjax({
url: API_MENU_MANAGE.insertModule,
data: {
...data,
id: optTag && optTag === 'updateItem' ? menuInfo.id : ""
}
}).then(res => {
if(res && res.code && res.code !== 0){
this.setState({
spinStatus: false,
})
return
}
message.success(optTag && optTag === 'updateItem' ? '修改成功' : '新增成功')
this.props.history.push({
pathname: '/home/permission/menuManage/menu/',
});
})
}
});
}
//获取确定选中菜单
handleMenuOptions = () => {
const checkedObj = this.state.checkedObj
if (Object.keys(checkedObj).length == 0 || !checkedObj) {
message.warn('请选择对应的菜单')
return
} else {
this.setState({
checkedObj
})
this.props.form.setFieldsValue({ 'parentId': checkedObj.key })
this.props.form.setFieldsValue({ 'parentName': checkedObj.val })
this.props.form.setFieldsValue({ 'upParentName': checkedObj.val })
this.setState({
isShowMenuModal: false
})
}
}
//检查终端机使用标识
chekckTerminal = (rule, value, callback) => {
if (!value || value.length === 0) {
callback('请选择终端机');
} else {
callback();
}
};
//图片转base64
getBase64 = (img, callback)=> {
const reader = new FileReader();
reader.addEventListener('load', () => callback(reader.result));
reader.readAsDataURL(img)
}
//获取上传图片后的路径
onImageUpload = (imageUrl) => {
axios.ajax({
url: API_FILEUPLOAD_MANAGE.base64,
data: {
"imageDatas": [{
"className": "menuImg",
"data": imageUrl
}]
}
}).then(res => {
console.log('res',res)
if(res && res.length > 0){
if(!res[0]==''){
this.setState({
showUploadList: true,
})
this.props.form.setFieldsValue({ 'menuIcon': res[0] })
this.props.form.setFieldsValue({ 'iconName': this.state.defaultFileList[0].name })
message.success(`上传成功`);
}
}
})
}
//清除上传的图片路径
clearUploadImgPath= (imageUrl) => {
this.props.form.setFieldsValue({ 'menuIcon': '' })
this.props.form.setFieldsValue({ 'iconName': ''})
this.setState({
showUploadList: false
})
this.setState({
defaultFileList: []
})
}
render() {
let _this = this
const { getFieldDecorator } = this.props.form;
const { optTag } = this.props.match.params
const { menuInfo, termFlagsArr, selectTerminal ,showUploadList,defaultFileList,showError,chgIconSelect } = this.state
const formItemLayout = {
labelCol: {
md: { span: 12 },
lg: { span: 6 },
},
wrapperCol: {
md: { span: 24 },
lg: { span: 18 },
},
}
const formItemLayout2 = {
labelCol: {
md: { span: 12 },
lg: { span: 3 },
},
wrapperCol: {
md: { span: 24 },
lg: { span: 21 },
},
}
const props = {
accept:"image/*",
action:SYS_CONFIG.baseApi + API_MENU_MANAGE.getModuleTreeList,
showUploadList,
defaultFileList,
headers: {
'Content-Type': 'application/json; charset=UTF-8',
},
beforeUpload(file){
const imgArr = ['image/jpeg', 'image/png', 'image/jpg']
const isJPG = imgArr.indexOf(file.type) === -1
if (isJPG) {
message.error('图片只支持jpeg,png格式');
_this.setState({
showUploadList: false
})
}
const isLt2M = file.size / 1024 / 1024 < 2;
if (!isLt2M) {
message.error('图片不能大于2MB');
_this.setState({
showUploadList: false
})
}
return !isJPG && isLt2M;
},
onChange(info,fileList,e) {
//console.log('info.file.originFileObj',info.file.originFileObj);
if (info.fileList.length >1) {
info.fileList =info.fileList.splice(0,1)
}
console.log("info.fileList",info.fileList)
//this.props.form.setFieldsValue({ 'iconName': info.fileList.name })
_this.setState({
defaultFileList: info.fileList
})
if (info.file.status === 'done') {
_this.getBase64(info.file.originFileObj, imageUrl => {_this.onImageUpload(imageUrl)});
} else if (info.file.status === 'error') {
_this.getBase64(info.file.originFileObj, imageUrl => {_this.onImageUpload(imageUrl)});
}
},
onRemove(file) {
_this.clearUploadImgPath();
},
};
return (
<div className="menuAdd">
<Spin tip="加载中..." spinning = {this.state.spinStatus}>
<div className="nav">
<NavLink replace to={'/home/permission/menuManage/menu'} >菜单管理</NavLink> > <span>{this.state.titleParams}</span>
</div>
<UserManageBar title="基本信息" />
<div className="userInfo menuInfo">
<Form layout="horizontal" className="publicForm">
<Row gutter={24}>
<Col span="8" style={this.state.showOrg}>
<FormItem label="上级菜单:"{...formItemLayout} >
{
getFieldDecorator('parentName', {
rules: [
{ required: true, message: '请选择上级菜单', }
]
//initialValue: optTag && optTag === 'updateItem' ? menuInfo.name :null,
})(
<Input disabled addonAfter={<Icon className="chooseRole" onClick={() => { this.showMenuModal() }} type="search" />} placeholder="上级菜单" />
)
}
</FormItem>
</Col>
<Col span="8" style={this.state.hideOrg}>
<FormItem label="上级菜单:"{...formItemLayout} >
{
getFieldDecorator('upParentName', {
rules: [
{ required: true, message: '请选择上级菜单', }
]
//initialValue: optTag && optTag === 'updateItem' ? menuInfo.name :null,
})(
<Input disabled placeholder="上级菜单" />
)
}
</FormItem>
</Col>
<Col span="8" style={{ display: 'none' }}>
<FormItem >
{
getFieldDecorator('parentId', {
//initialValue: optTag && optTag === 'updateItem' ? menuInfo.parentId :null,
rules: [
{ required: true, message: '请选择上级菜单', }
]
})(
<Input placeholder="" />
)
}
</FormItem>
</Col>
<Col span="8">
<FormItem label="菜单类型:" {...formItemLayout} >
{
getFieldDecorator('menuType', {
initialValue: optTag && optTag === 'updateItem' ? menuInfo.menuType : 1,
rules: [
{ required: true, message: '请选择菜单类型', }
]
})(
<RadioGroup onChange={this.chgIconSelect}>
<Radio value={1}>菜单</Radio>
<Radio value={2}>权限(按钮)</Radio>
</RadioGroup>
)
}
</FormItem>
</Col>
<Col span="8">
<FormItem label="菜单名称:" {...formItemLayout}>
{
getFieldDecorator('name', {
initialValue: optTag && optTag === 'updateItem' ? menuInfo.name : null,
rules: [
{ required: true, message: '请输入菜单名称', },
{ max: 128, whitespace: true, message: '菜单名称最长为128位字符' },
]
})(
<Input placeholder="菜单名称" />
)
}
</FormItem>
</Col>
</Row>
<Row gutter={24}>
<Col span="8">
<FormItem label="菜单link:"{...formItemLayout}>
{
getFieldDecorator('link', {
initialValue: optTag && optTag === 'updateItem' ? menuInfo.link : null,
rules: [
{ required: true, message: '请输入菜单link', },
{ max: 128, message: '菜单link最长为128位字符' },
]
})(
<Input placeholder="菜单link" />
)
}
</FormItem>
</Col>
<Col span="8">
<FormItem label="排序(升序):"{...formItemLayout}>
{
getFieldDecorator('sequence', {
initialValue: optTag && optTag === 'updateItem' ? menuInfo.sequence : "",
rules: [
{ pattern: /^(\s*||\s*[1-9]([0-9]){0,10}\s*)$/, message: '排序必须是正整数,最长为11位字符' },
]
})(
<Input placeholder="排序(升序)" />
)
}
</FormItem>
</Col>
<Col span="8">
<FormItem label="可   见" {...formItemLayout}>
{
getFieldDecorator('status', {
initialValue: optTag && optTag === 'updateItem' ? menuInfo.status : 1,
})(
<RadioGroup>
<Radio value={1}>显示</Radio>
<Radio value={2}>隐藏</Radio>
</RadioGroup>
)
}
</FormItem>
</Col>
</Row>
<Row gutter={24} style={{marginTop:'10px'}}>
<Col span="8">
<FormItem label="选择终端" {...formItemLayout}>
{
getFieldDecorator('selectTerminal', {
initialValue: selectTerminal ? selectTerminal : 1,
})(
<RadioGroup onChange={this.selectTerminal}>
<Radio value={1}>客户端</Radio>
<Radio value={2}>服务端</Radio>
</RadioGroup>
)
}
</FormItem>
</Col>
<Col span="8">
<FormItem label="显示终端" {...formItemLayout}>
{
getFieldDecorator(['module_Type'], {
initialValue: this.state.initModuleType,
rules: [{ required: true, validator: this.chekckTerminal }]
})(
<CheckboxGroup options={termFlagsArr} onChange={this.onChange} style={{ minWidth: 400 }} />
)
}
</FormItem>
</Col>
<Col span="8" style={{ display: 'none' }} >
<FormItem label="终端机使用标识" {...formItemLayout}>
{
getFieldDecorator('moduleType', {
initialValue: "",
})(
<Input />
)
}
</FormItem>
</Col>
</Row>
<Row gutter={24}>
<Col span="8">
{
chgIconSelect===2?
<FormItem label="菜单code"{...formItemLayout}>
{
getFieldDecorator('code', {
initialValue: optTag && optTag === 'updateItem' ? menuInfo.code : null,
rules: [
{ required: true, message: '请输入菜单code', }
]
})(
<Input placeholder="菜单code" disabled={menuInfo.code}/>
)
}
</FormItem>
:
selectTerminal===2?
<FormItem label="菜单图标:"{...formItemLayout}>
{
getFieldDecorator('menuIcon', {
initialValue: optTag && optTag === 'updateItem' ? menuInfo.menuIcon : null,
rules: [
{ required: true, message: '请选择图标', }
]
})(
<Input disabled addonAfter={<Icon className="menuIcon" onClick={() => { this.showIconModal() }} type="search" />} placeholder="菜单图标" />
)
}
</FormItem>
:
<FormItem label="上传图片" {...formItemLayout} >
{
getFieldDecorator('menuIcon', {
initialValue: optTag && optTag === 'updateItem' ? menuInfo.menuIcon : null,
rules: [
{ required: true, message: '请上传图片', }
]
})(
<Input className='visibility' />
)
}
<Upload ref="upload" {...props} className='uploadBtn'>
<Button>
<Icon type="upload" /> 点击上传
</Button>
</Upload>
</FormItem>
}
</Col>
<Col span="8" style={{display :'none'}}>
<FormItem label="图片名称"{...formItemLayout}>
{
getFieldDecorator('iconName', {
})(
<Input />
)
}
</FormItem>
</Col>
</Row>
<div className="detail" >
<UserManageBar title="其他信息" />
</div>
<Row gutter={24} style={{ marginTop: 20 }}>
<Col span="16">
<FormItem label="备   注" {...formItemLayout2}>
{
getFieldDecorator('remark', {
initialValue: optTag && optTag === 'updateItem' ? menuInfo.remark : "",
rules: [{ max: 300, message: '备注最长为300位字符' },]
})(
<TextArea placeholder="备注" rows={8} columns={10} />
)
}
</FormItem>
</Col>
</Row>
</Form>
</div>
<div className="submitBtn" >
<Button type="primary" onClick={this.handleOperator} >保存</Button>
<NavLink to='/home/permission/menuManage/menu'><Button> 返回 </Button></NavLink>
</div>
{/* 所属菜单弹窗 */}
<Modal
title="所属菜单"
visible={this.state.isShowMenuModal}
width={800}
className="modal"
okText="确认"
cancelText="取消"
onOk={this.handleMenuOptions}
onCancel={() => {
this.child.reset();
this.setState({
isShowMenuModal: false
})
}}
>
<MenuOptionsForm
getMenuByName={(orgName) => this.getMenuByName(orgName)}
getMenuTreeList={this.getMenuTreeList}
menuOptionsArr={this.state.menuOptionsArr}
getCheckedObj={this.getCheckedObj}
checkedObj={this.state.checkedObj}
parentCheckedObj={this.state.parentCheckedObj}
onRef={this.onRef}
></MenuOptionsForm>
</Modal>
{/*图标modal*/}
<Modal
title="图标选择"
visible={this.state.isShowIconModal}
width={800}
className="modal"
okText="确认"
cancelText="取消"
onOk={this.handleIconOptions}
onCancel={() => {
this.setState({
isShowIconModal: false
})
}}
>
<IconOptionsForm
iconCheckedObj={this.state.iconCheckedObj}
getIconObj={this.getIconObj}
></IconOptionsForm>
</Modal>
</Spin>
</div>
)
}
}
export default Form.create()(MenuAdd);