fmui-base 1.0.49 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -32
- package/lib/db/variables.js +1 -0
- package/lib/form/form.js +267 -108
- package/lib/form/subForm.js +3 -3
- package/lib/form/table.js +25 -14
- package/lib/form_info/formInfo.js +2 -2
- package/lib/poppage/table/table.js +2 -2
- package/lib/process_batch/processBatch.js +3 -3
- package/lib/process_info/FlowChart.js +62 -99
- package/lib/process_info/processInfo.js +117 -80
- package/lib/process_list/processList.js +94 -68
- package/lib/process_list/processList.less +1 -1
- package/lib/selectMember/select.js +281 -351
- package/lib/selectMember/select.less +21 -10
- package/lib/signature/sign.js +2 -2
- package/lib/upload/upload.js +38 -23
- package/package.json +3 -2
|
@@ -30,6 +30,10 @@ var _RadioField = require('saltui/lib/RadioField');
|
|
|
30
30
|
|
|
31
31
|
var _RadioField2 = _interopRequireDefault(_RadioField);
|
|
32
32
|
|
|
33
|
+
var _Field = require('saltui/lib/Field');
|
|
34
|
+
|
|
35
|
+
var _Field2 = _interopRequireDefault(_Field);
|
|
36
|
+
|
|
33
37
|
var _TextareaField = require('saltui/lib/TextareaField');
|
|
34
38
|
|
|
35
39
|
var _TextareaField2 = _interopRequireDefault(_TextareaField);
|
|
@@ -113,7 +117,8 @@ function _inherits(subClass, superClass) { if (typeof superClass !== "function"
|
|
|
113
117
|
var HBox = _Boxs2.default.HBox,
|
|
114
118
|
Box = _Boxs2.default.Box,
|
|
115
119
|
VBox = _Boxs2.default.VBox;
|
|
116
|
-
var ButtonGroup = _Button2.default.ButtonGroup
|
|
120
|
+
var ButtonGroup = _Button2.default.ButtonGroup,
|
|
121
|
+
TextButton = _Button2.default.TextButton;
|
|
117
122
|
//import UserInfo from '../approval-details/UserInfo';
|
|
118
123
|
|
|
119
124
|
var extFile = "";
|
|
@@ -2988,6 +2993,22 @@ var PageHome = function (_React$Component) {
|
|
|
2988
2993
|
var mainTableId = data.dataId;
|
|
2989
2994
|
allEditIdsArray.push(mainTableId);
|
|
2990
2995
|
|
|
2996
|
+
//关联表
|
|
2997
|
+
var relatedTbl = data.relatedTbl;
|
|
2998
|
+
for (var i = 0; i < relatedTbl.length; i++) {
|
|
2999
|
+
var relatedTblItem = relatedTbl[i];
|
|
3000
|
+
if (relatedTblItem) {
|
|
3001
|
+
var relatedMainTblData = relatedTblItem.relatedMainTblData;
|
|
3002
|
+
if (relatedMainTblData) {
|
|
3003
|
+
for (var j = 0; j < relatedMainTblData.length; j++) {
|
|
3004
|
+
if (relatedMainTblData[j].key == "id") {
|
|
3005
|
+
allEditIdsArray.push(relatedMainTblData[j].value);
|
|
3006
|
+
}
|
|
3007
|
+
}
|
|
3008
|
+
}
|
|
3009
|
+
}
|
|
3010
|
+
}
|
|
3011
|
+
|
|
2991
3012
|
//子表id
|
|
2992
3013
|
var subTbl = data.subTbl;
|
|
2993
3014
|
for (var i = 0; i < subTbl.length; i++) {
|
|
@@ -5324,41 +5345,41 @@ var PageHome = function (_React$Component) {
|
|
|
5324
5345
|
/* buttonCodeList.push({'buttonCode':'BASE_SUMBIT','buttonName':'通过'});
|
|
5325
5346
|
buttonCodeList.push({'buttonCode':'PAGE_SAVE','buttonName':'保存'});*/
|
|
5326
5347
|
if (buttonCodeList.length > 4) {
|
|
5327
|
-
buttonList.push({ name: '更多', type: '
|
|
5348
|
+
buttonList.push({ name: '更多', type: 'text', display: 'inline', no: -1 });
|
|
5328
5349
|
for (var c = 0; c < buttonCodeList.length; c++) {
|
|
5329
5350
|
var buttonCode = buttonCodeList[c]['buttonCode'];
|
|
5330
5351
|
var buttonName = buttonCodeList[c]['buttonName'];
|
|
5331
5352
|
if (c < 3) {
|
|
5332
5353
|
if (buttonCode == 'BACK') {
|
|
5333
|
-
buttonList.push({ name: buttonName, type: '
|
|
5354
|
+
buttonList.push({ name: buttonName, type: 'danger', display: 'inline', no: 2 });
|
|
5334
5355
|
} else if (buttonCode == 'PAGE_SAVE') {
|
|
5335
|
-
buttonList.push({ name: buttonName, type: 'secondary', display: '
|
|
5356
|
+
buttonList.push({ name: buttonName, type: 'secondary', display: 'inline', no: 13 });
|
|
5336
5357
|
} else if (buttonCode == 'BASE_SUMBIT') {
|
|
5337
5358
|
var sumbmitName = buttonName;
|
|
5338
5359
|
if (dataId == '' || isStart == true) {
|
|
5339
5360
|
sumbmitName = '提交';
|
|
5340
5361
|
}
|
|
5341
|
-
buttonList.push({ name: sumbmitName, type: 'primary', display: '
|
|
5362
|
+
buttonList.push({ name: sumbmitName, type: 'primary', display: 'inline', no: 1 });
|
|
5342
5363
|
} else if (buttonCode == 'BASE_TRANSFER') {
|
|
5343
|
-
buttonList.push({ name: buttonName, type: 'secondary', display: '
|
|
5364
|
+
buttonList.push({ name: buttonName, type: 'secondary', display: 'inline', no: 3 });
|
|
5344
5365
|
} else if (buttonCode == 'HELP_CIRCULATE') {
|
|
5345
|
-
buttonList.push({ name: buttonName, type: 'secondary', display: '
|
|
5366
|
+
buttonList.push({ name: buttonName, type: 'secondary', display: 'inline', no: 4 });
|
|
5346
5367
|
} else if (buttonCode == 'HELP_FORWARD') {
|
|
5347
|
-
buttonList.push({ name: buttonName, type: 'secondary', display: '
|
|
5368
|
+
buttonList.push({ name: buttonName, type: 'secondary', display: 'inline', no: 20 });
|
|
5348
5369
|
} else if (buttonCode == 'BASE_JUMP') {
|
|
5349
|
-
buttonList.push({ name: buttonName, type: 'secondary', display: '
|
|
5370
|
+
buttonList.push({ name: buttonName, type: 'secondary', display: 'inline', no: 5 });
|
|
5350
5371
|
} else if (buttonCode == 'HELP_ADDLOTS') {
|
|
5351
|
-
buttonList.push({ name: buttonName, type: 'secondary', display: '
|
|
5372
|
+
buttonList.push({ name: buttonName, type: 'secondary', display: 'inline', no: 6 });
|
|
5352
5373
|
} else if (buttonCode == 'BASE_END') {
|
|
5353
|
-
buttonList.push({ name: buttonName, type: 'secondary', display: '
|
|
5374
|
+
buttonList.push({ name: buttonName, type: 'secondary', display: 'inline', no: 8 });
|
|
5354
5375
|
} else if (buttonCode == 'BASE_INVALID') {
|
|
5355
|
-
buttonList.push({ name: buttonName, type: 'secondary', display: '
|
|
5376
|
+
buttonList.push({ name: buttonName, type: 'secondary', display: 'inline', no: 9 });
|
|
5356
5377
|
} else if (buttonCode == 'HELP_DISTRIBUTE') {
|
|
5357
|
-
buttonList.push({ name: buttonName, type: 'secondary', display: '
|
|
5378
|
+
buttonList.push({ name: buttonName, type: 'secondary', display: 'inline', no: 'distributeFlow' });
|
|
5358
5379
|
} else if (buttonCode == 'MAILSEND') {
|
|
5359
|
-
buttonList.push({ name: buttonName, type: 'secondary', display: '
|
|
5380
|
+
buttonList.push({ name: buttonName, type: 'secondary', display: 'inline', no: 18 });
|
|
5360
5381
|
} else {
|
|
5361
|
-
buttonList.push({ name: buttonName, type: 'secondary', display: '
|
|
5382
|
+
buttonList.push({ name: buttonName, type: 'secondary', display: 'inline', no: buttonCode });
|
|
5362
5383
|
}
|
|
5363
5384
|
} else if (c == 3) {
|
|
5364
5385
|
//buttonList.push({name:'更多',type:'secondary',display:'banner',no:-1});
|
|
@@ -5376,35 +5397,35 @@ var PageHome = function (_React$Component) {
|
|
|
5376
5397
|
var buttonName = buttonCodeList[c]['buttonName'];
|
|
5377
5398
|
|
|
5378
5399
|
if (buttonCode.indexOf('BACK') >= 0) {
|
|
5379
|
-
buttonList.push({ name: buttonName, type: '
|
|
5400
|
+
buttonList.push({ name: buttonName, type: 'danger', display: 'inline', no: 2 });
|
|
5380
5401
|
} else if (buttonCode == 'PAGE_SAVE') {
|
|
5381
|
-
buttonList.push({ name: buttonName, type: 'secondary', display: '
|
|
5402
|
+
buttonList.push({ name: buttonName, type: 'secondary', display: 'inline', no: 13 });
|
|
5382
5403
|
} else if (buttonCode == 'BASE_SUMBIT') {
|
|
5383
5404
|
var sumbmitName = buttonName;
|
|
5384
5405
|
if (dataId == '' || isStart == true) {
|
|
5385
5406
|
sumbmitName = '提交';
|
|
5386
5407
|
}
|
|
5387
|
-
buttonList.push({ name: sumbmitName, type: 'primary', display: '
|
|
5408
|
+
buttonList.push({ name: sumbmitName, type: 'primary', display: 'inline', no: 1 });
|
|
5388
5409
|
} else if (buttonCode == 'BASE_TRANSFER') {
|
|
5389
|
-
buttonList.push({ name: buttonName, type: 'secondary', display: '
|
|
5410
|
+
buttonList.push({ name: buttonName, type: 'secondary', display: 'inline', no: 3 });
|
|
5390
5411
|
} else if (buttonCode == 'HELP_CIRCULATE') {
|
|
5391
|
-
buttonList.push({ name: buttonName, type: 'secondary', display: '
|
|
5412
|
+
buttonList.push({ name: buttonName, type: 'secondary', display: 'inline', no: 4 });
|
|
5392
5413
|
} else if (buttonCode == 'BASE_JUMP') {
|
|
5393
|
-
buttonList.push({ name: buttonName, type: 'secondary', display: '
|
|
5414
|
+
buttonList.push({ name: buttonName, type: 'secondary', display: 'inline', no: 5 });
|
|
5394
5415
|
} else if (buttonCode == 'HELP_ADDLOTS') {
|
|
5395
|
-
buttonList.push({ name: buttonName, type: 'secondary', display: '
|
|
5416
|
+
buttonList.push({ name: buttonName, type: 'secondary', display: 'inline', no: 6 });
|
|
5396
5417
|
} else if (buttonCode == 'BASE_END') {
|
|
5397
|
-
buttonList.push({ name: buttonName, type: 'secondary', display: '
|
|
5418
|
+
buttonList.push({ name: buttonName, type: 'secondary', display: 'inline', no: 8 });
|
|
5398
5419
|
} else if (buttonCode == 'BASE_INVALID') {
|
|
5399
|
-
buttonList.push({ name: buttonName, type: 'secondary', display: '
|
|
5420
|
+
buttonList.push({ name: buttonName, type: 'secondary', display: 'inline', no: 9 });
|
|
5400
5421
|
} else if (buttonCode == 'HELP_DISTRIBUTE') {
|
|
5401
|
-
buttonList.push({ name: buttonName, type: 'secondary', display: '
|
|
5422
|
+
buttonList.push({ name: buttonName, type: 'secondary', display: 'inline', no: 'distributeFlow' });
|
|
5402
5423
|
} else if (buttonCode == 'HELP_FORWARD') {
|
|
5403
|
-
buttonList.push({ name: buttonName, type: 'secondary', display: '
|
|
5424
|
+
buttonList.push({ name: buttonName, type: 'secondary', display: 'inline', no: 20 });
|
|
5404
5425
|
} else if (buttonCode == 'MAILSEND') {
|
|
5405
|
-
buttonList.push({ name: buttonName, type: 'secondary', display: '
|
|
5426
|
+
buttonList.push({ name: buttonName, type: 'secondary', display: 'inline', no: 18 });
|
|
5406
5427
|
} else {
|
|
5407
|
-
buttonList.push({ name: buttonName, type: 'secondary', display: '
|
|
5428
|
+
buttonList.push({ name: buttonName, type: 'secondary', display: 'inline', no: buttonCode });
|
|
5408
5429
|
}
|
|
5409
5430
|
}
|
|
5410
5431
|
}
|
|
@@ -5744,11 +5765,11 @@ var PageHome = function (_React$Component) {
|
|
|
5744
5765
|
}, {
|
|
5745
5766
|
key: 'changeUrgeContent',
|
|
5746
5767
|
value: function changeUrgeContent(newValue) {
|
|
5747
|
-
var regRule =
|
|
5768
|
+
var regRule = /(\ud83c[\udf00-\udfff])|(\ud83d[\udc00-\ude4f\ude80-\udeff])|[\u2600-\u2B55]/g;
|
|
5748
5769
|
if (newValue.match(regRule)) {
|
|
5749
5770
|
_Toast2.default.show({
|
|
5750
5771
|
type: 'error',
|
|
5751
|
-
content: '
|
|
5772
|
+
content: '请输入非表情字符'
|
|
5752
5773
|
});
|
|
5753
5774
|
return false;
|
|
5754
5775
|
}
|
|
@@ -5762,11 +5783,11 @@ var PageHome = function (_React$Component) {
|
|
|
5762
5783
|
}, {
|
|
5763
5784
|
key: 'changeBackReasonText',
|
|
5764
5785
|
value: function changeBackReasonText(newValue) {
|
|
5765
|
-
var regRule =
|
|
5786
|
+
var regRule = /(\ud83c[\udf00-\udfff])|(\ud83d[\udc00-\ude4f\ude80-\udeff])|[\u2600-\u2B55]/g;
|
|
5766
5787
|
if (newValue.match(regRule)) {
|
|
5767
5788
|
_Toast2.default.show({
|
|
5768
5789
|
type: 'error',
|
|
5769
|
-
content: '
|
|
5790
|
+
content: '请输入非表情字符'
|
|
5770
5791
|
});
|
|
5771
5792
|
return false;
|
|
5772
5793
|
}
|
|
@@ -5799,11 +5820,11 @@ var PageHome = function (_React$Component) {
|
|
|
5799
5820
|
}, {
|
|
5800
5821
|
key: 'changeSendMailText',
|
|
5801
5822
|
value: function changeSendMailText(newValue) {
|
|
5802
|
-
var regRule =
|
|
5823
|
+
var regRule = /(\ud83c[\udf00-\udfff])|(\ud83d[\udc00-\ude4f\ude80-\udeff])|[\u2600-\u2B55]/g;
|
|
5803
5824
|
if (newValue.match(regRule)) {
|
|
5804
5825
|
_Toast2.default.show({
|
|
5805
5826
|
type: 'error',
|
|
5806
|
-
content: '
|
|
5827
|
+
content: '请输入非表情字符'
|
|
5807
5828
|
});
|
|
5808
5829
|
return false;
|
|
5809
5830
|
}
|
|
@@ -5817,11 +5838,11 @@ var PageHome = function (_React$Component) {
|
|
|
5817
5838
|
}, {
|
|
5818
5839
|
key: 'changeRecoverReasonText',
|
|
5819
5840
|
value: function changeRecoverReasonText(newValue) {
|
|
5820
|
-
var regRule =
|
|
5841
|
+
var regRule = /(\ud83c[\udf00-\udfff])|(\ud83d[\udc00-\ude4f\ude80-\udeff])|[\u2600-\u2B55]/g;
|
|
5821
5842
|
if (newValue.match(regRule)) {
|
|
5822
5843
|
_Toast2.default.show({
|
|
5823
5844
|
type: 'error',
|
|
5824
|
-
content: '
|
|
5845
|
+
content: '请输入非表情字符'
|
|
5825
5846
|
});
|
|
5826
5847
|
return false;
|
|
5827
5848
|
}
|
|
@@ -6355,7 +6376,7 @@ var PageHome = function (_React$Component) {
|
|
|
6355
6376
|
var bottomStyle = { paddingBottom: this.state.bottom + 'px' };
|
|
6356
6377
|
return _react2.default.createElement(
|
|
6357
6378
|
'div',
|
|
6358
|
-
{ style: bottomStyle },
|
|
6379
|
+
{ style: bottomStyle, className: 'approval-details' },
|
|
6359
6380
|
_react2.default.createElement(
|
|
6360
6381
|
'div',
|
|
6361
6382
|
{ className: this.state.errorMsg == '任务不存在' ? "dd-state-page" : 't-DN' },
|
|
@@ -6406,8 +6427,17 @@ var PageHome = function (_React$Component) {
|
|
|
6406
6427
|
{ className: this.state.pageStatus == '0' ? '' : 't-DN' },
|
|
6407
6428
|
_react2.default.createElement(
|
|
6408
6429
|
'div',
|
|
6409
|
-
{ className: '
|
|
6410
|
-
|
|
6430
|
+
{ className: 'approval-header' },
|
|
6431
|
+
_react2.default.createElement(
|
|
6432
|
+
'div',
|
|
6433
|
+
{ className: 'approval-card' },
|
|
6434
|
+
_react2.default.createElement(
|
|
6435
|
+
'span',
|
|
6436
|
+
{ className: 'approval-card-left' },
|
|
6437
|
+
this.state.processTitle
|
|
6438
|
+
),
|
|
6439
|
+
_react2.default.createElement('img', { className: 'approval-card-right', src: _variables2.default.approvalCardIcon })
|
|
6440
|
+
)
|
|
6411
6441
|
),
|
|
6412
6442
|
_react2.default.createElement(
|
|
6413
6443
|
_Tab2.default,
|
|
@@ -6417,7 +6447,7 @@ var PageHome = function (_React$Component) {
|
|
|
6417
6447
|
{ key: '0', title: '\u8868\u5355\u4FE1\u606F' },
|
|
6418
6448
|
_react2.default.createElement(
|
|
6419
6449
|
'div',
|
|
6420
|
-
{ id: 'approveWaterMarker', style: { top: 0, minHeight: 200, overflow: 'hidden' } },
|
|
6450
|
+
{ id: 'approveWaterMarker', className: 'approval-form-content', style: { top: 0, minHeight: 200, overflow: 'hidden' } },
|
|
6421
6451
|
_react2.default.createElement(
|
|
6422
6452
|
'div',
|
|
6423
6453
|
{ className: this.state.activeItemIndex == 0 ? '' : 't-DN' },
|
|
@@ -6465,9 +6495,13 @@ var PageHome = function (_React$Component) {
|
|
|
6465
6495
|
_Button2.default.Group,
|
|
6466
6496
|
null,
|
|
6467
6497
|
this.state.buttonList.map(function (item, i) {
|
|
6468
|
-
return _react2.default.createElement(
|
|
6498
|
+
return item.type == 'text' ? _react2.default.createElement(
|
|
6499
|
+
'span',
|
|
6500
|
+
{ 'class': 't-FCblue', onClick: t.handleSubmit.bind(t, item.no) },
|
|
6501
|
+
item.name
|
|
6502
|
+
) : _react2.default.createElement(
|
|
6469
6503
|
_Button2.default,
|
|
6470
|
-
{ type: item.type, code: item.buttonCode, display: item.display, onClick: t.handleSubmit.bind(t, item.no) },
|
|
6504
|
+
{ type: item.type, className: item.name == '保存草稿' ? 'button_save' : '', code: item.buttonCode, display: item.display, onClick: t.handleSubmit.bind(t, item.no) },
|
|
6471
6505
|
item.name
|
|
6472
6506
|
);
|
|
6473
6507
|
}.bind(this))
|
|
@@ -6478,10 +6512,10 @@ var PageHome = function (_React$Component) {
|
|
|
6478
6512
|
{ className: this.state.pageStatus == '1' && this.state.operate == 1 ? '' : 't-DN' },
|
|
6479
6513
|
_react2.default.createElement(
|
|
6480
6514
|
'div',
|
|
6481
|
-
{ className: this.state.nextActivityList.length == 0 && this.state.nextRadomList.length == 0 ? '' : '', style: { background: '#f2f3f5',
|
|
6515
|
+
{ className: this.state.nextActivityList.length == 0 && this.state.nextRadomList.length == 0 ? '' : '', style: { background: '#f2f3f5', padding: '10px 5px' } },
|
|
6482
6516
|
_react2.default.createElement(
|
|
6483
6517
|
'span',
|
|
6484
|
-
{ className: 't-
|
|
6518
|
+
{ className: 't-FCblue' },
|
|
6485
6519
|
_react2.default.createElement('i', { className: 'iconfont icon-back t-rotate-180 t-FS14 t-FR' }),
|
|
6486
6520
|
'\u5BA1\u6279\u73AF\u8282'
|
|
6487
6521
|
)
|
|
@@ -6711,10 +6745,10 @@ var PageHome = function (_React$Component) {
|
|
|
6711
6745
|
{ className: this.state.pageStatus == '1' && this.state.operate == 3 ? '' : 't-DN' },
|
|
6712
6746
|
_react2.default.createElement(
|
|
6713
6747
|
'div',
|
|
6714
|
-
{ style: { background: '#f2f3f5',
|
|
6748
|
+
{ style: { background: '#f2f3f5', padding: '10px 5px' } },
|
|
6715
6749
|
_react2.default.createElement(
|
|
6716
6750
|
'span',
|
|
6717
|
-
{ className: 't-
|
|
6751
|
+
{ className: 't-FCblue' },
|
|
6718
6752
|
_react2.default.createElement('i', { className: 'iconfont icon-back t-rotate-180 t-FS14 t-FR' }),
|
|
6719
6753
|
'\u8F6C\u4EA4\u73AF\u8282'
|
|
6720
6754
|
)
|
|
@@ -6773,10 +6807,10 @@ var PageHome = function (_React$Component) {
|
|
|
6773
6807
|
{ className: this.state.operate == 2 && this.state.canBackActivity.length > 0 ? '' : 't-DN' },
|
|
6774
6808
|
_react2.default.createElement(
|
|
6775
6809
|
'div',
|
|
6776
|
-
{ style: { background: '#f2f3f5',
|
|
6810
|
+
{ style: { background: '#f2f3f5', padding: '10px 5px' } },
|
|
6777
6811
|
_react2.default.createElement(
|
|
6778
6812
|
'span',
|
|
6779
|
-
{ className: 't-
|
|
6813
|
+
{ className: 't-FCblue' },
|
|
6780
6814
|
_react2.default.createElement('i', { className: 'iconfont icon-back t-rotate-180 t-FS14 t-FR' }),
|
|
6781
6815
|
'\u9000\u56DE\u73AF\u8282'
|
|
6782
6816
|
)
|
|
@@ -6803,22 +6837,25 @@ var PageHome = function (_React$Component) {
|
|
|
6803
6837
|
placeholder: '请输入退回原因',
|
|
6804
6838
|
value: this.state.backReasonText,
|
|
6805
6839
|
onChange: this.changeBackReasonText.bind(this) }),
|
|
6806
|
-
_react2.default.createElement(
|
|
6807
|
-
|
|
6808
|
-
|
|
6809
|
-
|
|
6810
|
-
|
|
6811
|
-
|
|
6812
|
-
|
|
6813
|
-
|
|
6814
|
-
|
|
6815
|
-
|
|
6816
|
-
|
|
6817
|
-
|
|
6818
|
-
|
|
6819
|
-
|
|
6820
|
-
|
|
6821
|
-
|
|
6840
|
+
_react2.default.createElement(
|
|
6841
|
+
_Field2.default,
|
|
6842
|
+
{ label: '\u9644\u4EF6', layout: 'h', multiLine: true },
|
|
6843
|
+
_react2.default.createElement(_upload2.default, {
|
|
6844
|
+
required: false,
|
|
6845
|
+
canAdd: true,
|
|
6846
|
+
canDel: true,
|
|
6847
|
+
initList: this.state.backInitList,
|
|
6848
|
+
initIds: '',
|
|
6849
|
+
dir: 'approve',
|
|
6850
|
+
onChange: function onChange(value, isInit) {
|
|
6851
|
+
t.handleChangePic(value);
|
|
6852
|
+
},
|
|
6853
|
+
onDel: function onDel(value) {
|
|
6854
|
+
t.handleChangePic(value);
|
|
6855
|
+
},
|
|
6856
|
+
ref: 'backRef'
|
|
6857
|
+
})
|
|
6858
|
+
),
|
|
6822
6859
|
_react2.default.createElement(_CheckboxField2.default, {
|
|
6823
6860
|
data: this.state.shortMessageList,
|
|
6824
6861
|
className: '',
|
|
@@ -6831,10 +6868,10 @@ var PageHome = function (_React$Component) {
|
|
|
6831
6868
|
{ className: this.state.operate == 5 && this.state.nextJumpActivity.length > 0 ? '' : 't-DN' },
|
|
6832
6869
|
_react2.default.createElement(
|
|
6833
6870
|
'div',
|
|
6834
|
-
{ style: { background: '#f2f3f5',
|
|
6871
|
+
{ style: { background: '#f2f3f5', padding: '10px 5px' } },
|
|
6835
6872
|
_react2.default.createElement(
|
|
6836
6873
|
'span',
|
|
6837
|
-
{ className: 't-
|
|
6874
|
+
{ className: 't-FCblue' },
|
|
6838
6875
|
_react2.default.createElement('i', { className: 'iconfont icon-back t-rotate-180 t-FS14 t-FR' }),
|
|
6839
6876
|
'\u8DF3\u8F6C\u73AF\u8282'
|
|
6840
6877
|
)
|
|
@@ -6870,10 +6907,10 @@ var PageHome = function (_React$Component) {
|
|
|
6870
6907
|
{ className: this.state.operate == 6 ? '' : 't-DN' },
|
|
6871
6908
|
_react2.default.createElement(
|
|
6872
6909
|
'div',
|
|
6873
|
-
{ style: { background: '#f2f3f5',
|
|
6910
|
+
{ style: { background: '#f2f3f5', padding: '10px 5px' } },
|
|
6874
6911
|
_react2.default.createElement(
|
|
6875
6912
|
'span',
|
|
6876
|
-
{ className: 't-
|
|
6913
|
+
{ className: 't-FCblue' },
|
|
6877
6914
|
_react2.default.createElement('i', { className: 'iconfont icon-back t-rotate-180 t-FS14 t-FR' }),
|
|
6878
6915
|
'\u52A0\u7B7E'
|
|
6879
6916
|
)
|
|
@@ -6902,10 +6939,10 @@ var PageHome = function (_React$Component) {
|
|
|
6902
6939
|
{ className: this.state.operate == 4 ? '' : 't-DN' },
|
|
6903
6940
|
_react2.default.createElement(
|
|
6904
6941
|
'div',
|
|
6905
|
-
{ style: { background: '#f2f3f5',
|
|
6942
|
+
{ style: { background: '#f2f3f5', padding: '10px 5px' } },
|
|
6906
6943
|
_react2.default.createElement(
|
|
6907
6944
|
'span',
|
|
6908
|
-
{ className: 't-
|
|
6945
|
+
{ className: 't-FCblue' },
|
|
6909
6946
|
_react2.default.createElement('i', { className: 'iconfont icon-back t-rotate-180 t-FS14 t-FR' }),
|
|
6910
6947
|
'\u4F20\u9605'
|
|
6911
6948
|
)
|
|
@@ -6934,10 +6971,10 @@ var PageHome = function (_React$Component) {
|
|
|
6934
6971
|
{ className: this.state.operate == 20 ? '' : 't-DN' },
|
|
6935
6972
|
_react2.default.createElement(
|
|
6936
6973
|
'div',
|
|
6937
|
-
{ style: { background: '#f2f3f5',
|
|
6974
|
+
{ style: { background: '#f2f3f5', padding: '10px 5px' } },
|
|
6938
6975
|
_react2.default.createElement(
|
|
6939
6976
|
'span',
|
|
6940
|
-
{ className: 't-
|
|
6977
|
+
{ className: 't-FCblue' },
|
|
6941
6978
|
_react2.default.createElement('i', { className: 'iconfont icon-back t-rotate-180 t-FS14 t-FR' }),
|
|
6942
6979
|
'\u8F6C\u53D1'
|
|
6943
6980
|
)
|
|
@@ -6966,10 +7003,10 @@ var PageHome = function (_React$Component) {
|
|
|
6966
7003
|
{ className: this.state.operate == 12 && this.state.urgeDataList.length > 0 ? '' : 't-DN' },
|
|
6967
7004
|
_react2.default.createElement(
|
|
6968
7005
|
'div',
|
|
6969
|
-
{ style: { background: '#f2f3f5',
|
|
7006
|
+
{ style: { background: '#f2f3f5', padding: '10px 5px' } },
|
|
6970
7007
|
_react2.default.createElement(
|
|
6971
7008
|
'span',
|
|
6972
|
-
{ className: 't-
|
|
7009
|
+
{ className: 't-FCblue' },
|
|
6973
7010
|
_react2.default.createElement('i', { className: 'iconfont icon-back t-rotate-180 t-FS14 t-FR' }),
|
|
6974
7011
|
'\u50AC\u529E\u73AF\u8282'
|
|
6975
7012
|
)
|
|
@@ -7007,10 +7044,10 @@ var PageHome = function (_React$Component) {
|
|
|
7007
7044
|
{ className: this.state.operate == 14 ? '' : 't-DN' },
|
|
7008
7045
|
_react2.default.createElement(
|
|
7009
7046
|
'div',
|
|
7010
|
-
{ style: { background: '#f2f3f5',
|
|
7047
|
+
{ style: { background: '#f2f3f5', padding: '10px 5px' } },
|
|
7011
7048
|
_react2.default.createElement(
|
|
7012
7049
|
'span',
|
|
7013
|
-
{ className: 't-
|
|
7050
|
+
{ className: 't-FCblue' },
|
|
7014
7051
|
_react2.default.createElement('i', { className: 'iconfont icon-back t-rotate-180 t-FS14 t-FR' }),
|
|
7015
7052
|
'\u6536\u56DE\u73AF\u8282'
|
|
7016
7053
|
)
|
|
@@ -7029,10 +7066,10 @@ var PageHome = function (_React$Component) {
|
|
|
7029
7066
|
{ className: this.state.operate == 18 ? '' : 't-DN' },
|
|
7030
7067
|
_react2.default.createElement(
|
|
7031
7068
|
'div',
|
|
7032
|
-
{ style: { background: '#f2f3f5',
|
|
7069
|
+
{ style: { background: '#f2f3f5', padding: '10px 5px' } },
|
|
7033
7070
|
_react2.default.createElement(
|
|
7034
7071
|
'span',
|
|
7035
|
-
{ className: 't-
|
|
7072
|
+
{ className: 't-FCblue' },
|
|
7036
7073
|
_react2.default.createElement('i', { className: 'iconfont icon-back t-rotate-180 t-FS14 t-FR' }),
|
|
7037
7074
|
'\u90AE\u4EF6\u8F6C\u53D1'
|
|
7038
7075
|
)
|
|
@@ -7078,12 +7115,12 @@ var PageHome = function (_React$Component) {
|
|
|
7078
7115
|
null,
|
|
7079
7116
|
_react2.default.createElement(
|
|
7080
7117
|
_Button2.default,
|
|
7081
|
-
{ type: 'secondary', display: '
|
|
7118
|
+
{ type: 'secondary', display: 'inline', onClick: this.handleCancelClick.bind(this) },
|
|
7082
7119
|
'\u53D6\u6D88'
|
|
7083
7120
|
),
|
|
7084
7121
|
_react2.default.createElement(
|
|
7085
7122
|
_Button2.default,
|
|
7086
|
-
{ type: 'primary', display: '
|
|
7123
|
+
{ type: 'primary', display: 'inline', onClick: this.handleSubmitClick.bind(this) },
|
|
7087
7124
|
'\u786E\u8BA4'
|
|
7088
7125
|
)
|
|
7089
7126
|
)
|