fmui-base 2.0.94 → 2.0.95

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.0.95:弹出选择内容高度优化
6
7
  - 2.0.94:子表字段支持计算,批示意见支持上传附件
7
8
  - 2.0.93:流程组件支持作废,表单组件关联字段支持绑定子表字段bug修复
8
9
  - 2.0.92:流程组件支持作废功能
package/lib/.DS_Store ADDED
Binary file
@@ -74,8 +74,9 @@ var PageHome = function (_React$Component) {
74
74
  } else if (isiOS == true) {
75
75
  height = window.screen.availHeight - 70 - 44 - 45 + "px";
76
76
  } else {
77
- if (window.screen.availHeight) {
78
- height = '550px';
77
+ if (window.innerHeight) {
78
+ // height = '550px';
79
+ height = window.innerHeight - 70 - 44 - 45 + "px";
79
80
  }
80
81
  }
81
82
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fmui-base",
3
- "version": "2.0.94",
3
+ "version": "2.0.95",
4
4
  "title": "fmui-base",
5
5
  "description": "fmui移动端组件",
6
6
  "main": "lib/index.js",