fmui-base 2.0.64 → 2.0.66
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/form/table.js +11 -2
- package/lib/react_grid/react_grid.js +9 -7
- package/lib/react_grid/react_grid.less +6 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/lib/form/table.js
CHANGED
|
@@ -1714,8 +1714,17 @@ var PageHome = function (_React$Component) {
|
|
|
1714
1714
|
{ className: t.props.commentField == "default" ? 't-PL10 t-PT10 t-FB1' : 't-DN' },
|
|
1715
1715
|
_react2.default.createElement(
|
|
1716
1716
|
'div',
|
|
1717
|
-
{ className: 'theme-color t-P6 t-FS16 commonwords'
|
|
1718
|
-
|
|
1717
|
+
{ className: 'theme-color t-P6 t-FS16 commonwords' },
|
|
1718
|
+
_react2.default.createElement(
|
|
1719
|
+
'div',
|
|
1720
|
+
{ onClick: this.selectCommonwords.bind(this) },
|
|
1721
|
+
'\u5E38\u7528\u8BED'
|
|
1722
|
+
),
|
|
1723
|
+
_react2.default.createElement(
|
|
1724
|
+
'div',
|
|
1725
|
+
{ onClick: this.skipToCommonwordsSet.bind(this) },
|
|
1726
|
+
'\u7F16\u8F91'
|
|
1727
|
+
)
|
|
1719
1728
|
),
|
|
1720
1729
|
_react2.default.createElement(
|
|
1721
1730
|
'div',
|
|
@@ -114,6 +114,7 @@ var MyGrid = function (_React$Component) {
|
|
|
114
114
|
} else if (item.portletCode == 'cyyy') {
|
|
115
115
|
t.getShoucangAppInfo(item.id);
|
|
116
116
|
t.getOftenList(item.id);
|
|
117
|
+
_this.getRemindCount();
|
|
117
118
|
} else if (item.portletCode !== 'tbgl') {
|
|
118
119
|
var _params = {
|
|
119
120
|
code: item.portletCode,
|
|
@@ -143,12 +144,12 @@ var MyGrid = function (_React$Component) {
|
|
|
143
144
|
_db2.default.reactGrid.getNewHomePageTodoData(params).then(function (content) {
|
|
144
145
|
var openModule = content.hpOpenModule ? content.hpOpenModule : "";
|
|
145
146
|
localStorage.setItem('hpOpenModule', openModule);
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
if (!pageTitle || pageTitle == '') {
|
|
149
|
-
|
|
150
|
-
}
|
|
151
|
-
setPageTitle(pageTitle);
|
|
147
|
+
// let todoData = content.todoData != null ? content.todoData.entity : {};
|
|
148
|
+
// let pageTitle = todoData.pageTitle;
|
|
149
|
+
// if (!pageTitle || pageTitle == '') {
|
|
150
|
+
// pageTitle = '一网通办管理平台'
|
|
151
|
+
// }
|
|
152
|
+
// setPageTitle(pageTitle);
|
|
152
153
|
});
|
|
153
154
|
};
|
|
154
155
|
|
|
@@ -1802,7 +1803,8 @@ var MyGrid = function (_React$Component) {
|
|
|
1802
1803
|
rowHeight: 20,
|
|
1803
1804
|
width: window.innerWidth,
|
|
1804
1805
|
isDraggable: this.state.isDraggable,
|
|
1805
|
-
margin: [0,
|
|
1806
|
+
margin: [0, 15],
|
|
1807
|
+
containerPadding: [8, 8]
|
|
1806
1808
|
},
|
|
1807
1809
|
this.state.data.map(function (item) {
|
|
1808
1810
|
return t.portalContent(item) || null;
|
|
@@ -85,7 +85,6 @@
|
|
|
85
85
|
background-size: 100% 100%;
|
|
86
86
|
// background-color: #fff;
|
|
87
87
|
}
|
|
88
|
-
|
|
89
88
|
.react-grid-component {
|
|
90
89
|
background-color: #fff;
|
|
91
90
|
.react-grid-banner-img {
|
|
@@ -134,6 +133,9 @@
|
|
|
134
133
|
padding: 5px 0;
|
|
135
134
|
background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
|
|
136
135
|
border-radius: 4px 0 0 4px;
|
|
136
|
+
background-image: linear-gradient(180deg, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0.60) 100%);
|
|
137
|
+
border: 1px solid rgba(255,255,255,1);
|
|
138
|
+
border-radius: 4px;
|
|
137
139
|
}
|
|
138
140
|
|
|
139
141
|
.t-filter-bar-wrapper {
|
|
@@ -296,6 +298,8 @@
|
|
|
296
298
|
}
|
|
297
299
|
|
|
298
300
|
.react-grid-component.banner {
|
|
301
|
+
width: 100% !important;
|
|
302
|
+
transform: translate(0, 8px) !important;
|
|
299
303
|
background-color: transparent;
|
|
300
304
|
}
|
|
301
305
|
|
|
@@ -397,6 +401,7 @@
|
|
|
397
401
|
|
|
398
402
|
.t-badge .badge-inner {
|
|
399
403
|
line-height: 13px;
|
|
404
|
+
font-weight: 400;
|
|
400
405
|
border: 2px solid #fff;
|
|
401
406
|
}
|
|
402
407
|
}
|