@luck-design-biz/luckda 1.0.2-2 → 1.0.2-20
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/es/components/Builder/index.js +13 -10
- package/es/components/ComplexItem/index.js +5 -3
- package/es/components/ComplexItem/service.js +6 -3
- package/es/components/LDActions/index.js +1 -0
- package/es/components/LdAutoForm/index.js +5 -4
- package/es/components/LdCard/index.js +10 -8
- package/es/components/LdCom/index.js +3 -2
- package/es/components/LdFormList/index.js +10 -7
- package/es/components/LdGrid/index.js +11 -12
- package/es/components/LdGridForm/index.js +5 -4
- package/es/helper/FromItems.js +64 -5
- package/es/helper/action.js +2 -0
- package/es/helper/ldBuilder.js +5 -4
- package/es/helper/ldComBuild.js +16 -11
- package/es/locales/zh-CN.js +61 -6
- package/es/lowcode/constants/api-url.js +359 -190
- package/es/lowcode/constants/event-topics.js +4 -0
- package/es/lowcode/constants/index.js +5 -4
- package/es/lowcode/engine/meta/box.props.default.json +1 -1
- package/es/lowcode/engine/meta/box.props.json +1 -1
- package/es/lowcode/engine/meta/cardlist.props.json +3 -5
- package/es/lowcode/engine/meta/components-list.json +6 -0
- package/es/lowcode/engine/meta/dialog.props.default.json +4 -1
- package/es/lowcode/engine/meta/dialog.props.json +24 -4
- package/es/lowcode/engine/meta/drawer.props.json +1 -1
- package/es/lowcode/engine/meta/fielddate.props.default.json +1 -0
- package/es/lowcode/engine/meta/fielddate.props.json +48 -1
- package/es/lowcode/engine/meta/fieldeditor.props.json +0 -1
- package/es/lowcode/engine/meta/fieldgroup.props.json +0 -1
- package/es/lowcode/engine/meta/fieldyear.props.json +0 -1
- package/es/lowcode/engine/meta/form.props.json +3 -19
- package/es/lowcode/engine/meta/grouptree.props.json +0 -1
- package/es/lowcode/engine/meta/js-editor/auto-complete.json +5 -0
- package/es/lowcode/engine/meta/jsx.props.default.json +1 -2
- package/es/lowcode/engine/meta/jsx.props.json +4 -3
- package/es/lowcode/engine/meta/layout.props.default.json +1 -1
- package/es/lowcode/engine/meta/layout.props.json +1 -1
- package/es/lowcode/engine/meta/proxy.props.default.json +15 -0
- package/es/lowcode/engine/meta/proxy.props.json +66 -0
- package/es/lowcode/engine/meta/section.props.json +2 -2
- package/es/lowcode/engine/meta/table.props.json +0 -7
- package/es/lowcode/engine/meta/tabs.props.json +1 -1
- package/es/lowcode/engine/meta/tree.props.json +1 -5
- package/es/lowcode/engine/provider/ContextProvider/index.js +45 -9
- package/es/lowcode/engine/provider/ContextProvider/router.js +21 -1
- package/es/lowcode/engine/provider/ContextProvider/usePageDataStore.js +36 -30
- package/es/lowcode/engine/provider/ContextProvider/usePageVar.js +11 -5
- package/es/lowcode/engine/provider/ContextProvider/useTodo.js +2 -4
- package/es/lowcode/engine/provider/EventBusProvider.js +14 -4
- package/es/lowcode/engine/provider/PageProxyProvider.js +95 -0
- package/es/lowcode/engine/provider/RemoteSourceProvider.js +10 -12
- package/es/lowcode/engine/tools/helper.js +25 -1
- package/es/lowcode/engine/tools/initDS.js +4 -4
- package/es/lowcode/painter/Design.js +1 -0
- package/es/lowcode/painter/DesignOperator.js +135 -27
- package/es/lowcode/painter/DesignToolbar.js +102 -188
- package/es/lowcode/painter/History.js +300 -0
- package/es/lowcode/painter/Panel.js +1 -1
- package/es/lowcode/painter/Ribbon.js +37 -1
- package/es/lowcode/painter/components/AdvancePanel.js +55 -51
- package/es/lowcode/painter/components/DragDrop/DragDropContext.js +10 -3
- package/es/lowcode/painter/components/TipIcon.js +12 -4
- package/es/lowcode/painter/components/TreeEditor.js +76 -8
- package/es/lowcode/painter/components/code-editor/BaseEditor.js +10 -6
- package/es/lowcode/painter/components/code-editor/DiffEditor.js +41 -0
- package/es/lowcode/painter/components/field-setting/FieldAttrs.js +2 -2
- package/es/lowcode/painter/components/field-setting/SettingUI.js +56 -5
- package/es/lowcode/painter/components/field-setting/index.js +24 -1
- package/es/lowcode/painter/components/shortcut-modal/KeyIcon.js +11 -0
- package/es/lowcode/painter/components/shortcut-modal/index.js +208 -0
- package/es/lowcode/painter/panel-section/BlockEditor/index.js +10 -19
- package/es/lowcode/painter/panel-section/BlocksEditor/index.js +4 -1
- package/es/lowcode/painter/panel-section/ConditionCheck.js +70 -0
- package/es/lowcode/painter/panel-section/DataSetSelector.js +6 -3
- package/es/lowcode/painter/panel-section/DialogSize.js +76 -0
- package/es/lowcode/painter/panel-section/DialogWidthHeight.js +60 -0
- package/es/lowcode/painter/panel-section/FieldsSetting.js +1 -1
- package/es/lowcode/painter/panel-section/IconConditionSelector.js +2 -2
- package/es/lowcode/painter/panel-section/JSEditor/ToolBar.js +174 -0
- package/es/lowcode/painter/panel-section/JSEditor/index.js +181 -0
- package/es/lowcode/painter/panel-section/JSEditor/index.less +4 -0
- package/es/lowcode/painter/panel-section/PageLayoutDisplay.js +7 -2
- package/es/lowcode/painter/panel-section/ProxyLinker.js +137 -0
- package/es/lowcode/painter/panel-section/ProxyParams.js +28 -0
- package/es/lowcode/painter/panel-section/ProxyParamsSetter.js +240 -0
- package/es/lowcode/painter/panel-section/StylePanel/MainPanel.js +37 -26
- package/es/lowcode/painter/style/action-bind-modal.less +1 -1
- package/es/lowcode/painter/style/components.less +1 -1
- package/es/lowcode/painter/style/history.less +46 -0
- package/es/lowcode/painter/style/outline.less +1 -1
- package/es/lowcode/painter/style/panel-item.less +1 -0
- package/es/lowcode/preview/DebugTool.js +78 -0
- package/es/lowcode/preview/DebugToolDetail.js +103 -0
- package/es/lowcode/preview/index.js +10 -17
- package/es/lowcode/preview/useDebugSettings.js +62 -0
- package/es/lowcode/view/Canvas.js +5 -1
- package/es/lowcode/view/ErrorBoundary.js +80 -0
- package/es/lowcode/view/Page.js +11 -6
- package/es/lowcode/view/lc-components/Box/FunctionDesign.js +4 -2
- package/es/lowcode/view/lc-components/Box/index.less +2 -2
- package/es/lowcode/view/lc-components/Box/meta.json +1 -1
- package/es/lowcode/view/lc-components/CardList/index.js +3 -0
- package/es/lowcode/view/lc-components/CardList/meta.json +3 -5
- package/es/lowcode/view/lc-components/Dialog/index.js +13 -5
- package/es/lowcode/view/lc-components/Dialog/meta.json +24 -4
- package/es/lowcode/view/lc-components/Drawer/index.js +5 -3
- package/es/lowcode/view/lc-components/Drawer/meta.json +1 -1
- package/es/lowcode/view/lc-components/FieldDate/meta.json +48 -1
- package/es/lowcode/view/lc-components/FieldEditor/meta.json +0 -1
- package/es/lowcode/view/lc-components/FieldGroup/meta.json +0 -1
- package/es/lowcode/view/lc-components/FieldYear/meta.json +0 -1
- package/es/lowcode/view/lc-components/Form/index.js +15 -19
- package/es/lowcode/view/lc-components/Form/meta.json +3 -19
- package/es/lowcode/view/lc-components/GroupTree/meta.json +0 -1
- package/es/lowcode/view/lc-components/JSX/RuntimeComp.js +32 -16
- package/es/lowcode/view/lc-components/JSX/meta.json +4 -3
- package/es/lowcode/view/lc-components/Layout/meta.json +1 -1
- package/es/lowcode/view/lc-components/PageLayout/index.js +1 -1
- package/es/lowcode/view/lc-components/Proxy/FunctionDesign.js +17 -0
- package/es/lowcode/view/lc-components/Proxy/FunctionLive.js +23 -0
- package/es/lowcode/view/lc-components/Proxy/FunctionPreview.js +23 -0
- package/es/lowcode/view/lc-components/Proxy/index.js +42 -0
- package/es/lowcode/view/lc-components/Proxy/index.less +5 -0
- package/es/lowcode/view/lc-components/Proxy/meta.json +66 -0
- package/es/lowcode/view/lc-components/Section/meta.json +2 -2
- package/es/lowcode/view/lc-components/Table/components/TopImex.js +16 -13
- package/es/lowcode/view/lc-components/Table/index.js +11 -3
- package/es/lowcode/view/lc-components/Table/meta.json +0 -7
- package/es/lowcode/view/lc-components/Tabs/index.js +6 -2
- package/es/lowcode/view/lc-components/Tabs/meta.json +1 -1
- package/es/lowcode/view/lc-components/Tree/index.js +3 -0
- package/es/lowcode/view/lc-components/Tree/meta.json +1 -5
- package/es/lowcode/view/lc-components/Wrapper.js +9 -1
- package/es/upload/FilesWall/index.js +16 -6
- package/es/upload/Form/gridForm.js +16 -6
- package/es/upload/FormItem/index.js +16 -4
- package/es/utils/action.js +3 -2
- package/es/utils/form.js +4 -3
- package/es/utils/grid.js +10 -2
- package/lib/components/Builder/index.js +13 -10
- package/lib/components/ComplexItem/index.js +5 -3
- package/lib/components/ComplexItem/service.js +6 -3
- package/lib/components/LDActions/index.js +1 -0
- package/lib/components/LdAutoForm/index.js +3 -2
- package/lib/components/LdCard/index.js +10 -8
- package/lib/components/LdCom/index.js +3 -2
- package/lib/components/LdFormList/index.js +9 -6
- package/lib/components/LdGrid/index.js +11 -12
- package/lib/components/LdGridForm/index.js +3 -2
- package/lib/helper/FromItems.js +64 -5
- package/lib/helper/action.js +2 -0
- package/lib/helper/ldBuilder.js +4 -4
- package/lib/helper/ldComBuild.js +14 -9
- package/lib/locales/zh-CN.js +61 -6
- package/lib/lowcode/constants/api-url.js +360 -190
- package/lib/lowcode/constants/event-topics.js +5 -1
- package/lib/lowcode/constants/index.js +6 -5
- package/lib/lowcode/engine/meta/box.props.default.json +1 -1
- package/lib/lowcode/engine/meta/box.props.json +1 -1
- package/lib/lowcode/engine/meta/cardlist.props.json +3 -5
- package/lib/lowcode/engine/meta/components-list.json +6 -0
- package/lib/lowcode/engine/meta/dialog.props.default.json +4 -1
- package/lib/lowcode/engine/meta/dialog.props.json +24 -4
- package/lib/lowcode/engine/meta/drawer.props.json +1 -1
- package/lib/lowcode/engine/meta/fielddate.props.default.json +1 -0
- package/lib/lowcode/engine/meta/fielddate.props.json +48 -1
- package/lib/lowcode/engine/meta/fieldeditor.props.json +0 -1
- package/lib/lowcode/engine/meta/fieldgroup.props.json +0 -1
- package/lib/lowcode/engine/meta/fieldyear.props.json +0 -1
- package/lib/lowcode/engine/meta/form.props.json +3 -19
- package/lib/lowcode/engine/meta/grouptree.props.json +0 -1
- package/lib/lowcode/engine/meta/js-editor/auto-complete.json +5 -0
- package/lib/lowcode/engine/meta/jsx.props.default.json +1 -2
- package/lib/lowcode/engine/meta/jsx.props.json +4 -3
- package/lib/lowcode/engine/meta/layout.props.default.json +1 -1
- package/lib/lowcode/engine/meta/layout.props.json +1 -1
- package/lib/lowcode/engine/meta/proxy.props.default.json +15 -0
- package/lib/lowcode/engine/meta/proxy.props.json +66 -0
- package/lib/lowcode/engine/meta/section.props.json +2 -2
- package/lib/lowcode/engine/meta/table.props.json +0 -7
- package/lib/lowcode/engine/meta/tabs.props.json +1 -1
- package/lib/lowcode/engine/meta/tree.props.json +1 -5
- package/lib/lowcode/engine/provider/ContextProvider/index.js +50 -13
- package/lib/lowcode/engine/provider/ContextProvider/router.js +22 -1
- package/lib/lowcode/engine/provider/ContextProvider/usePageDataStore.js +37 -31
- package/lib/lowcode/engine/provider/ContextProvider/usePageVar.js +10 -4
- package/lib/lowcode/engine/provider/ContextProvider/useTodo.js +1 -3
- package/lib/lowcode/engine/provider/EventBusProvider.js +14 -4
- package/lib/lowcode/engine/provider/PageProxyProvider.js +103 -0
- package/lib/lowcode/engine/provider/RemoteSourceProvider.js +10 -12
- package/lib/lowcode/engine/tools/helper.js +25 -0
- package/lib/lowcode/engine/tools/initDS.js +4 -4
- package/lib/lowcode/painter/Design.js +1 -0
- package/lib/lowcode/painter/DesignOperator.js +132 -24
- package/lib/lowcode/painter/DesignToolbar.js +98 -184
- package/lib/lowcode/painter/History.js +308 -0
- package/lib/lowcode/painter/Panel.js +1 -1
- package/lib/lowcode/painter/Ribbon.js +37 -1
- package/lib/lowcode/painter/components/AdvancePanel.js +53 -49
- package/lib/lowcode/painter/components/DragDrop/DragDropContext.js +10 -3
- package/lib/lowcode/painter/components/TipIcon.js +12 -4
- package/lib/lowcode/painter/components/TreeEditor.js +76 -8
- package/lib/lowcode/painter/components/code-editor/BaseEditor.js +10 -6
- package/lib/lowcode/painter/components/code-editor/DiffEditor.js +49 -0
- package/lib/lowcode/painter/components/field-setting/FieldAttrs.js +2 -2
- package/lib/lowcode/painter/components/field-setting/SettingUI.js +55 -4
- package/lib/lowcode/painter/components/field-setting/index.js +24 -1
- package/lib/lowcode/painter/components/shortcut-modal/KeyIcon.js +18 -0
- package/lib/lowcode/painter/components/shortcut-modal/index.js +215 -0
- package/lib/lowcode/painter/panel-section/BlockEditor/index.js +9 -18
- package/lib/lowcode/painter/panel-section/BlocksEditor/index.js +4 -1
- package/lib/lowcode/painter/panel-section/ConditionCheck.js +78 -0
- package/lib/lowcode/painter/panel-section/DataSetSelector.js +6 -3
- package/lib/lowcode/painter/panel-section/DialogSize.js +83 -0
- package/lib/lowcode/painter/panel-section/DialogWidthHeight.js +67 -0
- package/lib/lowcode/painter/panel-section/FieldsSetting.js +1 -1
- package/lib/lowcode/painter/panel-section/IconConditionSelector.js +2 -2
- package/lib/lowcode/painter/panel-section/JSEditor/ToolBar.js +181 -0
- package/lib/lowcode/painter/panel-section/JSEditor/index.js +189 -0
- package/lib/lowcode/painter/panel-section/JSEditor/index.less +4 -0
- package/lib/lowcode/painter/panel-section/PageLayoutDisplay.js +7 -2
- package/lib/lowcode/painter/panel-section/ProxyLinker.js +145 -0
- package/lib/lowcode/painter/panel-section/ProxyParams.js +35 -0
- package/lib/lowcode/painter/panel-section/ProxyParamsSetter.js +248 -0
- package/lib/lowcode/painter/panel-section/StylePanel/MainPanel.js +37 -26
- package/lib/lowcode/painter/style/action-bind-modal.less +1 -1
- package/lib/lowcode/painter/style/components.less +1 -1
- package/lib/lowcode/painter/style/history.less +46 -0
- package/lib/lowcode/painter/style/outline.less +1 -1
- package/lib/lowcode/painter/style/panel-item.less +1 -0
- package/lib/lowcode/preview/DebugTool.js +86 -0
- package/lib/lowcode/preview/DebugToolDetail.js +111 -0
- package/lib/lowcode/preview/index.js +10 -18
- package/lib/lowcode/preview/useDebugSettings.js +69 -0
- package/lib/lowcode/view/Canvas.js +5 -1
- package/lib/lowcode/view/ErrorBoundary.js +88 -0
- package/lib/lowcode/view/Page.js +12 -7
- package/lib/lowcode/view/lc-components/Box/FunctionDesign.js +4 -2
- package/lib/lowcode/view/lc-components/Box/index.less +2 -2
- package/lib/lowcode/view/lc-components/Box/meta.json +1 -1
- package/lib/lowcode/view/lc-components/CardList/index.js +3 -0
- package/lib/lowcode/view/lc-components/CardList/meta.json +3 -5
- package/lib/lowcode/view/lc-components/Dialog/index.js +11 -3
- package/lib/lowcode/view/lc-components/Dialog/meta.json +24 -4
- package/lib/lowcode/view/lc-components/Drawer/index.js +3 -1
- package/lib/lowcode/view/lc-components/Drawer/meta.json +1 -1
- package/lib/lowcode/view/lc-components/FieldDate/meta.json +48 -1
- package/lib/lowcode/view/lc-components/FieldEditor/meta.json +0 -1
- package/lib/lowcode/view/lc-components/FieldGroup/meta.json +0 -1
- package/lib/lowcode/view/lc-components/FieldYear/meta.json +0 -1
- package/lib/lowcode/view/lc-components/Form/index.js +15 -19
- package/lib/lowcode/view/lc-components/Form/meta.json +3 -19
- package/lib/lowcode/view/lc-components/GroupTree/meta.json +0 -1
- package/lib/lowcode/view/lc-components/JSX/RuntimeComp.js +33 -16
- package/lib/lowcode/view/lc-components/JSX/meta.json +4 -3
- package/lib/lowcode/view/lc-components/Layout/meta.json +1 -1
- package/lib/lowcode/view/lc-components/PageLayout/index.js +1 -1
- package/lib/lowcode/view/lc-components/Proxy/FunctionDesign.js +24 -0
- package/lib/lowcode/view/lc-components/Proxy/FunctionLive.js +30 -0
- package/lib/lowcode/view/lc-components/Proxy/FunctionPreview.js +30 -0
- package/lib/lowcode/view/lc-components/Proxy/index.js +50 -0
- package/lib/lowcode/view/lc-components/Proxy/index.less +5 -0
- package/lib/lowcode/view/lc-components/Proxy/meta.json +66 -0
- package/lib/lowcode/view/lc-components/Section/meta.json +2 -2
- package/lib/lowcode/view/lc-components/Table/components/TopImex.js +16 -13
- package/lib/lowcode/view/lc-components/Table/index.js +11 -3
- package/lib/lowcode/view/lc-components/Table/meta.json +0 -7
- package/lib/lowcode/view/lc-components/Tabs/index.js +5 -1
- package/lib/lowcode/view/lc-components/Tabs/meta.json +1 -1
- package/lib/lowcode/view/lc-components/Tree/index.js +3 -0
- package/lib/lowcode/view/lc-components/Tree/meta.json +1 -5
- package/lib/lowcode/view/lc-components/Wrapper.js +8 -0
- package/lib/upload/FilesWall/index.js +13 -3
- package/lib/upload/Form/gridForm.js +13 -3
- package/lib/upload/FormItem/index.js +15 -3
- package/lib/utils/action.js +6 -0
- package/lib/utils/form.js +3 -2
- package/lib/utils/grid.js +11 -3
- package/package.json +1 -2
- package/es/lowcode/painter/panel-section/JSEditor.js +0 -49
- package/es/lowcode/view/errorBoundary.js +0 -61
- package/lib/lowcode/painter/panel-section/JSEditor.js +0 -57
- package/lib/lowcode/view/errorBoundary.js +0 -69
package/es/locales/zh-CN.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"luckda.lowcode.view.lc-components.label.all": "全部",
|
|
3
|
+
"luckda.lowcode.view.lc-component.design.show": "请在预览、运行界面查看嵌入的代理页面",
|
|
3
4
|
"luckda.lowcode.painter.import": "导入",
|
|
4
5
|
"luckda.lowcode.painter.components.fullscreen-exit.tip": "退出全屏",
|
|
5
6
|
"luckda.lowcode.painter.components.fullscreen.tip": "全屏",
|
|
@@ -7,6 +8,9 @@ export default {
|
|
|
7
8
|
"lc.form.validator.textNum": "个字符",
|
|
8
9
|
"lc.form.validator.numberBelowMin": "低于最小值",
|
|
9
10
|
"lc.form.validator.numberExceedMax": "超过最大值",
|
|
11
|
+
"luckda.lowcode.design.toolbar.selectUser": "模拟登录人",
|
|
12
|
+
"luckda.lowcode.design.toolbar.placeholder.selectUser": "请选择模拟登录人",
|
|
13
|
+
"luckda.lowcode.design.toolbar.debugTool": "调试工具",
|
|
10
14
|
"luckda.lowcode.painter.I18n.empty": "敬请期待",
|
|
11
15
|
"luckda.lowcode.painter.panel.attrs": "属性",
|
|
12
16
|
"luckda.lowcode.painter.panel.css": "样式",
|
|
@@ -16,19 +20,28 @@ export default {
|
|
|
16
20
|
"luckda.lowcode.modal": "模态视图层",
|
|
17
21
|
"luckda.lowcode.painter.I18n.search": "搜索文案",
|
|
18
22
|
"luckda.lowcode.painter.I18n.add": "新增文案",
|
|
23
|
+
"luckda.lowcode.version.delete": "你确定要删除该历史版本吗?",
|
|
24
|
+
"luckda.lowcode.version.confirm.recover": "你确定要还原到该历史版本吗?",
|
|
25
|
+
"luckda.lowcode.version.recover": "还原版本",
|
|
26
|
+
"luckda.lowcode.error.pagedata": "页面数据错误",
|
|
27
|
+
"luckda.lowcode.version.placeholder.search": "请输入查询内容",
|
|
28
|
+
"app.base.operate.delete": "删除",
|
|
29
|
+
"luckda.lowcode.version.diff": "差异比对",
|
|
30
|
+
"luckda.lowcode.version.use": "使用",
|
|
31
|
+
"luckda.lowcode.version.add": "添加到历史版本",
|
|
32
|
+
"luckda.lowcode.version.placeholder.title": "请输入版本标题",
|
|
33
|
+
"luckda.lowcode.version.placeholder.note": "请输入版本描述",
|
|
19
34
|
"luckda.lowcode.design.toolbar.save.on": "保存中...",
|
|
20
35
|
"luckda.lowcode.design.toolbar.save.success": "保存成功",
|
|
21
36
|
"luckda.lowcode.design.toolbar.save.error": "保存失败",
|
|
22
37
|
"luckda.lowcode.design.toolbar.clear.tip": "清除提示",
|
|
23
38
|
"luckda.lowcode.design.toolbar.clear": "清除缓存",
|
|
24
|
-
"luckda.lowcode.error.pagedata": "页面数据错误",
|
|
25
39
|
"luckda.lowcode.not.mobile": "此功能暂未开放",
|
|
26
40
|
"luckda.lowcode.design.toolbar.pageAttrs": "页面属性",
|
|
27
|
-
"luckda.lowcode.design.toolbar.
|
|
41
|
+
"luckda.lowcode.design.toolbar.shortcut": "快捷键",
|
|
28
42
|
"luckda.lowcode.design.toolbar.code": "Schema面板",
|
|
43
|
+
"luckda.lowcode.design.toolbar.debug": "调试",
|
|
29
44
|
"luckda.lowcode.design.toolbar.save": "保存",
|
|
30
|
-
"luckda.lowcode.design.toolbar.pagePreview": "页面预览",
|
|
31
|
-
"luckda.lowcode.design.toolbar.selectUser": "请选择模拟登录人",
|
|
32
45
|
"app.base.operate.comfire.leave": "离开当前页面?",
|
|
33
46
|
"app.base.operate.comfire.message.leave": "系统可能不会保存您所做的更改。",
|
|
34
47
|
"luckda.lowcode.painter.components.search": "搜索组件",
|
|
@@ -66,6 +79,22 @@ export default {
|
|
|
66
79
|
"luckda.lowcode.painter.panel-section.splitdisplay.split": "分割方向",
|
|
67
80
|
"luckda.lowcode.painter.panel-section.splitdisplay.ratio": "列比例",
|
|
68
81
|
"luckda.lowcode.painter.panel-section.Layoutratio.placeholder": "请输入列比例",
|
|
82
|
+
"luckda.lowcode.painter.panel-section.proxy-params-setter.param-origin.state": "页面全局状态",
|
|
83
|
+
"luckda.lowcode.painter.panel-section.proxy-params-setter.param-origin.global": "页面全局变量",
|
|
84
|
+
"luckda.lowcode.painter.panel-section.proxy-params-setter.param-origin.url": "页面URL参数",
|
|
85
|
+
"luckda.lowcode.painter.panel-section.proxy-params-setter.param-origin.string": "字符串常量",
|
|
86
|
+
"luckda.lowcode.painter.panel-section.proxy-params-setter.param-origin.num": "数字常量",
|
|
87
|
+
"luckda.lowcode.painter.panel-section.proxy-params-setter.param-origin.bool": "布尔常量",
|
|
88
|
+
"luckda.lowcode.painter.panel-section.proxy-params-setter.param-name": "参数名称",
|
|
89
|
+
"luckda.lowcode.painter.panel-section.proxy-params-setter.warn.param-name": "请输入参数名称",
|
|
90
|
+
"luckda.lowcode.painter.panel-section.proxy-params-setter.param-origin": "参数来源",
|
|
91
|
+
"luckda.lowcode.painter.panel-section.proxy-params-setter.param-value": "值或变量名",
|
|
92
|
+
"luckda.lowcode.painter.panel-section.proxy-params-setter.warn.param-value": "请输入参数值或变量名",
|
|
93
|
+
"luckda.lowcode.painter.panel-section.proxy-params-setter.add": "添加参数",
|
|
94
|
+
"luckda.lowcode.painter.panel-section.proxy-params-setter.save": "保存并返回",
|
|
95
|
+
"luckda.lowcode.painter.panel-section.proxy-linker.add": "新建页面",
|
|
96
|
+
"luckda.lowcode.painter.panel-section.proxy-linker.edit": "编辑页面",
|
|
97
|
+
"luckda.lowcode.painter.panel-section.proxy-linker.sync": "同步数据",
|
|
69
98
|
"luckda.lowcode.painter.pageVars.var": "变量",
|
|
70
99
|
"luckda.lowcode.painter.pageVars.api": "远程 API",
|
|
71
100
|
"luckda.lowcode.painter.pageVars.edit": "编辑数据源",
|
|
@@ -76,7 +105,6 @@ export default {
|
|
|
76
105
|
"luckda.lowcode.painter.pageVars.add": "添加",
|
|
77
106
|
"luckda.lowcode.painter.panel-section.Layoutratio.err": "必须是数字或者数字加:号的组合",
|
|
78
107
|
"luckda.lowcode.painter.panel-section.Layoutratio.label": "列比例",
|
|
79
|
-
"luckda.lowcode.painter.panel-section.style-panel.sourceedit": "源码编辑",
|
|
80
108
|
"luckda.lowcode.painter.panel-section.impexp.expType.placeholder": "请选择自定义行为",
|
|
81
109
|
"luckda.lowcode.painter.panel-section.impexp.impType.placeholder": "请选择自定义行为",
|
|
82
110
|
"luckda.lowcode.painter.bindCondition": "绑定条件",
|
|
@@ -84,6 +112,11 @@ export default {
|
|
|
84
112
|
"luckda.lowcode.painter.panel-section.fieldsSetting.field": "数据字段",
|
|
85
113
|
"luckda.lowcode.painter.panel-section.fieldsSetting.title": "标题",
|
|
86
114
|
"luckda.lowcode.painter.panel-section.fieldsSetting.batch": "批量设置",
|
|
115
|
+
"luckda.lowcode.painter.panel-section.dialogSize.size.small": "小",
|
|
116
|
+
"luckda.lowcode.painter.panel-section.dialogSize.size.default": "中",
|
|
117
|
+
"luckda.lowcode.painter.panel-section.dialogSize.size.large": "大",
|
|
118
|
+
"luckda.lowcode.painter.panel-section.dialogSize.size.full": "全屏",
|
|
119
|
+
"luckda.lowcode.painter.panel-section.dialogSize.size.custom": "定制",
|
|
87
120
|
"luckda.lowcode.painter.dateSetSelector.setting": "配置字段",
|
|
88
121
|
"luckda.lowcode.painter.dateSetSelector.sync": "同步数据",
|
|
89
122
|
"luckda.lowcode.painter.panel-section.complexPop.assisted": "辅助选择",
|
|
@@ -109,6 +142,7 @@ export default {
|
|
|
109
142
|
"luckda.lowcode.painter.panel-section.style-panel.margin.down": "下间距",
|
|
110
143
|
"luckda.lowcode.painter.panel-section.style-panel.margin.left": "左间距",
|
|
111
144
|
"luckda.lowcode.painter.panel-section.style-panel.group-name": "样式设置",
|
|
145
|
+
"luckda.lowcode.painter.panel-section.style-panel.sourceedit": "源码编辑",
|
|
112
146
|
"luckda.lowcode.painter.panel-section.style-panel.width": "请输入宽度",
|
|
113
147
|
"luckda.lowcode.painter.panel-section.style-panel.height": "请输入高度",
|
|
114
148
|
"luckda.lowcode.painter.panel-section.style-panel.display": "显示",
|
|
@@ -168,11 +202,16 @@ export default {
|
|
|
168
202
|
"luckda.lowcode.painter.panel-section.style-panel.border.width.ph": "线宽",
|
|
169
203
|
"luckda.lowcode.painter.panel-section.style-panel.border.color": "颜色",
|
|
170
204
|
"luckda.lowcode.painter.panel-section.style-panel.background": "背景",
|
|
205
|
+
"luckda.lowcode.painter.panel-section.jseditor.clear": "确定执行操作吗?",
|
|
206
|
+
"luckda.lowcode.painter.panel-section.jseditor.saveto": "保存为",
|
|
207
|
+
"app.base.operate.clear": "清空",
|
|
208
|
+
"app.base.operate.ok": "确定",
|
|
171
209
|
"luckda.lowcode.painter.panel-section.blocksEditor.auto": "表单",
|
|
172
210
|
"luckda.lowcode.painter.panel-section.blocksEditor.grid": "表格",
|
|
173
211
|
"luckda.lowcode.painter.panel-section.blocksEditor.writer": "行内编辑表格",
|
|
174
212
|
"luckda.lowcode.painter.panel-section.blocksEditor.uploadForm": "附件列表",
|
|
175
213
|
"luckda.lowcode.painter.panel-section.blocksEditor.blank": "空白区",
|
|
214
|
+
"luckda.lowcode.painter.panel-section.blocksEditor.defaultBlock": "默认区块",
|
|
176
215
|
"luckda.lowcode.painter.panel-section.blocksEditor.addBlock": "新增区块",
|
|
177
216
|
"luckda.lowcode.painter.panel-section.actionsEditor.button": "按钮",
|
|
178
217
|
"luckda.lowcode.painter.panel-section.actionsEditor.text": "文本",
|
|
@@ -228,6 +267,20 @@ export default {
|
|
|
228
267
|
"luckda.lowcode.painter.actionBindModal.params": "配置参数",
|
|
229
268
|
"luckda.lowcode.painter.actionBindModal.params.info": "请勿随意修改配置参数结构和参数名称,参数异常可能会导致请求失败",
|
|
230
269
|
"luckda.lowcode.painter.actionBindModal.noActionSelected": "请在右侧选择行为项",
|
|
270
|
+
"luckda.lowcode.design.toolbar.shortcut.save": "保存",
|
|
271
|
+
"luckda.lowcode.design.toolbar.shortcut.preview": "预览调试",
|
|
272
|
+
"luckda.lowcode.design.toolbar.shortcut.undo": "撤销",
|
|
273
|
+
"luckda.lowcode.design.toolbar.shortcut.redo": "重做",
|
|
274
|
+
"luckda.lowcode.design.toolbar.shortcut.copy": "克隆组件",
|
|
275
|
+
"luckda.lowcode.design.toolbar.shortcut.delete": "删除组件",
|
|
276
|
+
"luckda.lowcode.design.toolbar.shortcut.selectParent": "选择父级组件",
|
|
277
|
+
"luckda.lowcode.design.toolbar.shortcut.selectChildren": "选择子级组件",
|
|
278
|
+
"luckda.lowcode.design.toolbar.shortcut.selectLeftBrother": "向左选择兄弟组件",
|
|
279
|
+
"luckda.lowcode.design.toolbar.shortcut.selectRightBrother": "向右选择兄弟组件",
|
|
280
|
+
"luckda.lowcode.design.toolbar.shortcut.moveLeft": "向左移动组件",
|
|
281
|
+
"luckda.lowcode.design.toolbar.shortcut.moveRight": "向右移动组件",
|
|
282
|
+
"luckda.lowcode.design.toolbar.shortcut.general": "常规操作",
|
|
283
|
+
"luckda.lowcode.design.toolbar.shortcut.others": "组件选择和移动",
|
|
231
284
|
"luckda.lowcode.painter.panel-section.fieldsSetting.align.left": "居左",
|
|
232
285
|
"luckda.lowcode.painter.panel-section.fieldsSetting.align.center": "居中",
|
|
233
286
|
"luckda.lowcode.painter.panel-section.fieldsSetting.align.right": "居右",
|
|
@@ -250,6 +303,7 @@ export default {
|
|
|
250
303
|
"luckda.lowcode.painter.panel-section.fieldsSetting.form.display": "表单中显示",
|
|
251
304
|
"luckda.lowcode.painter.panel-section.fieldsSetting.writable": "是否可写",
|
|
252
305
|
"luckda.lowcode.painter.panel-section.fieldsSetting.readonly": "是否只读",
|
|
306
|
+
"luckda.lowcode.painter.panel-section.fieldsSetting.dateFormat": "日期格式",
|
|
253
307
|
"luckda.lowcode.painter.panel-section.fieldsSetting.render": "内容定制渲染",
|
|
254
308
|
"luckda.lowcode.painter.panel-section.fieldsSetting.defaultValue": "默认值",
|
|
255
309
|
"luckda.lowcode.painter.settingTo": "设置为",
|
|
@@ -275,5 +329,6 @@ export default {
|
|
|
275
329
|
"luckda.lowcode.painter.panel-section.fieldsSetting.checkRules.message.verifyType": "请选择校验规则",
|
|
276
330
|
"luckda.lowcode.painter.panel-section.fieldsSetting.checkRules.errorMsg": "错误提示",
|
|
277
331
|
"luckda.lowcode.painter.panel-section.fieldsSetting.checkRules.message.errorMsg": "请输入错误提示",
|
|
278
|
-
"luckda.lowcode.painter.panel-section.fieldsSetting.checkRules.logic": "校验逻辑"
|
|
332
|
+
"luckda.lowcode.painter.panel-section.fieldsSetting.checkRules.logic": "校验逻辑",
|
|
333
|
+
"luckda.lowcode.view.lc-component.design.nocode": "缺少页面代理编码配置"
|
|
279
334
|
};
|