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
|
@@ -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
|
-
{
|
|
7400
|
+
{ className: 'approval-details' },
|
|
7399
7401
|
_react2.default.createElement(
|
|
7400
7402
|
'div',
|
|
7401
7403
|
{ className: this.state.errorMsg == '任务不存在' ? "dd-state-page" : 't-DN' },
|
|
@@ -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;
|