@luck-design-biz/luckda 0.0.25-1 → 0.0.25-3
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/locales/zh-CN.js +9 -0
- package/es/lowcode/constants/api-url.js +184 -100
- package/es/lowcode/constants/index.js +2 -1
- 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/button.props.json +1 -1
- package/es/lowcode/engine/meta/cardlist.props.json +1 -1
- package/es/lowcode/engine/meta/components-list.json +1 -1
- package/es/lowcode/engine/meta/dialog.props.json +1 -1
- package/es/lowcode/engine/meta/drawer.props.json +1 -1
- package/es/lowcode/engine/meta/form.props.default.json +4 -5
- package/es/lowcode/engine/meta/form.props.json +33 -30
- package/es/lowcode/engine/meta/image.props.json +2 -2
- package/es/lowcode/engine/meta/imex.props.json +1 -1
- package/es/lowcode/engine/meta/link.props.json +1 -1
- package/es/lowcode/engine/meta/section.props.default.json +4 -6
- package/es/lowcode/engine/meta/section.props.json +52 -49
- package/es/lowcode/engine/meta/text.props.json +2 -2
- package/es/lowcode/engine/meta/tree.props.json +2 -2
- package/es/lowcode/engine/provider/ContextProvider/index.js +10 -2
- package/es/lowcode/engine/provider/RemoteSourceProvider.js +28 -15
- package/es/lowcode/engine/tools/helper.js +23 -21
- package/es/lowcode/engine/tools/useCanvasRender.js +5 -7
- package/es/lowcode/engine/tools/usePromiseState.js +23 -14
- package/es/lowcode/painter/Design.js +34 -2
- package/es/lowcode/painter/DesignOperator.js +6 -8
- package/es/lowcode/painter/DesignToolbar.js +258 -21
- package/es/lowcode/painter/Panel.js +8 -9
- package/es/lowcode/painter/components/AttrsPanel.js +6 -6
- package/es/lowcode/painter/components/DragDrop/DragDropWrapper.js +5 -2
- package/es/lowcode/painter/components/ListEditor.js +8 -2
- package/es/lowcode/painter/components/field-setting/BatchSetting.js +13 -3
- package/es/lowcode/painter/components/field-setting/SettingUI.js +26 -7
- package/es/lowcode/painter/components/field-setting/index.js +18 -8
- package/es/lowcode/painter/index.js +1 -28
- package/es/lowcode/painter/panel-section/ActionsColumnWidth.js +25 -0
- package/es/lowcode/painter/panel-section/BlockEditor/index.js +7 -4
- package/es/lowcode/painter/panel-section/BlocksEditor/BlockEditorItem.js +4 -3
- package/es/lowcode/painter/panel-section/BlocksEditor/index.js +48 -15
- package/es/lowcode/painter/panel-section/FieldsSetting.js +48 -27
- package/es/lowcode/painter/panel-section/I18nInput.js +20 -0
- package/es/lowcode/painter/style/design.less +6 -2
- package/es/lowcode/painter/style/list-editor.less +36 -0
- package/es/lowcode/preview/index.js +17 -4
- package/es/lowcode/view/lc-components/Box/FunctionLive.js +1 -0
- package/es/lowcode/view/lc-components/Box/FunctionPreview.js +1 -0
- package/es/lowcode/view/lc-components/Box/meta.json +1 -1
- package/es/lowcode/view/lc-components/Button/meta.json +1 -1
- package/es/lowcode/view/lc-components/CardList/FunctionDesign.js +1 -0
- package/es/lowcode/view/lc-components/CardList/FunctionLive.js +1 -0
- package/es/lowcode/view/lc-components/CardList/FunctionPreview.js +1 -0
- package/es/lowcode/view/lc-components/CardList/meta.json +1 -1
- package/es/lowcode/view/lc-components/Dialog/FunctionDesign.js +2 -4
- package/es/lowcode/view/lc-components/Dialog/FunctionLive.js +1 -0
- package/es/lowcode/view/lc-components/Dialog/FunctionPreview.js +1 -0
- package/es/lowcode/view/lc-components/Dialog/meta.json +1 -1
- package/es/lowcode/view/lc-components/Drawer/FunctionDesign.js +1 -0
- package/es/lowcode/view/lc-components/Drawer/FunctionLive.js +1 -0
- package/es/lowcode/view/lc-components/Drawer/FunctionPreview.js +1 -0
- package/es/lowcode/view/lc-components/Drawer/meta.json +1 -1
- package/es/lowcode/view/lc-components/Form/FunctionDesign.js +66 -4
- package/es/lowcode/view/lc-components/Form/FunctionLive.js +1 -0
- package/es/lowcode/view/lc-components/Form/FunctionPreview.js +1 -0
- package/es/lowcode/view/lc-components/Form/index.js +232 -61
- package/es/lowcode/view/lc-components/Form/meta.json +33 -30
- package/es/lowcode/view/lc-components/Iframe/FunctionDesign.js +1 -0
- package/es/lowcode/view/lc-components/Iframe/FunctionLive.js +1 -0
- package/es/lowcode/view/lc-components/Iframe/FunctionPreview.js +1 -0
- package/es/lowcode/view/lc-components/ImEx/FunctionDesign.js +1 -0
- package/es/lowcode/view/lc-components/ImEx/FunctionLive.js +1 -0
- package/es/lowcode/view/lc-components/ImEx/FunctionPreview.js +1 -0
- package/es/lowcode/view/lc-components/ImEx/meta.json +1 -1
- package/es/lowcode/view/lc-components/Image/FunctionDesign.js +1 -0
- package/es/lowcode/view/lc-components/Image/FunctionLive.js +1 -0
- package/es/lowcode/view/lc-components/Image/FunctionPreview.js +1 -0
- package/es/lowcode/view/lc-components/Image/meta.json +2 -2
- package/es/lowcode/view/lc-components/JSX/FunctionDesign.js +1 -0
- package/es/lowcode/view/lc-components/JSX/FunctionLive.js +1 -0
- package/es/lowcode/view/lc-components/JSX/FunctionPreview.js +1 -0
- package/es/lowcode/view/lc-components/Layout/FunctionDesign.js +6 -7
- package/es/lowcode/view/lc-components/Layout/FunctionPreview.js +1 -0
- package/es/lowcode/view/lc-components/Link/FunctionDesign.js +1 -0
- package/es/lowcode/view/lc-components/Link/FunctionLive.js +1 -0
- package/es/lowcode/view/lc-components/Link/FunctionPreview.js +1 -0
- package/es/lowcode/view/lc-components/Link/meta.json +1 -1
- package/es/lowcode/view/lc-components/Section/FunctionDesign.js +31 -2
- package/es/lowcode/view/lc-components/Section/FunctionLive.js +1 -0
- package/es/lowcode/view/lc-components/Section/FunctionPreview.js +1 -0
- package/es/lowcode/view/lc-components/Section/index.js +114 -24
- package/es/lowcode/view/lc-components/Section/index.less +7 -0
- package/es/lowcode/view/lc-components/Section/meta.json +48 -49
- package/es/lowcode/view/lc-components/Split/FunctionDesign.js +4 -6
- package/es/lowcode/view/lc-components/Split/FunctionLive.js +1 -0
- package/es/lowcode/view/lc-components/Split/FunctionPreview.js +1 -0
- package/es/lowcode/view/lc-components/Split/index.js +4 -4
- package/es/lowcode/view/lc-components/Table/FunctionLive.js +1 -0
- package/es/lowcode/view/lc-components/Table/FunctionPreview.js +1 -0
- package/es/lowcode/view/lc-components/Table/index.js +7 -6
- package/es/lowcode/view/lc-components/Tabs/FunctionDesign.js +2 -4
- package/es/lowcode/view/lc-components/Text/FunctionDesign.js +1 -0
- package/es/lowcode/view/lc-components/Text/FunctionLive.js +1 -0
- package/es/lowcode/view/lc-components/Text/FunctionPreview.js +1 -0
- package/es/lowcode/view/lc-components/Text/meta.json +2 -2
- package/es/lowcode/view/lc-components/Tree/FunctionLive.js +1 -0
- package/es/lowcode/view/lc-components/Tree/meta.json +2 -2
- package/es/upload/Form/gridForm.js +7 -3
- package/lib/locales/zh-CN.js +9 -0
- package/lib/lowcode/constants/api-url.js +183 -100
- package/lib/lowcode/constants/index.js +3 -2
- 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/button.props.json +1 -1
- package/lib/lowcode/engine/meta/cardlist.props.json +1 -1
- package/lib/lowcode/engine/meta/components-list.json +1 -1
- package/lib/lowcode/engine/meta/dialog.props.json +1 -1
- package/lib/lowcode/engine/meta/drawer.props.json +1 -1
- package/lib/lowcode/engine/meta/form.props.default.json +4 -5
- package/lib/lowcode/engine/meta/form.props.json +33 -30
- package/lib/lowcode/engine/meta/image.props.json +2 -2
- package/lib/lowcode/engine/meta/imex.props.json +1 -1
- package/lib/lowcode/engine/meta/link.props.json +1 -1
- package/lib/lowcode/engine/meta/section.props.default.json +4 -6
- package/lib/lowcode/engine/meta/section.props.json +52 -49
- package/lib/lowcode/engine/meta/text.props.json +2 -2
- package/lib/lowcode/engine/meta/tree.props.json +2 -2
- package/lib/lowcode/engine/provider/ContextProvider/index.js +10 -2
- package/lib/lowcode/engine/provider/RemoteSourceProvider.js +24 -11
- package/lib/lowcode/engine/tools/helper.js +23 -21
- package/lib/lowcode/engine/tools/useCanvasRender.js +3 -5
- package/lib/lowcode/engine/tools/usePromiseState.js +22 -14
- package/lib/lowcode/painter/Design.js +32 -0
- package/lib/lowcode/painter/DesignOperator.js +5 -7
- package/lib/lowcode/painter/DesignToolbar.js +256 -19
- package/lib/lowcode/painter/Panel.js +7 -8
- package/lib/lowcode/painter/components/AttrsPanel.js +6 -6
- package/lib/lowcode/painter/components/DragDrop/DragDropWrapper.js +5 -2
- package/lib/lowcode/painter/components/ListEditor.js +8 -2
- package/lib/lowcode/painter/components/field-setting/BatchSetting.js +13 -3
- package/lib/lowcode/painter/components/field-setting/SettingUI.js +26 -7
- package/lib/lowcode/painter/components/field-setting/index.js +18 -8
- package/lib/lowcode/painter/index.js +1 -30
- package/lib/lowcode/painter/panel-section/ActionsColumnWidth.js +32 -0
- package/lib/lowcode/painter/panel-section/BlockEditor/index.js +7 -4
- package/lib/lowcode/painter/panel-section/BlocksEditor/BlockEditorItem.js +4 -3
- package/lib/lowcode/painter/panel-section/BlocksEditor/index.js +47 -13
- package/lib/lowcode/painter/panel-section/FieldsSetting.js +46 -25
- package/lib/lowcode/painter/panel-section/I18nInput.js +27 -0
- package/lib/lowcode/painter/style/design.less +6 -2
- package/lib/lowcode/painter/style/list-editor.less +36 -0
- package/lib/lowcode/preview/index.js +18 -4
- package/lib/lowcode/view/lc-components/Box/FunctionLive.js +2 -1
- package/lib/lowcode/view/lc-components/Box/FunctionPreview.js +2 -1
- package/lib/lowcode/view/lc-components/Box/meta.json +1 -1
- package/lib/lowcode/view/lc-components/Button/meta.json +1 -1
- package/lib/lowcode/view/lc-components/CardList/FunctionDesign.js +2 -1
- package/lib/lowcode/view/lc-components/CardList/FunctionLive.js +2 -1
- package/lib/lowcode/view/lc-components/CardList/FunctionPreview.js +2 -1
- package/lib/lowcode/view/lc-components/CardList/meta.json +1 -1
- package/lib/lowcode/view/lc-components/Dialog/FunctionDesign.js +2 -4
- package/lib/lowcode/view/lc-components/Dialog/FunctionLive.js +2 -1
- package/lib/lowcode/view/lc-components/Dialog/FunctionPreview.js +2 -1
- package/lib/lowcode/view/lc-components/Dialog/meta.json +1 -1
- package/lib/lowcode/view/lc-components/Drawer/FunctionDesign.js +2 -1
- package/lib/lowcode/view/lc-components/Drawer/FunctionLive.js +2 -1
- package/lib/lowcode/view/lc-components/Drawer/FunctionPreview.js +2 -1
- package/lib/lowcode/view/lc-components/Drawer/meta.json +1 -1
- package/lib/lowcode/view/lc-components/Form/FunctionDesign.js +64 -2
- package/lib/lowcode/view/lc-components/Form/FunctionLive.js +2 -1
- package/lib/lowcode/view/lc-components/Form/FunctionPreview.js +2 -1
- package/lib/lowcode/view/lc-components/Form/index.js +230 -59
- package/lib/lowcode/view/lc-components/Form/meta.json +33 -30
- package/lib/lowcode/view/lc-components/Iframe/FunctionDesign.js +2 -1
- package/lib/lowcode/view/lc-components/Iframe/FunctionLive.js +2 -1
- package/lib/lowcode/view/lc-components/Iframe/FunctionPreview.js +2 -1
- package/lib/lowcode/view/lc-components/ImEx/FunctionDesign.js +2 -1
- package/lib/lowcode/view/lc-components/ImEx/FunctionLive.js +2 -1
- package/lib/lowcode/view/lc-components/ImEx/FunctionPreview.js +2 -1
- package/lib/lowcode/view/lc-components/ImEx/meta.json +1 -1
- package/lib/lowcode/view/lc-components/Image/FunctionDesign.js +2 -1
- package/lib/lowcode/view/lc-components/Image/FunctionLive.js +2 -1
- package/lib/lowcode/view/lc-components/Image/FunctionPreview.js +2 -1
- package/lib/lowcode/view/lc-components/Image/meta.json +2 -2
- package/lib/lowcode/view/lc-components/JSX/FunctionDesign.js +2 -1
- package/lib/lowcode/view/lc-components/JSX/FunctionLive.js +2 -1
- package/lib/lowcode/view/lc-components/JSX/FunctionPreview.js +2 -1
- package/lib/lowcode/view/lc-components/Layout/FunctionDesign.js +5 -6
- package/lib/lowcode/view/lc-components/Layout/FunctionPreview.js +2 -1
- package/lib/lowcode/view/lc-components/Link/FunctionDesign.js +2 -1
- package/lib/lowcode/view/lc-components/Link/FunctionLive.js +2 -1
- package/lib/lowcode/view/lc-components/Link/FunctionPreview.js +2 -1
- package/lib/lowcode/view/lc-components/Link/meta.json +1 -1
- package/lib/lowcode/view/lc-components/Section/FunctionDesign.js +31 -2
- package/lib/lowcode/view/lc-components/Section/FunctionLive.js +2 -1
- package/lib/lowcode/view/lc-components/Section/FunctionPreview.js +2 -1
- package/lib/lowcode/view/lc-components/Section/index.js +113 -23
- package/lib/lowcode/view/lc-components/Section/index.less +7 -0
- package/lib/lowcode/view/lc-components/Section/meta.json +48 -49
- package/lib/lowcode/view/lc-components/Split/FunctionDesign.js +5 -7
- package/lib/lowcode/view/lc-components/Split/FunctionLive.js +2 -1
- package/lib/lowcode/view/lc-components/Split/FunctionPreview.js +2 -1
- package/lib/lowcode/view/lc-components/Split/index.js +4 -4
- package/lib/lowcode/view/lc-components/Table/FunctionLive.js +2 -1
- package/lib/lowcode/view/lc-components/Table/FunctionPreview.js +2 -1
- package/lib/lowcode/view/lc-components/Table/index.js +7 -6
- package/lib/lowcode/view/lc-components/Tabs/FunctionDesign.js +4 -6
- package/lib/lowcode/view/lc-components/Text/FunctionDesign.js +2 -1
- package/lib/lowcode/view/lc-components/Text/FunctionLive.js +2 -1
- package/lib/lowcode/view/lc-components/Text/FunctionPreview.js +2 -1
- package/lib/lowcode/view/lc-components/Text/meta.json +2 -2
- package/lib/lowcode/view/lc-components/Tree/FunctionLive.js +2 -1
- package/lib/lowcode/view/lc-components/Tree/meta.json +2 -2
- package/lib/upload/Form/gridForm.js +7 -3
- package/package.json +1 -1
- package/es/lowcode/painter/services/toolbar.js +0 -25
- package/lib/lowcode/painter/services/toolbar.js +0 -32
package/es/locales/zh-CN.js
CHANGED
|
@@ -7,7 +7,16 @@ export default {
|
|
|
7
7
|
"luckda.lowcode.modal": "模态视图层",
|
|
8
8
|
"luckda.lowcode.painter.I18n.search": "搜索文案",
|
|
9
9
|
"luckda.lowcode.painter.I18n.add": "新增文案",
|
|
10
|
+
"luckda.lowcode.design.toolbar.clear.tip": "清除提示",
|
|
11
|
+
"luckda.lowcode.design.toolbar.clear": "清除缓存",
|
|
10
12
|
"luckda.lowcode.error.pagedata": "页面数据错误",
|
|
13
|
+
"luckda.lowcode.design.toolbar.pageAttrs": "页面属性",
|
|
14
|
+
"luckda.lowcode.design.toolbar.preview": "预览",
|
|
15
|
+
"luckda.lowcode.design.toolbar.save": "保存",
|
|
16
|
+
"luckda.lowcode.design.toolbar.pagePreview": "页面预览",
|
|
17
|
+
"luckda.lowcode.design.toolbar.selectUser": "请选择模拟登录人",
|
|
18
|
+
"app.base.operate.comfire.leave": "离开当前页面?",
|
|
19
|
+
"app.base.operate.comfire.message.leave": "系统可能不会保存您所做的更改。",
|
|
11
20
|
"luckda.lowcode.painter.components.search": "搜索组件",
|
|
12
21
|
"ccm.dev.page.set.components.base": "基础组件",
|
|
13
22
|
"ccm.dev.page.set.components.custom": "自定义组件",
|
|
@@ -46,8 +46,10 @@ export function fetchDesignModlueData(_x2, _x3) {
|
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
/**
|
|
49
|
-
*
|
|
50
|
-
* @param {
|
|
49
|
+
* 获取preview时模块数据
|
|
50
|
+
* @param {*} dmCode
|
|
51
|
+
* @param {*} params
|
|
52
|
+
* @returns
|
|
51
53
|
*/
|
|
52
54
|
function _fetchDesignModlueData() {
|
|
53
55
|
_fetchDesignModlueData = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2(_, params) {
|
|
@@ -65,20 +67,20 @@ function _fetchDesignModlueData() {
|
|
|
65
67
|
}));
|
|
66
68
|
return _fetchDesignModlueData.apply(this, arguments);
|
|
67
69
|
}
|
|
68
|
-
export function
|
|
69
|
-
return
|
|
70
|
+
export function fetchPreviewModlueData(_x4, _x5) {
|
|
71
|
+
return _fetchPreviewModlueData.apply(this, arguments);
|
|
70
72
|
}
|
|
71
73
|
|
|
72
74
|
/**
|
|
73
|
-
*
|
|
74
|
-
* @param {{
|
|
75
|
+
* 获取live时模块数据
|
|
76
|
+
* @param {{moduleCode: string}} params
|
|
75
77
|
*/
|
|
76
|
-
function
|
|
77
|
-
|
|
78
|
+
function _fetchPreviewModlueData() {
|
|
79
|
+
_fetchPreviewModlueData = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3(dmCode, params) {
|
|
78
80
|
return _regeneratorRuntime().wrap(function _callee3$(_context3) {
|
|
79
81
|
while (1) switch (_context3.prev = _context3.next) {
|
|
80
82
|
case 0:
|
|
81
|
-
return _context3.abrupt("return", request("".concat(api.API_HOST, "/").concat(dmCode, "/ui/builder/
|
|
83
|
+
return _context3.abrupt("return", request("".concat(api.API_HOST, "/").concat(dmCode, "/ui/builder/fetchModuleForPreview"), {
|
|
82
84
|
params: params
|
|
83
85
|
}));
|
|
84
86
|
case 1:
|
|
@@ -87,9 +89,33 @@ function _fetchModlueData() {
|
|
|
87
89
|
}
|
|
88
90
|
}, _callee3);
|
|
89
91
|
}));
|
|
92
|
+
return _fetchPreviewModlueData.apply(this, arguments);
|
|
93
|
+
}
|
|
94
|
+
export function fetchModlueData(_x6, _x7) {
|
|
95
|
+
return _fetchModlueData.apply(this, arguments);
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* 获取数据模型下的所有数据集
|
|
100
|
+
* @param {{ dataModelKey }} params
|
|
101
|
+
*/
|
|
102
|
+
function _fetchModlueData() {
|
|
103
|
+
_fetchModlueData = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee4(dmCode, params) {
|
|
104
|
+
return _regeneratorRuntime().wrap(function _callee4$(_context4) {
|
|
105
|
+
while (1) switch (_context4.prev = _context4.next) {
|
|
106
|
+
case 0:
|
|
107
|
+
return _context4.abrupt("return", request("".concat(api.API_HOST, "/").concat(dmCode, "/ui/builder/noAuthFetchModule"), {
|
|
108
|
+
params: params
|
|
109
|
+
}));
|
|
110
|
+
case 1:
|
|
111
|
+
case "end":
|
|
112
|
+
return _context4.stop();
|
|
113
|
+
}
|
|
114
|
+
}, _callee4);
|
|
115
|
+
}));
|
|
90
116
|
return _fetchModlueData.apply(this, arguments);
|
|
91
117
|
}
|
|
92
|
-
export function fetchAllDataset(
|
|
118
|
+
export function fetchAllDataset(_x8) {
|
|
93
119
|
return _fetchAllDataset.apply(this, arguments);
|
|
94
120
|
}
|
|
95
121
|
|
|
@@ -98,22 +124,22 @@ export function fetchAllDataset(_x6) {
|
|
|
98
124
|
* @data {{ uid, dataModelKey, addList: { code, datasetUid }}} body数据
|
|
99
125
|
*/
|
|
100
126
|
function _fetchAllDataset() {
|
|
101
|
-
_fetchAllDataset = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function
|
|
102
|
-
return _regeneratorRuntime().wrap(function
|
|
103
|
-
while (1) switch (
|
|
127
|
+
_fetchAllDataset = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee5(params) {
|
|
128
|
+
return _regeneratorRuntime().wrap(function _callee5$(_context5) {
|
|
129
|
+
while (1) switch (_context5.prev = _context5.next) {
|
|
104
130
|
case 0:
|
|
105
|
-
return
|
|
131
|
+
return _context5.abrupt("return", request("".concat(API_PREFIX_PAGE, "/option/noAuthGetDataset"), {
|
|
106
132
|
params: params
|
|
107
133
|
}));
|
|
108
134
|
case 1:
|
|
109
135
|
case "end":
|
|
110
|
-
return
|
|
136
|
+
return _context5.stop();
|
|
111
137
|
}
|
|
112
|
-
},
|
|
138
|
+
}, _callee5);
|
|
113
139
|
}));
|
|
114
140
|
return _fetchAllDataset.apply(this, arguments);
|
|
115
141
|
}
|
|
116
|
-
export function fetchAddDataset(
|
|
142
|
+
export function fetchAddDataset(_x9) {
|
|
117
143
|
return _fetchAddDataset.apply(this, arguments);
|
|
118
144
|
}
|
|
119
145
|
|
|
@@ -122,23 +148,23 @@ export function fetchAddDataset(_x7) {
|
|
|
122
148
|
* @param {{datasetUid}} params
|
|
123
149
|
*/
|
|
124
150
|
function _fetchAddDataset() {
|
|
125
|
-
_fetchAddDataset = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function
|
|
126
|
-
return _regeneratorRuntime().wrap(function
|
|
127
|
-
while (1) switch (
|
|
151
|
+
_fetchAddDataset = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee6(data) {
|
|
152
|
+
return _regeneratorRuntime().wrap(function _callee6$(_context6) {
|
|
153
|
+
while (1) switch (_context6.prev = _context6.next) {
|
|
128
154
|
case 0:
|
|
129
|
-
return
|
|
155
|
+
return _context6.abrupt("return", request("".concat(API_RREFIX_DATASET, "/add"), {
|
|
130
156
|
data: data,
|
|
131
157
|
method: 'POST'
|
|
132
158
|
}));
|
|
133
159
|
case 1:
|
|
134
160
|
case "end":
|
|
135
|
-
return
|
|
161
|
+
return _context6.stop();
|
|
136
162
|
}
|
|
137
|
-
},
|
|
163
|
+
}, _callee6);
|
|
138
164
|
}));
|
|
139
165
|
return _fetchAddDataset.apply(this, arguments);
|
|
140
166
|
}
|
|
141
|
-
export function fetchFieldsByDataset(
|
|
167
|
+
export function fetchFieldsByDataset(_x10) {
|
|
142
168
|
return _fetchFieldsByDataset.apply(this, arguments);
|
|
143
169
|
}
|
|
144
170
|
|
|
@@ -148,22 +174,22 @@ export function fetchFieldsByDataset(_x8) {
|
|
|
148
174
|
* @returns
|
|
149
175
|
*/
|
|
150
176
|
function _fetchFieldsByDataset() {
|
|
151
|
-
_fetchFieldsByDataset = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function
|
|
152
|
-
return _regeneratorRuntime().wrap(function
|
|
153
|
-
while (1) switch (
|
|
177
|
+
_fetchFieldsByDataset = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee7(params) {
|
|
178
|
+
return _regeneratorRuntime().wrap(function _callee7$(_context7) {
|
|
179
|
+
while (1) switch (_context7.prev = _context7.next) {
|
|
154
180
|
case 0:
|
|
155
|
-
return
|
|
181
|
+
return _context7.abrupt("return", request("".concat(API_RREFIX_DATASET, "/field/readAll"), {
|
|
156
182
|
params: params
|
|
157
183
|
}));
|
|
158
184
|
case 1:
|
|
159
185
|
case "end":
|
|
160
|
-
return
|
|
186
|
+
return _context7.stop();
|
|
161
187
|
}
|
|
162
|
-
},
|
|
188
|
+
}, _callee7);
|
|
163
189
|
}));
|
|
164
190
|
return _fetchFieldsByDataset.apply(this, arguments);
|
|
165
191
|
}
|
|
166
|
-
export function fetchFieldCondition(
|
|
192
|
+
export function fetchFieldCondition(_x11) {
|
|
167
193
|
return _fetchFieldCondition.apply(this, arguments);
|
|
168
194
|
}
|
|
169
195
|
|
|
@@ -172,22 +198,22 @@ export function fetchFieldCondition(_x9) {
|
|
|
172
198
|
* @param {{moduleId,datasetId,moduleFieldId}} params
|
|
173
199
|
*/
|
|
174
200
|
function _fetchFieldCondition() {
|
|
175
|
-
_fetchFieldCondition = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function
|
|
176
|
-
return _regeneratorRuntime().wrap(function
|
|
177
|
-
while (1) switch (
|
|
201
|
+
_fetchFieldCondition = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee8(params) {
|
|
202
|
+
return _regeneratorRuntime().wrap(function _callee8$(_context8) {
|
|
203
|
+
while (1) switch (_context8.prev = _context8.next) {
|
|
178
204
|
case 0:
|
|
179
|
-
return
|
|
205
|
+
return _context8.abrupt("return", request("".concat(API_PREFIX_PAGE, "/readFieldCondition"), {
|
|
180
206
|
params: params
|
|
181
207
|
}));
|
|
182
208
|
case 1:
|
|
183
209
|
case "end":
|
|
184
|
-
return
|
|
210
|
+
return _context8.stop();
|
|
185
211
|
}
|
|
186
|
-
},
|
|
212
|
+
}, _callee8);
|
|
187
213
|
}));
|
|
188
214
|
return _fetchFieldCondition.apply(this, arguments);
|
|
189
215
|
}
|
|
190
|
-
export function fetchUpdateTitleField(
|
|
216
|
+
export function fetchUpdateTitleField(_x12) {
|
|
191
217
|
return _fetchUpdateTitleField.apply(this, arguments);
|
|
192
218
|
}
|
|
193
219
|
|
|
@@ -197,23 +223,23 @@ export function fetchUpdateTitleField(_x10) {
|
|
|
197
223
|
* @returns
|
|
198
224
|
*/
|
|
199
225
|
function _fetchUpdateTitleField() {
|
|
200
|
-
_fetchUpdateTitleField = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function
|
|
201
|
-
return _regeneratorRuntime().wrap(function
|
|
202
|
-
while (1) switch (
|
|
226
|
+
_fetchUpdateTitleField = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee9(data) {
|
|
227
|
+
return _regeneratorRuntime().wrap(function _callee9$(_context9) {
|
|
228
|
+
while (1) switch (_context9.prev = _context9.next) {
|
|
203
229
|
case 0:
|
|
204
|
-
return
|
|
230
|
+
return _context9.abrupt("return", request("".concat(API_RREFIX_DATASET, "/field/updateTitleField"), {
|
|
205
231
|
method: 'POST',
|
|
206
232
|
data: data
|
|
207
233
|
}));
|
|
208
234
|
case 1:
|
|
209
235
|
case "end":
|
|
210
|
-
return
|
|
236
|
+
return _context9.stop();
|
|
211
237
|
}
|
|
212
|
-
},
|
|
238
|
+
}, _callee9);
|
|
213
239
|
}));
|
|
214
240
|
return _fetchUpdateTitleField.apply(this, arguments);
|
|
215
241
|
}
|
|
216
|
-
export function fetchUpdateUniqueField(
|
|
242
|
+
export function fetchUpdateUniqueField(_x13) {
|
|
217
243
|
return _fetchUpdateUniqueField.apply(this, arguments);
|
|
218
244
|
}
|
|
219
245
|
|
|
@@ -222,23 +248,23 @@ export function fetchUpdateUniqueField(_x11) {
|
|
|
222
248
|
* @param {*} data
|
|
223
249
|
*/
|
|
224
250
|
function _fetchUpdateUniqueField() {
|
|
225
|
-
_fetchUpdateUniqueField = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function
|
|
226
|
-
return _regeneratorRuntime().wrap(function
|
|
227
|
-
while (1) switch (
|
|
251
|
+
_fetchUpdateUniqueField = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee10(data) {
|
|
252
|
+
return _regeneratorRuntime().wrap(function _callee10$(_context10) {
|
|
253
|
+
while (1) switch (_context10.prev = _context10.next) {
|
|
228
254
|
case 0:
|
|
229
|
-
return
|
|
255
|
+
return _context10.abrupt("return", request("".concat(API_RREFIX_DATASET, "/field/updateUniqueField"), {
|
|
230
256
|
method: 'POST',
|
|
231
257
|
data: data
|
|
232
258
|
}));
|
|
233
259
|
case 1:
|
|
234
260
|
case "end":
|
|
235
|
-
return
|
|
261
|
+
return _context10.stop();
|
|
236
262
|
}
|
|
237
|
-
},
|
|
263
|
+
}, _callee10);
|
|
238
264
|
}));
|
|
239
265
|
return _fetchUpdateUniqueField.apply(this, arguments);
|
|
240
266
|
}
|
|
241
|
-
export function fetchAddFieldAttrs(
|
|
267
|
+
export function fetchAddFieldAttrs(_x14) {
|
|
242
268
|
return _fetchAddFieldAttrs.apply(this, arguments);
|
|
243
269
|
}
|
|
244
270
|
|
|
@@ -247,23 +273,23 @@ export function fetchAddFieldAttrs(_x12) {
|
|
|
247
273
|
* @param {*} data
|
|
248
274
|
*/
|
|
249
275
|
function _fetchAddFieldAttrs() {
|
|
250
|
-
_fetchAddFieldAttrs = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function
|
|
251
|
-
return _regeneratorRuntime().wrap(function
|
|
252
|
-
while (1) switch (
|
|
276
|
+
_fetchAddFieldAttrs = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee11(data) {
|
|
277
|
+
return _regeneratorRuntime().wrap(function _callee11$(_context11) {
|
|
278
|
+
while (1) switch (_context11.prev = _context11.next) {
|
|
253
279
|
case 0:
|
|
254
|
-
return
|
|
280
|
+
return _context11.abrupt("return", request("".concat(API_RREFIX_DATASET, "/field/addAttributes"), {
|
|
255
281
|
data: data,
|
|
256
282
|
method: 'POST'
|
|
257
283
|
}));
|
|
258
284
|
case 1:
|
|
259
285
|
case "end":
|
|
260
|
-
return
|
|
286
|
+
return _context11.stop();
|
|
261
287
|
}
|
|
262
|
-
},
|
|
288
|
+
}, _callee11);
|
|
263
289
|
}));
|
|
264
290
|
return _fetchAddFieldAttrs.apply(this, arguments);
|
|
265
291
|
}
|
|
266
|
-
export function fetchDelAttrs(
|
|
292
|
+
export function fetchDelAttrs(_x15) {
|
|
267
293
|
return _fetchDelAttrs.apply(this, arguments);
|
|
268
294
|
}
|
|
269
295
|
|
|
@@ -272,23 +298,23 @@ export function fetchDelAttrs(_x13) {
|
|
|
272
298
|
* @param {*} params
|
|
273
299
|
*/
|
|
274
300
|
function _fetchDelAttrs() {
|
|
275
|
-
_fetchDelAttrs = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function
|
|
276
|
-
return _regeneratorRuntime().wrap(function
|
|
277
|
-
while (1) switch (
|
|
301
|
+
_fetchDelAttrs = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee12(data) {
|
|
302
|
+
return _regeneratorRuntime().wrap(function _callee12$(_context12) {
|
|
303
|
+
while (1) switch (_context12.prev = _context12.next) {
|
|
278
304
|
case 0:
|
|
279
|
-
return
|
|
305
|
+
return _context12.abrupt("return", request("".concat(API_RREFIX_DATASET, "/field/deleteAttributes"), {
|
|
280
306
|
data: data,
|
|
281
307
|
method: 'POST'
|
|
282
308
|
}));
|
|
283
309
|
case 1:
|
|
284
310
|
case "end":
|
|
285
|
-
return
|
|
311
|
+
return _context12.stop();
|
|
286
312
|
}
|
|
287
|
-
},
|
|
313
|
+
}, _callee12);
|
|
288
314
|
}));
|
|
289
315
|
return _fetchDelAttrs.apply(this, arguments);
|
|
290
316
|
}
|
|
291
|
-
export function fetchUpdateFieldAttrs(
|
|
317
|
+
export function fetchUpdateFieldAttrs(_x16) {
|
|
292
318
|
return _fetchUpdateFieldAttrs.apply(this, arguments);
|
|
293
319
|
}
|
|
294
320
|
|
|
@@ -298,23 +324,23 @@ export function fetchUpdateFieldAttrs(_x14) {
|
|
|
298
324
|
* @returns
|
|
299
325
|
*/
|
|
300
326
|
function _fetchUpdateFieldAttrs() {
|
|
301
|
-
_fetchUpdateFieldAttrs = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function
|
|
302
|
-
return _regeneratorRuntime().wrap(function
|
|
303
|
-
while (1) switch (
|
|
327
|
+
_fetchUpdateFieldAttrs = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee13(data) {
|
|
328
|
+
return _regeneratorRuntime().wrap(function _callee13$(_context13) {
|
|
329
|
+
while (1) switch (_context13.prev = _context13.next) {
|
|
304
330
|
case 0:
|
|
305
|
-
return
|
|
331
|
+
return _context13.abrupt("return", request("".concat(API_RREFIX_DATASET, "/field/updateAttributes"), {
|
|
306
332
|
data: data,
|
|
307
333
|
method: 'POST'
|
|
308
334
|
}));
|
|
309
335
|
case 1:
|
|
310
336
|
case "end":
|
|
311
|
-
return
|
|
337
|
+
return _context13.stop();
|
|
312
338
|
}
|
|
313
|
-
},
|
|
339
|
+
}, _callee13);
|
|
314
340
|
}));
|
|
315
341
|
return _fetchUpdateFieldAttrs.apply(this, arguments);
|
|
316
342
|
}
|
|
317
|
-
export function fetchAttrs(
|
|
343
|
+
export function fetchAttrs(_x17) {
|
|
318
344
|
return _fetchAttrs.apply(this, arguments);
|
|
319
345
|
}
|
|
320
346
|
|
|
@@ -324,22 +350,22 @@ export function fetchAttrs(_x15) {
|
|
|
324
350
|
* @returns
|
|
325
351
|
*/
|
|
326
352
|
function _fetchAttrs() {
|
|
327
|
-
_fetchAttrs = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function
|
|
328
|
-
return _regeneratorRuntime().wrap(function
|
|
329
|
-
while (1) switch (
|
|
353
|
+
_fetchAttrs = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee14(params) {
|
|
354
|
+
return _regeneratorRuntime().wrap(function _callee14$(_context14) {
|
|
355
|
+
while (1) switch (_context14.prev = _context14.next) {
|
|
330
356
|
case 0:
|
|
331
|
-
return
|
|
357
|
+
return _context14.abrupt("return", request("".concat(API_RREFIX_DATASET, "/field/readAttributes"), {
|
|
332
358
|
params: params
|
|
333
359
|
}));
|
|
334
360
|
case 1:
|
|
335
361
|
case "end":
|
|
336
|
-
return
|
|
362
|
+
return _context14.stop();
|
|
337
363
|
}
|
|
338
|
-
},
|
|
364
|
+
}, _callee14);
|
|
339
365
|
}));
|
|
340
366
|
return _fetchAttrs.apply(this, arguments);
|
|
341
367
|
}
|
|
342
|
-
export function fetchAllBehavior(
|
|
368
|
+
export function fetchAllBehavior(_x18) {
|
|
343
369
|
return _fetchAllBehavior.apply(this, arguments);
|
|
344
370
|
}
|
|
345
371
|
|
|
@@ -349,51 +375,64 @@ export function fetchAllBehavior(_x16) {
|
|
|
349
375
|
* @returns
|
|
350
376
|
*/
|
|
351
377
|
function _fetchAllBehavior() {
|
|
352
|
-
_fetchAllBehavior = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function
|
|
353
|
-
return _regeneratorRuntime().wrap(function
|
|
354
|
-
while (1) switch (
|
|
378
|
+
_fetchAllBehavior = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee15(params) {
|
|
379
|
+
return _regeneratorRuntime().wrap(function _callee15$(_context15) {
|
|
380
|
+
while (1) switch (_context15.prev = _context15.next) {
|
|
355
381
|
case 0:
|
|
356
|
-
return
|
|
382
|
+
return _context15.abrupt("return", request("".concat(API_PREFIX_MODULE, "/behavior/readAll"), {
|
|
357
383
|
params: params
|
|
358
384
|
}));
|
|
359
385
|
case 1:
|
|
360
386
|
case "end":
|
|
361
|
-
return
|
|
387
|
+
return _context15.stop();
|
|
362
388
|
}
|
|
363
|
-
},
|
|
389
|
+
}, _callee15);
|
|
364
390
|
}));
|
|
365
391
|
return _fetchAllBehavior.apply(this, arguments);
|
|
366
392
|
}
|
|
367
|
-
export function fetchAllSerials(
|
|
393
|
+
export function fetchAllSerials(_x19) {
|
|
368
394
|
return _fetchAllSerials.apply(this, arguments);
|
|
369
395
|
}
|
|
396
|
+
|
|
397
|
+
/**
|
|
398
|
+
* 执行行为
|
|
399
|
+
* @param {*} params
|
|
400
|
+
* @param {*} data
|
|
401
|
+
* @returns
|
|
402
|
+
*/
|
|
370
403
|
function _fetchAllSerials() {
|
|
371
|
-
_fetchAllSerials = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function
|
|
372
|
-
return _regeneratorRuntime().wrap(function
|
|
373
|
-
while (1) switch (
|
|
404
|
+
_fetchAllSerials = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee16(params) {
|
|
405
|
+
return _regeneratorRuntime().wrap(function _callee16$(_context16) {
|
|
406
|
+
while (1) switch (_context16.prev = _context16.next) {
|
|
374
407
|
case 0:
|
|
375
|
-
return
|
|
408
|
+
return _context16.abrupt("return", request("".concat(API_PREFIX_MODULE, "/Serials/readAll"), {
|
|
376
409
|
params: params
|
|
377
410
|
}));
|
|
378
411
|
case 1:
|
|
379
412
|
case "end":
|
|
380
|
-
return
|
|
413
|
+
return _context16.stop();
|
|
381
414
|
}
|
|
382
|
-
},
|
|
415
|
+
}, _callee16);
|
|
383
416
|
}));
|
|
384
417
|
return _fetchAllSerials.apply(this, arguments);
|
|
385
418
|
}
|
|
386
|
-
export function fetchCallBehavior(
|
|
419
|
+
export function fetchCallBehavior(_x20, _x21) {
|
|
387
420
|
return _fetchCallBehavior.apply(this, arguments);
|
|
388
421
|
}
|
|
422
|
+
|
|
423
|
+
/**
|
|
424
|
+
* 清除当前模块缓存
|
|
425
|
+
* @param {{moduleCode}} params
|
|
426
|
+
* @returns
|
|
427
|
+
*/
|
|
389
428
|
function _fetchCallBehavior() {
|
|
390
|
-
_fetchCallBehavior = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function
|
|
429
|
+
_fetchCallBehavior = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee17(params, data) {
|
|
391
430
|
var mdCode;
|
|
392
|
-
return _regeneratorRuntime().wrap(function
|
|
393
|
-
while (1) switch (
|
|
431
|
+
return _regeneratorRuntime().wrap(function _callee17$(_context17) {
|
|
432
|
+
while (1) switch (_context17.prev = _context17.next) {
|
|
394
433
|
case 0:
|
|
395
434
|
mdCode = window[DATA_MODEL_CODE_KEY];
|
|
396
|
-
return
|
|
435
|
+
return _context17.abrupt("return", request("".concat(api.API_HOST, "/").concat(mdCode, "/to/behavior/call"), {
|
|
397
436
|
method: 'POST',
|
|
398
437
|
data: data,
|
|
399
438
|
params: params,
|
|
@@ -403,9 +442,54 @@ function _fetchCallBehavior() {
|
|
|
403
442
|
}));
|
|
404
443
|
case 2:
|
|
405
444
|
case "end":
|
|
406
|
-
return
|
|
445
|
+
return _context17.stop();
|
|
407
446
|
}
|
|
408
|
-
},
|
|
447
|
+
}, _callee17);
|
|
409
448
|
}));
|
|
410
449
|
return _fetchCallBehavior.apply(this, arguments);
|
|
450
|
+
}
|
|
451
|
+
export function fetchClearCache(_x22) {
|
|
452
|
+
return _fetchClearCache.apply(this, arguments);
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
/**
|
|
456
|
+
* 更新页面配置数据
|
|
457
|
+
* @param {*} data
|
|
458
|
+
* @returns
|
|
459
|
+
*/
|
|
460
|
+
function _fetchClearCache() {
|
|
461
|
+
_fetchClearCache = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee18(params) {
|
|
462
|
+
return _regeneratorRuntime().wrap(function _callee18$(_context18) {
|
|
463
|
+
while (1) switch (_context18.prev = _context18.next) {
|
|
464
|
+
case 0:
|
|
465
|
+
return _context18.abrupt("return", request("".concat(api.LUCKDA_HOST, "/cache/manage/noAuthModuleConfigClear"), {
|
|
466
|
+
params: params
|
|
467
|
+
}));
|
|
468
|
+
case 1:
|
|
469
|
+
case "end":
|
|
470
|
+
return _context18.stop();
|
|
471
|
+
}
|
|
472
|
+
}, _callee18);
|
|
473
|
+
}));
|
|
474
|
+
return _fetchClearCache.apply(this, arguments);
|
|
475
|
+
}
|
|
476
|
+
export function fetchUpdatePageData(_x23) {
|
|
477
|
+
return _fetchUpdatePageData.apply(this, arguments);
|
|
478
|
+
}
|
|
479
|
+
function _fetchUpdatePageData() {
|
|
480
|
+
_fetchUpdatePageData = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee19(data) {
|
|
481
|
+
return _regeneratorRuntime().wrap(function _callee19$(_context19) {
|
|
482
|
+
while (1) switch (_context19.prev = _context19.next) {
|
|
483
|
+
case 0:
|
|
484
|
+
return _context19.abrupt("return", request("".concat(API_PREFIX_PAGE, "/data/update"), {
|
|
485
|
+
method: 'POST',
|
|
486
|
+
data: data
|
|
487
|
+
}));
|
|
488
|
+
case 1:
|
|
489
|
+
case "end":
|
|
490
|
+
return _context19.stop();
|
|
491
|
+
}
|
|
492
|
+
}, _callee19);
|
|
493
|
+
}));
|
|
494
|
+
return _fetchUpdatePageData.apply(this, arguments);
|
|
411
495
|
}
|
|
@@ -3,7 +3,8 @@ export var RUNTIME = {
|
|
|
3
3
|
DESIGN: 'design',
|
|
4
4
|
PREVIEW: 'preview'
|
|
5
5
|
};
|
|
6
|
-
export var
|
|
6
|
+
export var COOKIE_RUNTIME_KEY = 'Lowcode-Runtime';
|
|
7
|
+
export var COOKIE_VIRTUAL_ACCOUNT_KEY = 'Lowcode-Account';
|
|
7
8
|
export var DATA_MODEL_CODE_KEY = 'Lowcode-Data-Model-Code';
|
|
8
9
|
export var LC_COMPONENT_UNIT_KEY = 'luckda-unitmark';
|
|
9
10
|
export var LC_COMPONENT_UNIT = 'lc-component';
|
|
@@ -23,7 +23,8 @@
|
|
|
23
23
|
"info"
|
|
24
24
|
],
|
|
25
25
|
"cols": 4,
|
|
26
|
-
"readOnly": false
|
|
26
|
+
"readOnly": false,
|
|
27
|
+
"order": 1
|
|
27
28
|
}
|
|
28
29
|
],
|
|
29
30
|
"serialEffect": "hidden",
|
|
@@ -36,7 +37,6 @@
|
|
|
36
37
|
"table": {
|
|
37
38
|
"readOnly": false,
|
|
38
39
|
"suppressPreset": false,
|
|
39
|
-
"width": "100%",
|
|
40
40
|
"height": "100%",
|
|
41
41
|
"bordered": false,
|
|
42
42
|
"popTitleKey": "title",
|
|
@@ -48,12 +48,11 @@
|
|
|
48
48
|
"uploadForm": {
|
|
49
49
|
"readOnly": false,
|
|
50
50
|
"suppressPreset": false,
|
|
51
|
-
"
|
|
52
|
-
"height": "100%",
|
|
51
|
+
"height": "300px",
|
|
53
52
|
"bordered": false,
|
|
54
53
|
"showNote": false,
|
|
55
54
|
"zipName": "download",
|
|
56
|
-
"useResetActions":
|
|
55
|
+
"useResetActions": false
|
|
57
56
|
}
|
|
58
57
|
},
|
|
59
58
|
"advance": {
|