centaline-data-driven 1.6.10 → 1.6.12
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/build/centaline/centaline.path.js +1 -1
- package/package.json +1 -1
- package/release-log.md +17 -0
- package/src/Form.vue +2 -2
- package/src/centaline/dialogList/src/dialog.vue +1 -1
- package/src/centaline/dynamicFile/src/dynamicFile.vue +864 -775
- package/src/centaline/dynamicSteps/index.js +11 -0
- package/src/centaline/dynamicSteps/src/dynamicSteps.vue +63 -0
- package/src/centaline/dynamicSw/src/dynamicSw.vue +1 -1
- package/src/centaline/loader/src/ctl/File.js +21 -7
- package/src/centaline/loader/src/ctl/FormList.js +1 -1
- package/src/centaline/loader/src/ctl/SearchTable.js +1 -1
- package/src/centaline/loader/src/ctl/Steps.js +56 -0
- package/src/centaline/loader/src/ctl/lib/Enum.js +5 -0
- package/src/centaline/loader/src/ctl/lib/LibFunction.js +6 -0
- package/src/centaline/loader/src/ctl.js +1 -0
- package/src/main.js +5 -4
- package/wwwroot/static/centaline/centaline-data-driven.js +2156 -1838
- package/wwwroot/static/centaline/centaline-data-driven.js.map +1 -1
|
@@ -66,7 +66,7 @@ const paths = {
|
|
|
66
66
|
"dynamicLH": "./src/centaline/dynamicLH/index.js", //html 标签
|
|
67
67
|
"dynamicImage": "./src/centaline/dynamicImage/index.js", //图片
|
|
68
68
|
"dynamicAppContainer": "./src/centaline/dynamicAppContainer/index.js", //
|
|
69
|
-
|
|
69
|
+
"dynamicSteps": "./src/centaline/dynamicSteps/index.js", //步骤控件
|
|
70
70
|
},
|
|
71
71
|
"plugs": {
|
|
72
72
|
"api": "./src/centaline/api/index.js", //调用API插件
|
package/package.json
CHANGED
package/release-log.md
CHANGED
package/src/Form.vue
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div id="form-app" class="data-driven" style="width:100%;height:100%;overflow:auto">
|
|
3
3
|
<!-- <ct-form :source="formdata.content" :apiParam="apiParam"></ct-form> -->
|
|
4
|
-
<ct-form :api="'/
|
|
4
|
+
<ct-form :api="'/saleconfigurationmanagement/personnelcommissionallocationmethod/getLayoutOfNew'" :apiParam="apiParam" :topHeight="topHeight" :documentHeight="'600px'"></ct-form>
|
|
5
5
|
<ct-dialog-list></ct-dialog-list>
|
|
6
6
|
</div>
|
|
7
7
|
</template>
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
data() {
|
|
13
13
|
return {
|
|
14
14
|
apiParam:{
|
|
15
|
-
"actionType":2
|
|
15
|
+
"actionType":2
|
|
16
16
|
},
|
|
17
17
|
topHeight:10,
|
|
18
18
|
}
|
|
@@ -184,7 +184,7 @@
|
|
|
184
184
|
if (typeof item.on.loaded === "undefined") {
|
|
185
185
|
item.on.loaded = (model) => {
|
|
186
186
|
mySelf.vmodel.title = (model && model.title) ? model.title : mySelf.vmodel.title
|
|
187
|
-
if(model.captionBarButtons){
|
|
187
|
+
if(model && model.captionBarButtons){
|
|
188
188
|
mySelf.captionBarButtons = model.captionBarButtons
|
|
189
189
|
}
|
|
190
190
|
mySelf.modelSelf = model
|