easy3wui 1.5.77-beta.3 → 1.5.77-beta2
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 +1 -10
- package/lib/Easy3wFormPage/indexM.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,13 +6,4 @@ npm run compile
|
|
|
6
6
|
npm publish
|
|
7
7
|
|
|
8
8
|
react-data-grid使用6.0.1版本对应的react@16
|
|
9
|
-
7版本未形成稳定版本,暂时使用6.0.1版本;对应的react@18+版本
|
|
10
|
-
https://www.npmjs.com/
|
|
11
|
-
登录npm
|
|
12
|
-
在终端输入npm login ,在登录前一定要将npm源设置为官方源
|
|
13
|
-
// 官方镜像源
|
|
14
|
-
npm config set registry https://registry.npmjs.org/
|
|
15
|
-
// 淘宝镜像源
|
|
16
|
-
npm config set registry https://registry.npmmirror.com/
|
|
17
|
-
检查当前npm源:
|
|
18
|
-
npm config get registry
|
|
9
|
+
7版本未形成稳定版本,暂时使用6.0.1版本;对应的react@18+版本
|
|
@@ -433,7 +433,7 @@ var Easy3wFormPageM = exports.Easy3wFormPageM = function (_Component) {
|
|
|
433
433
|
var newRowItems = [];
|
|
434
434
|
for (var i = 0; i < finalList.length; i++) {
|
|
435
435
|
var item = finalList[i];
|
|
436
|
-
if (!arrNoRowType.includes(item.fieldType)
|
|
436
|
+
if (!arrNoRowType.includes(item.fieldType)) {
|
|
437
437
|
newRowItems.push({ cols: [item] });
|
|
438
438
|
continue;
|
|
439
439
|
}
|
|
@@ -2482,7 +2482,7 @@ var Easy3wFormPageTightM = exports.Easy3wFormPageTightM = function (_Component2)
|
|
|
2482
2482
|
var newRowItems = [];
|
|
2483
2483
|
for (var i = 0; i < finalList.length; i++) {
|
|
2484
2484
|
var item = finalList[i];
|
|
2485
|
-
if (!arrNoRowType.includes(item.fieldType)
|
|
2485
|
+
if (!arrNoRowType.includes(item.fieldType)) {
|
|
2486
2486
|
newRowItems.push({ cols: [item] });
|
|
2487
2487
|
continue;
|
|
2488
2488
|
}
|