@cloudbase/lowcode-builder 1.8.101 → 1.8.102
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.
|
@@ -85,7 +85,7 @@ async function generateCompLibs(ctx, outDir, mode) {
|
|
|
85
85
|
processCssUnit: lib.name === cals_1.OFFICIAL_COMPONENT_LIB_NAME || reg.test(lib.name) ? 'rpx' : ctx.processCssUnit,
|
|
86
86
|
// 只生成在主目录中,减少冗余
|
|
87
87
|
// rootPath: app.rootPath || '', // 主包是没有 rootPath 的
|
|
88
|
-
}, cmp, outDir, lib.rootPath !== undefined ? lib.rootPath : path.join(config_1.materialsDirName, lib.name), lib.compLibCommonResource, mode);
|
|
88
|
+
}, cmp, outDir, lib.rootPath !== undefined ? lib.rootPath : path.posix.join(config_1.materialsDirName, lib.name), lib.compLibCommonResource, mode);
|
|
89
89
|
}));
|
|
90
90
|
}));
|
|
91
91
|
}
|
package/lib/builder/mp/wxml.js
CHANGED
|
@@ -47,7 +47,7 @@ function generateWxml(ctx, widgets, docTag, wxmlDataPrefix, usingComponents, com
|
|
|
47
47
|
type: 'element',
|
|
48
48
|
name: WD_INFO,
|
|
49
49
|
attributes: {
|
|
50
|
-
message: '当前页面无法访问',
|
|
50
|
+
message: disabled ? '当前应用已停用' : '当前页面无法访问',
|
|
51
51
|
type: 'notfound',
|
|
52
52
|
enableCustom: true,
|
|
53
53
|
pageUUID: ctx.pageUUID,
|