centaline-data-driven 1.5.70 → 1.5.72
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 +2 -1
- package/build/centaline/centaline.path.js +1 -0
- package/package.json +1 -1
- package/release-log.md +22 -0
- package/src/EmployeeClassList.vue +0 -1
- package/src/centaline/common/index.js +3 -0
- package/src/centaline/dynamicCalendar/src/dynamicCalendar.vue +427 -572
- package/src/centaline/dynamicCalendar/src/index.css +49 -44
- package/src/centaline/dynamicD/src/dynamicD.vue +7 -0
- package/src/centaline/dynamicForm/src/dynamicFormListTable.vue +1 -5
- package/src/centaline/dynamicLH/index.js +11 -0
- package/src/centaline/dynamicLH/src/dynamicLH.vue +62 -0
- package/src/centaline/dynamicTree/src/dynamicTree.vue +21 -8
- package/src/centaline/dynamicTree/src/dynamicTreeList.vue +4 -2
- package/src/centaline/loader/src/ctl/Canlendar.js +123 -36
- package/src/centaline/loader/src/ctl/LH.js +23 -0
- package/src/centaline/loader/src/ctl/lib/Enum.js +5 -0
- package/src/centaline/loader/src/ctl/lib/LibFunction.js +5 -2
- package/src/centaline/loader/src/ctl.js +1 -0
- package/src/main.js +2 -2
- package/wwwroot/static/centaline/centaline-data-driven.js +1650 -1511
- package/wwwroot/static/centaline/centaline-data-driven.js.map +1 -1
package/README.md
CHANGED
|
@@ -153,9 +153,10 @@ execServerScript(action, object, successCallback)
|
|
|
153
153
|
* @param {boolean} center 是否居中。
|
|
154
154
|
* @param {number} duration 显示时间,1500毫秒。设为 0 则不会自动关闭。
|
|
155
155
|
* @param {boolean} showClose 是否显示关闭按钮。
|
|
156
|
+
* @param {boolean} dangerouslyUseHTMLString 是否将 message 属性作为 HTML 片段处理。
|
|
156
157
|
* @desc 消息提示。常用于主动操作后的反馈提示。
|
|
157
158
|
*/
|
|
158
|
-
message(message, type, center, duration, showClose)
|
|
159
|
+
message(message, type, center, duration, showClose,dangerouslyUseHTMLString)
|
|
159
160
|
|
|
160
161
|
```
|
|
161
162
|
|
|
@@ -62,6 +62,7 @@ const paths = {
|
|
|
62
62
|
"dynamicContainer": "./src/centaline/dynamicContainer/index.js", //容器控件
|
|
63
63
|
"dynamicSearch": "./src/centaline/dynamicSearch/index.js", //查询条件
|
|
64
64
|
"dynamicCalendar": "./src/centaline/dynamicCalendar/index.js", //日历控件
|
|
65
|
+
"dynamicLH": "./src/centaline/dynamicLH/index.js", //html 标签
|
|
65
66
|
},
|
|
66
67
|
"plugs": {
|
|
67
68
|
"api": "./src/centaline/api/index.js", //调用API插件
|
package/package.json
CHANGED
package/release-log.md
CHANGED
|
@@ -351,6 +351,9 @@ const common = {
|
|
|
351
351
|
else if (parent.$options.name === 'DataDrivenSearchTree') {
|
|
352
352
|
return parent;
|
|
353
353
|
}
|
|
354
|
+
else if (parent.$options.name === 'DataDrivenEmployeeClassList') {
|
|
355
|
+
return parent;
|
|
356
|
+
}
|
|
354
357
|
else {
|
|
355
358
|
return this.getParentPane(parent);
|
|
356
359
|
}
|