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 CHANGED
@@ -3,6 +3,8 @@
3
3
  ---npm publish
4
4
 
5
5
  ## 更新日志
6
+ - 2.2.4:统一待办样式
7
+ - 2.2.3:流程表单样式
6
8
  - 2.2.2:表单多行文本支持浮点型判断
7
9
  - 2.2.1:表单关联增加行隐藏参数
8
10
  - 2.1.99:移动端选人组件,默认展开当前登录人所在组织
@@ -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
- null,
1078
+ { className: 't-badge' },
1076
1079
  ' \u5F85\u529E',
1077
1080
  this.state.titleCount.undo == 0 ? '' : _react2.default.createElement(
1078
1081
  'span',
1079
- { style: { color: 'red' } },
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
- null,
1088
+ { className: 't-badge' },
1088
1089
  ' \u5F85\u9605',
1089
1090
  this.state.titleCount.unread == 0 ? '' : _react2.default.createElement(
1090
1091
  'span',
1091
- { style: { color: 'red' } },
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(
@@ -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-back t-rotate-180 t-FCc t-FS16 t-FS14' })
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: 'recording-message theme-color' },
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' } },
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fmui-base",
3
- "version": "2.2.2",
3
+ "version": "2.2.4",
4
4
  "title": "fmui-base",
5
5
  "description": "fmui移动端组件",
6
6
  "main": "lib/index.js",