fmui-base 2.1.91 → 2.1.92

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,7 @@
3
3
  ---npm publish
4
4
 
5
5
  ## 更新日志
6
+ - 2.1.92:鸿蒙样式问题
6
7
  - 2.1.91:流程转交支持修改办理缓急
7
8
  - 2.1.90:退回发起人结束流程调用非正常结束回调
8
9
  - 2.1.89:子表选人组件报错
@@ -106,6 +106,8 @@ var _SelectField = require('saltui/lib/SelectField');
106
106
 
107
107
  var _SelectField2 = _interopRequireDefault(_SelectField);
108
108
 
109
+ require('./processInfo.less');
110
+
109
111
  function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }
110
112
 
111
113
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
@@ -7395,7 +7397,7 @@ var PageHome = function (_React$Component) {
7395
7397
  var bottomStyle = { paddingBottom: this.state.bottom + 'px' };
7396
7398
  return _react2.default.createElement(
7397
7399
  'div',
7398
- { style: bottomStyle, className: 'approval-details' },
7400
+ { className: 'approval-details' },
7399
7401
  _react2.default.createElement(
7400
7402
  'div',
7401
7403
  { className: this.state.errorMsg == '任务不存在' ? "dd-state-page" : 't-DN' },
@@ -0,0 +1,4 @@
1
+ .approval-details{
2
+ padding-bottom: calc(62px + constant(safe-area-inset-bottom)) !important; /* 兼容旧版 iOS */
3
+ padding-bottom: calc(62px + env(safe-area-inset-bottom)) !important; /* 兼容新版 iOS */
4
+ }
@@ -458,7 +458,8 @@ var PageHome = function (_React$Component2) {
458
458
  //获取内容显示区域高度
459
459
  var hasBottomTabHidden = document.getElementById("hasBottomTab") ? document.getElementById("hasBottomTab").value : "0";
460
460
  var hasBottomTab = props.hasBottomTab ? props.hasBottomTab : hasBottomTabHidden;
461
- var winHeight = getScrollHigh(1, 1, hasBottomTab);
461
+ var winHeight = getScrollHigh(1, 1, hasBottomTab, 1); // 50为标题栏高度
462
+
462
463
 
463
464
  var constIndex = document.getElementById("activeTabIndex").value; //常量
464
465
  var activeIndex = props.activeIndex ? props.activeIndex : 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fmui-base",
3
- "version": "2.1.91",
3
+ "version": "2.1.92",
4
4
  "title": "fmui-base",
5
5
  "description": "fmui移动端组件",
6
6
  "main": "lib/index.js",