fmui-base 2.1.37 → 2.1.39
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/css/processList.css +8 -0
- package/lib/css/react_grid.css +1013 -0
- package/lib/form/subForm.js +7 -7
- package/lib/process_list/processList.less +5 -0
- package/lib/react_grid/react_grid copy 1.js +1670 -0
- package/lib/react_grid/react_grid copy 2.js +722 -0
- package/lib/react_grid/react_grid copy 3.js +1502 -0
- package/lib/react_grid/react_grid copy 4.js +1421 -0
- package/lib/react_grid/react_grid copy 5.js +1670 -0
- package/lib/react_grid/react_grid copy.js +1811 -0
- package/package.json +1 -1
- /package/lib/{ScrollList → scrollList}/BottomTip.js +0 -0
- /package/lib/{ScrollList → scrollList}/EmptyContent.js +0 -0
- /package/lib/{ScrollList → scrollList}/Item.js +0 -0
- /package/lib/{ScrollList → scrollList}/ScrollList.styl +0 -0
- /package/lib/{ScrollList → scrollList}/TagList.js +0 -0
- /package/lib/{ScrollList → scrollList}/index.js +0 -0
- /package/lib/{ScrollList/ScrollList.js → scrollList/scrollList.js} +0 -0
- /package/lib/{ScrollList → scrollList}/style.js +0 -0
package/lib/form/subForm.js
CHANGED
|
@@ -537,10 +537,10 @@ var PageHome = function (_React$Component) {
|
|
|
537
537
|
var key = itemPa.itemCode;
|
|
538
538
|
var title = itemPa.itemTitle;
|
|
539
539
|
var subTbl = itemParamList;
|
|
540
|
-
if ($('.' + uniqueName).length > 0) {
|
|
541
|
-
$('.' + uniqueName).html('');
|
|
542
|
-
} else if ($('.hejidiv-' + subTableName).html() == '') {
|
|
543
|
-
$('.hejidiv-' + subTableName).html('合计:');
|
|
540
|
+
if ($('.' + t.replaceDollar(uniqueName)).length > 0) {
|
|
541
|
+
$('.' + t.replaceDolla(uniqueName)).html('');
|
|
542
|
+
} else if ($('.hejidiv-' + t.replaceDolla(subTableName)).html() == '') {
|
|
543
|
+
$('.hejidiv-' + t.replaceDolla(subTableName)).html('合计:');
|
|
544
544
|
}
|
|
545
545
|
var subValue = '';
|
|
546
546
|
if (subTbl != null && subTbl.length > 0) {
|
|
@@ -565,10 +565,10 @@ var PageHome = function (_React$Component) {
|
|
|
565
565
|
subValue = '';
|
|
566
566
|
}
|
|
567
567
|
if (subValue != '') {
|
|
568
|
-
if ($('.' + uniqueName).length > 0) {
|
|
569
|
-
$('.' + uniqueName).html(title + " " + subValue + "; ");
|
|
568
|
+
if ($('.' + t.replaceDolla(uniqueName)).length > 0) {
|
|
569
|
+
$('.' + t.replaceDolla(uniqueName)).html(title + " " + subValue + "; ");
|
|
570
570
|
} else {
|
|
571
|
-
$('.hejidiv-' + subTableName).append('<span class="' + uniqueName + '">' + title + " " + subValue + "; " + "</span>");
|
|
571
|
+
$('.hejidiv-' + t.replaceDolla(subTableName)).append('<span class="' + uniqueName + '">' + title + " " + subValue + "; " + "</span>");
|
|
572
572
|
}
|
|
573
573
|
}
|
|
574
574
|
}
|