fmui-base 2.2.2 → 2.2.4
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 +2 -0
- package/lib/msg_list/msgList.js +9 -10
- package/lib/poppage/check.js +1 -1
- package/lib/process_info/FlowChart.js +1 -1
- package/lib/upload/upload.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/lib/msg_list/msgList.js
CHANGED
|
@@ -1070,28 +1070,27 @@ var PageHome = function (_React$Component2) {
|
|
|
1070
1070
|
props.id + ' ' + props.name
|
|
1071
1071
|
);
|
|
1072
1072
|
};
|
|
1073
|
+
// let undoDiv = <div> 待办{this.state.titleCount.undo == 0 ? '' : <span style={{ color: 'red' }}>({this.state.titleCount.undo})</span>}</div>;
|
|
1074
|
+
// let unreadDiv = <div> 待阅{this.state.titleCount.unread == 0 ? '' : <span style={{ color: 'red' }}>({this.state.titleCount.unread})</span>}</div>;
|
|
1075
|
+
|
|
1073
1076
|
var undoDiv = _react2.default.createElement(
|
|
1074
1077
|
'div',
|
|
1075
|
-
|
|
1078
|
+
{ className: 't-badge' },
|
|
1076
1079
|
' \u5F85\u529E',
|
|
1077
1080
|
this.state.titleCount.undo == 0 ? '' : _react2.default.createElement(
|
|
1078
1081
|
'span',
|
|
1079
|
-
{
|
|
1080
|
-
|
|
1081
|
-
this.state.titleCount.undo,
|
|
1082
|
-
')'
|
|
1082
|
+
{ className: 'badge-inner' },
|
|
1083
|
+
this.state.titleCount.undo
|
|
1083
1084
|
)
|
|
1084
1085
|
);
|
|
1085
1086
|
var unreadDiv = _react2.default.createElement(
|
|
1086
1087
|
'div',
|
|
1087
|
-
|
|
1088
|
+
{ className: 't-badge' },
|
|
1088
1089
|
' \u5F85\u9605',
|
|
1089
1090
|
this.state.titleCount.unread == 0 ? '' : _react2.default.createElement(
|
|
1090
1091
|
'span',
|
|
1091
|
-
{
|
|
1092
|
-
|
|
1093
|
-
this.state.titleCount.unread,
|
|
1094
|
-
')'
|
|
1092
|
+
{ className: 'badge-inner' },
|
|
1093
|
+
this.state.titleCount.unread
|
|
1095
1094
|
)
|
|
1096
1095
|
);
|
|
1097
1096
|
return _react2.default.createElement(
|
package/lib/poppage/check.js
CHANGED
|
@@ -535,7 +535,7 @@ var PageHome = function (_React$Component) {
|
|
|
535
535
|
_react2.default.createElement(
|
|
536
536
|
Box,
|
|
537
537
|
{ className: isIcon || readOnly ? 't-DN' : 't-PR4' },
|
|
538
|
-
_react2.default.createElement('b', { className: 'iconfont icon-
|
|
538
|
+
_react2.default.createElement('b', { className: 'iconfont icon-right-arrow t-rotate-180 t-FCc t-FS16' })
|
|
539
539
|
)
|
|
540
540
|
)
|
|
541
541
|
)
|
|
@@ -155,7 +155,7 @@ var Page = function (_React$Component) {
|
|
|
155
155
|
{ className: 'recording-card' },
|
|
156
156
|
_react2.default.createElement(
|
|
157
157
|
'div',
|
|
158
|
-
{ className:
|
|
158
|
+
{ className: i == this.state.processLogList.length - 1 ? "recording-message theme-color active" : "recording-message theme-color" },
|
|
159
159
|
_react2.default.createElement(
|
|
160
160
|
'div',
|
|
161
161
|
{ className: 't-omit', style: { color: '#999999' } },
|
package/lib/upload/upload.js
CHANGED
|
@@ -633,7 +633,7 @@ var PageHome = function (_React$Component) {
|
|
|
633
633
|
),
|
|
634
634
|
_react2.default.createElement(
|
|
635
635
|
'div',
|
|
636
|
-
{ className: t.state.uploadType == 'image' ? "t-FBH t-fw" : "upload" },
|
|
636
|
+
{ className: t.state.uploadType == 'image' ? "t-FBH t-fw t-JCR" : "upload" },
|
|
637
637
|
t.state.initList.map(function (item, i) {
|
|
638
638
|
function calculate(no) {
|
|
639
639
|
var a = no / 1024;
|