fmui-base 1.0.0
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/lib/button/button.js +109 -0
- package/lib/button/index.js +16 -0
- package/lib/care/care.js +55 -0
- package/lib/care/index.js +16 -0
- package/lib/comment_list/List.js +101 -0
- package/lib/comment_list/List.less +3 -0
- package/lib/comment_list/index.js +16 -0
- package/lib/db/db.js +789 -0
- package/lib/db/variables.js +110 -0
- package/lib/form/answer.less +3 -0
- package/lib/form/form.js +2048 -0
- package/lib/form/index.js +16 -0
- package/lib/form/subForm.js +724 -0
- package/lib/form/table.js +1071 -0
- package/lib/index.js +43 -0
- package/lib/loading/index.js +16 -0
- package/lib/loading/loading.js +56 -0
- package/lib/no_data/index.js +16 -0
- package/lib/no_data/no_data.js +72 -0
- package/lib/poppage/check.js +572 -0
- package/lib/poppage/check.less +0 -0
- package/lib/poppage/index.js +16 -0
- package/lib/poppage/table/index.js +16 -0
- package/lib/poppage/table/table.js +776 -0
- package/lib/poppage/table/table.less +35 -0
- package/lib/poppage/tree/index.js +16 -0
- package/lib/poppage/tree/tree.js +705 -0
- package/lib/poppage/tree/tree.less +9 -0
- package/lib/poppage/treetable/index.js +16 -0
- package/lib/poppage/treetable/treetable.js +445 -0
- package/lib/poppage/treetable/treetable.less +9 -0
- package/lib/poppage/utils.js +40 -0
- package/lib/positioning/index.js +16 -0
- package/lib/positioning/positioning.js +136 -0
- package/lib/process_batch/index.js +16 -0
- package/lib/process_batch/pageHome.less +3 -0
- package/lib/process_batch/processBatch.js +1669 -0
- package/lib/process_info/FlowChart.js +231 -0
- package/lib/process_info/RelationProcess.js +173 -0
- package/lib/process_info/index.js +16 -0
- package/lib/process_info/processInfo.js +6090 -0
- package/lib/process_list/index.js +16 -0
- package/lib/process_list/processList.js +1378 -0
- package/lib/process_list/processList.less +5 -0
- package/lib/select-fileno/index.js +16 -0
- package/lib/select-fileno/pageHome.js +722 -0
- package/lib/select-fileno/pageHome.less +0 -0
- package/lib/select-fileno/utils.js +40 -0
- package/lib/select-serialnumber/index.js +16 -0
- package/lib/select-serialnumber/pageHome.js +651 -0
- package/lib/select-serialnumber/pageHome.less +0 -0
- package/lib/select-serialnumber/pageHome1.js +649 -0
- package/lib/select-serialnumber/utils.js +40 -0
- package/lib/selectMember/index.js +16 -0
- package/lib/selectMember/select.js +7061 -0
- package/lib/selectMember/select.less +25 -0
- package/lib/selectMember/utils.js +40 -0
- package/lib/selectMember//347/247/273/345/212/250/347/253/257/351/200/211/344/272/272/347/273/204/344/273/266/350/257/264/346/230/216/346/226/207/346/241/243.md +145 -0
- package/lib/signature/draw.js +268 -0
- package/lib/signature/index.js +16 -0
- package/lib/signature/sign.js +359 -0
- package/lib/signature/sign.less +73 -0
- package/lib/signature//346/211/213/345/206/231/347/255/276/345/220/215/344/275/277/347/224/250/346/226/207/346/241/243.md +12 -0
- package/lib/upload/index.js +16 -0
- package/lib/upload/upload.js +566 -0
- package/package.json +72 -0
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = undefined;
|
|
7
|
+
|
|
8
|
+
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
|
9
|
+
|
|
10
|
+
var _react = require('react');
|
|
11
|
+
|
|
12
|
+
var _react2 = _interopRequireDefault(_react);
|
|
13
|
+
|
|
14
|
+
var _Boxs = require('saltui/lib/Boxs');
|
|
15
|
+
|
|
16
|
+
var _Boxs2 = _interopRequireDefault(_Boxs);
|
|
17
|
+
|
|
18
|
+
var _Avatar = require('saltui/lib/Avatar');
|
|
19
|
+
|
|
20
|
+
var _Avatar2 = _interopRequireDefault(_Avatar);
|
|
21
|
+
|
|
22
|
+
var _db = require('../db/db');
|
|
23
|
+
|
|
24
|
+
var _db2 = _interopRequireDefault(_db);
|
|
25
|
+
|
|
26
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
27
|
+
|
|
28
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
29
|
+
|
|
30
|
+
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
|
|
31
|
+
|
|
32
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
|
|
33
|
+
|
|
34
|
+
var HBox = _Boxs2.default.HBox,
|
|
35
|
+
Box = _Boxs2.default.Box,
|
|
36
|
+
VBox = _Boxs2.default.VBox;
|
|
37
|
+
|
|
38
|
+
var Page = function (_React$Component) {
|
|
39
|
+
_inherits(Page, _React$Component);
|
|
40
|
+
|
|
41
|
+
function Page(props) {
|
|
42
|
+
_classCallCheck(this, Page);
|
|
43
|
+
|
|
44
|
+
var _this = _possibleConstructorReturn(this, (Page.__proto__ || Object.getPrototypeOf(Page)).call(this, props));
|
|
45
|
+
|
|
46
|
+
_this.state = {
|
|
47
|
+
processLogList: []
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
return _this;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
_createClass(Page, [{
|
|
54
|
+
key: 'componentDidMount',
|
|
55
|
+
value: function componentDidMount() {
|
|
56
|
+
var t = this;
|
|
57
|
+
var taskId = this.props.taskId;
|
|
58
|
+
var listType = this.props.listType;
|
|
59
|
+
var processInstanceId = this.props.processInstanceId;
|
|
60
|
+
var dealwhithId = processInstanceId;
|
|
61
|
+
if (listType == "0") {
|
|
62
|
+
dealwhithId = taskId;
|
|
63
|
+
}
|
|
64
|
+
_db2.default.FlowModuleAPI.queryFlowChart({ taskId: dealwhithId, listType: listType }).then(function (content) {
|
|
65
|
+
// var allActivityList = content.allActivityList;//所有的流程节点
|
|
66
|
+
// var processLogList = content.processLogList;//流程日志
|
|
67
|
+
//var processLogList = content.processLogList;//流程已办节点
|
|
68
|
+
var processLogList = content.processLogList;
|
|
69
|
+
t.setState({
|
|
70
|
+
processLogList: processLogList
|
|
71
|
+
});
|
|
72
|
+
}).catch(function (error) {});
|
|
73
|
+
}
|
|
74
|
+
}, {
|
|
75
|
+
key: 'render',
|
|
76
|
+
value: function render() {
|
|
77
|
+
|
|
78
|
+
var t = this;
|
|
79
|
+
var index = this.state.index;
|
|
80
|
+
|
|
81
|
+
//样式格式化
|
|
82
|
+
function formatIcon(type) {
|
|
83
|
+
if (type == 'startevent') {
|
|
84
|
+
return "iconfont icon-begin";
|
|
85
|
+
} else if (type == 'endevent') {
|
|
86
|
+
return "iconfont icon-end";
|
|
87
|
+
} else if (type == 'usertask') {
|
|
88
|
+
return "iconfont icon-mine";
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
//名称
|
|
93
|
+
function dealactionname(item) {
|
|
94
|
+
var name = '';
|
|
95
|
+
if (item.dealactionname) {
|
|
96
|
+
name += item.dealactionname;
|
|
97
|
+
if (item.nextactivityname) {
|
|
98
|
+
name += '至' + item.nextactivityname;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
return name;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
return _react2.default.createElement(
|
|
105
|
+
'div',
|
|
106
|
+
{ className: 't-BCf t-PT10 t-PB10 t-PR' },
|
|
107
|
+
_react2.default.createElement('div', { className: 'dd-process-dec' }),
|
|
108
|
+
this.state.processLogList.map(function (item, i) {
|
|
109
|
+
var nameHtml = "";
|
|
110
|
+
if (item.receivenames != null && item.receivenames != '') {
|
|
111
|
+
var receivenames = item.receivenames.split('|');
|
|
112
|
+
var delContent = '(该用户账号已被删除,请联系管理员修改流程)';
|
|
113
|
+
var delContent1 = '(该用户账号已被删除)';
|
|
114
|
+
nameHtml = receivenames.map(function (item, index) {
|
|
115
|
+
var names = item.replace(delContent, '');
|
|
116
|
+
if (item.indexOf(delContent1) > -1) {
|
|
117
|
+
names = "";
|
|
118
|
+
}
|
|
119
|
+
return _react2.default.createElement(
|
|
120
|
+
'span',
|
|
121
|
+
null,
|
|
122
|
+
index == 0 ? names : "|" + names,
|
|
123
|
+
_react2.default.createElement(
|
|
124
|
+
'i',
|
|
125
|
+
{ className: item.indexOf(delContent) > -1 ? "t-FCred" : 't-DN' },
|
|
126
|
+
delContent
|
|
127
|
+
),
|
|
128
|
+
_react2.default.createElement(
|
|
129
|
+
'i',
|
|
130
|
+
{ className: item.indexOf(delContent1) > -1 ? "t-FCred" : 't-DN' },
|
|
131
|
+
delContent1
|
|
132
|
+
)
|
|
133
|
+
);
|
|
134
|
+
});
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
return _react2.default.createElement(
|
|
138
|
+
HBox,
|
|
139
|
+
{ className: 't-PR' },
|
|
140
|
+
_react2.default.createElement(
|
|
141
|
+
Box,
|
|
142
|
+
{ className: 't-W44' },
|
|
143
|
+
_react2.default.createElement('div', { className: 'dd-border-o dd-Bgreen' })
|
|
144
|
+
),
|
|
145
|
+
_react2.default.createElement(
|
|
146
|
+
Box,
|
|
147
|
+
{ flex: 1, className: 't-PR t-M10' },
|
|
148
|
+
_react2.default.createElement(
|
|
149
|
+
Box,
|
|
150
|
+
{ className: 't-PA', style: { top: "14", left: "-10" } },
|
|
151
|
+
_react2.default.createElement('img', { src: '../images/triangle.png' })
|
|
152
|
+
),
|
|
153
|
+
_react2.default.createElement(
|
|
154
|
+
Box,
|
|
155
|
+
{ className: 'dd-boxshow t-R6' },
|
|
156
|
+
_react2.default.createElement(
|
|
157
|
+
Box,
|
|
158
|
+
{ className: 't-PT16 t-PR16 t-PL16 t-PB4 dd-bottom-border' },
|
|
159
|
+
_react2.default.createElement(
|
|
160
|
+
Box,
|
|
161
|
+
{ className: 't-omit' },
|
|
162
|
+
item.curactivityname
|
|
163
|
+
),
|
|
164
|
+
_react2.default.createElement(
|
|
165
|
+
Box,
|
|
166
|
+
{ className: item.dealaction == 'commit' || item.dealaction == 'pass' || item.dealaction == 'transfer' || item.dealaction == 'addSign' || item.dealaction == 'jump' || item.dealaction == 'end' || item.dealaction == 'cancel' || item.dealaction == 'recall' ? 't-FCgreen t-PT0 t-FS12 t-omit' : item.dealaction == 'back' ? 't-FCred t-PT0 t-FS12 t-omit' : 't-PT0 t-FS12 t-omit' },
|
|
167
|
+
dealactionname(item)
|
|
168
|
+
)
|
|
169
|
+
),
|
|
170
|
+
_react2.default.createElement(
|
|
171
|
+
HBox,
|
|
172
|
+
{ className: 't-PL14 t-PR14 t-PT10 t-PB10 t-LH1_5', vAlign: 'center' },
|
|
173
|
+
_react2.default.createElement(
|
|
174
|
+
Box,
|
|
175
|
+
{ className: 't-MR10' },
|
|
176
|
+
_react2.default.createElement(_Avatar2.default, { name: item.dealusername, src: this.state.dealusericon, defaultColor: '#F6BF26' })
|
|
177
|
+
),
|
|
178
|
+
_react2.default.createElement(
|
|
179
|
+
Box,
|
|
180
|
+
{ className: 't-PR5', flex: 1 },
|
|
181
|
+
_react2.default.createElement(
|
|
182
|
+
'div',
|
|
183
|
+
{ className: 't-omit t-FS16' },
|
|
184
|
+
item.dealusername
|
|
185
|
+
),
|
|
186
|
+
_react2.default.createElement(
|
|
187
|
+
'div',
|
|
188
|
+
{ className: 't-FS12 t-omit' },
|
|
189
|
+
item.dealuserorg
|
|
190
|
+
)
|
|
191
|
+
),
|
|
192
|
+
_react2.default.createElement(
|
|
193
|
+
Box,
|
|
194
|
+
{ flex: 2 },
|
|
195
|
+
_react2.default.createElement(
|
|
196
|
+
HBox,
|
|
197
|
+
null,
|
|
198
|
+
_react2.default.createElement(
|
|
199
|
+
Box,
|
|
200
|
+
{ flex: 1, className: 't-omit' },
|
|
201
|
+
item.createdDate
|
|
202
|
+
)
|
|
203
|
+
)
|
|
204
|
+
)
|
|
205
|
+
),
|
|
206
|
+
_react2.default.createElement(
|
|
207
|
+
HBox,
|
|
208
|
+
{ className: item.receivenames == null || item.receivenames == '' ? 't-DN' : 't-PL14 t-PR14 t-PT10 t-PB10 dd-top-border' },
|
|
209
|
+
_react2.default.createElement(
|
|
210
|
+
Box,
|
|
211
|
+
{ flex: 1 },
|
|
212
|
+
'\u63A5\u6536\u8005'
|
|
213
|
+
),
|
|
214
|
+
_react2.default.createElement(
|
|
215
|
+
Box,
|
|
216
|
+
{ flex: 3, className: 't-FAR' },
|
|
217
|
+
nameHtml
|
|
218
|
+
)
|
|
219
|
+
)
|
|
220
|
+
)
|
|
221
|
+
)
|
|
222
|
+
);
|
|
223
|
+
}.bind(this))
|
|
224
|
+
);
|
|
225
|
+
}
|
|
226
|
+
}]);
|
|
227
|
+
|
|
228
|
+
return Page;
|
|
229
|
+
}(_react2.default.Component);
|
|
230
|
+
|
|
231
|
+
exports.default = Page;
|
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = undefined;
|
|
7
|
+
|
|
8
|
+
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
|
9
|
+
|
|
10
|
+
var _react = require('react');
|
|
11
|
+
|
|
12
|
+
var _react2 = _interopRequireDefault(_react);
|
|
13
|
+
|
|
14
|
+
var _Boxs = require('saltui/lib/Boxs');
|
|
15
|
+
|
|
16
|
+
var _Boxs2 = _interopRequireDefault(_Boxs);
|
|
17
|
+
|
|
18
|
+
var _AngleRight = require('salt-icon/lib/AngleRight');
|
|
19
|
+
|
|
20
|
+
var _AngleRight2 = _interopRequireDefault(_AngleRight);
|
|
21
|
+
|
|
22
|
+
var _db = require('../db/db');
|
|
23
|
+
|
|
24
|
+
var _db2 = _interopRequireDefault(_db);
|
|
25
|
+
|
|
26
|
+
var _variables = require('../db/variables');
|
|
27
|
+
|
|
28
|
+
var _variables2 = _interopRequireDefault(_variables);
|
|
29
|
+
|
|
30
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
31
|
+
|
|
32
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
33
|
+
|
|
34
|
+
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
|
|
35
|
+
|
|
36
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
|
|
37
|
+
|
|
38
|
+
var HBox = _Boxs2.default.HBox,
|
|
39
|
+
Box = _Boxs2.default.Box,
|
|
40
|
+
VBox = _Boxs2.default.VBox;
|
|
41
|
+
|
|
42
|
+
var Page = function (_React$Component) {
|
|
43
|
+
_inherits(Page, _React$Component);
|
|
44
|
+
|
|
45
|
+
function Page(props) {
|
|
46
|
+
_classCallCheck(this, Page);
|
|
47
|
+
|
|
48
|
+
var _this = _possibleConstructorReturn(this, (Page.__proto__ || Object.getPrototypeOf(Page)).call(this, props));
|
|
49
|
+
|
|
50
|
+
_this.state = {
|
|
51
|
+
relationList: []
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
return _this;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
_createClass(Page, [{
|
|
58
|
+
key: 'componentDidMount',
|
|
59
|
+
value: function componentDidMount() {
|
|
60
|
+
var t = this;
|
|
61
|
+
t.setState({
|
|
62
|
+
relationList: []
|
|
63
|
+
});
|
|
64
|
+
var processInstanceId = this.props.processInstanceId;
|
|
65
|
+
_db2.default.FlowModuleAPI.getRelationProcess({ processInstanceId: processInstanceId }).then(function (content) {
|
|
66
|
+
t.setState({
|
|
67
|
+
relationList: content
|
|
68
|
+
});
|
|
69
|
+
}).catch(function (error) {});
|
|
70
|
+
}
|
|
71
|
+
}, {
|
|
72
|
+
key: 'clickDetail',
|
|
73
|
+
value: function clickDetail(item) {
|
|
74
|
+
var processInstanceId = item.processInstanceId;
|
|
75
|
+
var formKey = item.formKey;
|
|
76
|
+
var module = item.module;
|
|
77
|
+
var url = "process/processDetails/-99/" + formKey + "/-99/-99/0/" + processInstanceId + "/" + module;
|
|
78
|
+
decodeURI(url);
|
|
79
|
+
location.hash = url;
|
|
80
|
+
//location.reload();
|
|
81
|
+
}
|
|
82
|
+
}, {
|
|
83
|
+
key: 'render',
|
|
84
|
+
value: function render() {
|
|
85
|
+
var t = this;
|
|
86
|
+
return _react2.default.createElement(
|
|
87
|
+
'div',
|
|
88
|
+
{ className: 't-BCf t-PR', style: { minHeight: 200 + 'px' } },
|
|
89
|
+
t.state.relationList.map(function (item, i) {
|
|
90
|
+
return _react2.default.createElement(
|
|
91
|
+
HBox,
|
|
92
|
+
{ className: 't-BCf t-P16 t-PR12 dd-bottom-border', onClick: t.clickDetail.bind(this, item) },
|
|
93
|
+
_react2.default.createElement(
|
|
94
|
+
Box,
|
|
95
|
+
{ flex: 1 },
|
|
96
|
+
_react2.default.createElement(
|
|
97
|
+
'div',
|
|
98
|
+
{ className: 't-omit t-FC3 t-FS16 t-LH1_3 t-MR8' },
|
|
99
|
+
item.title
|
|
100
|
+
),
|
|
101
|
+
_react2.default.createElement(
|
|
102
|
+
HBox,
|
|
103
|
+
{ className: 't-FCddfontblue-40 t-LH1_3 t-PT8 t-FS14', vAlign: 'center' },
|
|
104
|
+
_react2.default.createElement(
|
|
105
|
+
HBox,
|
|
106
|
+
{ vAlign: 'center' },
|
|
107
|
+
_react2.default.createElement(
|
|
108
|
+
Box,
|
|
109
|
+
null,
|
|
110
|
+
_react2.default.createElement('i', { className: 'iconfont icon-time t-MR4 t-FS14' })
|
|
111
|
+
),
|
|
112
|
+
_react2.default.createElement(
|
|
113
|
+
Box,
|
|
114
|
+
null,
|
|
115
|
+
_react2.default.createElement(
|
|
116
|
+
'span',
|
|
117
|
+
{ className: 't-omit t-MR26' },
|
|
118
|
+
item.startTime
|
|
119
|
+
)
|
|
120
|
+
)
|
|
121
|
+
),
|
|
122
|
+
_react2.default.createElement(
|
|
123
|
+
HBox,
|
|
124
|
+
{ flex: 1, vAlign: 'center' },
|
|
125
|
+
_react2.default.createElement(
|
|
126
|
+
Box,
|
|
127
|
+
null,
|
|
128
|
+
_react2.default.createElement(
|
|
129
|
+
'span',
|
|
130
|
+
{ className: 't-list-text t-FCoranger t-omit t-MR4' },
|
|
131
|
+
item.startUserName
|
|
132
|
+
)
|
|
133
|
+
)
|
|
134
|
+
)
|
|
135
|
+
)
|
|
136
|
+
),
|
|
137
|
+
_react2.default.createElement(
|
|
138
|
+
Box,
|
|
139
|
+
null,
|
|
140
|
+
_react2.default.createElement(_AngleRight2.default, { width: 20, fill: '#ccc', className: 'demo-t-list-arrow' })
|
|
141
|
+
)
|
|
142
|
+
);
|
|
143
|
+
}.bind(this)),
|
|
144
|
+
_react2.default.createElement(
|
|
145
|
+
'div',
|
|
146
|
+
{ className: t.state.relationList.length == 0 ? "nodata-wrapper" : "t-DN" },
|
|
147
|
+
_react2.default.createElement(
|
|
148
|
+
VBox,
|
|
149
|
+
{ vAlign: 'center', hAlign: 'center', className: 'nodata' },
|
|
150
|
+
_react2.default.createElement(
|
|
151
|
+
Box,
|
|
152
|
+
null,
|
|
153
|
+
_react2.default.createElement(
|
|
154
|
+
'div',
|
|
155
|
+
null,
|
|
156
|
+
_react2.default.createElement('img', { src: _variables2.default.nodataIcon, alt: '', style: { width: 68 + 'px' } })
|
|
157
|
+
)
|
|
158
|
+
),
|
|
159
|
+
_react2.default.createElement(
|
|
160
|
+
Box,
|
|
161
|
+
{ className: 't-FCc' },
|
|
162
|
+
'\u6682\u65E0\u6570\u636E'
|
|
163
|
+
)
|
|
164
|
+
)
|
|
165
|
+
)
|
|
166
|
+
);
|
|
167
|
+
}
|
|
168
|
+
}]);
|
|
169
|
+
|
|
170
|
+
return Page;
|
|
171
|
+
}(_react2.default.Component);
|
|
172
|
+
|
|
173
|
+
exports.default = Page;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
|
|
7
|
+
var _processInfo = require('./processInfo');
|
|
8
|
+
|
|
9
|
+
Object.defineProperty(exports, 'default', {
|
|
10
|
+
enumerable: true,
|
|
11
|
+
get: function get() {
|
|
12
|
+
return _interopRequireDefault(_processInfo).default;
|
|
13
|
+
}
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|