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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "centaline-data-driven",
3
- "version": "1.5.70",
3
+ "version": "1.5.72",
4
4
  "description": "ccai",
5
5
  "author": "hjc <3226136347@qq.com>",
6
6
  "private": false,
package/release-log.md CHANGED
@@ -1,3 +1,25 @@
1
+ ## v1.5.72
2
+ 2023-11-01
3
+ 优化
4
+
5
+ 日历组件右键操作栏位置计算逻辑
6
+
7
+ 树组件右键操作栏位置计算逻辑
8
+
9
+ FormList 提示优化
10
+
11
+ 日历组件优化刷新
12
+
13
+
14
+ ## v1.5.71
15
+ 2023-10-30
16
+
17
+ 新增
18
+
19
+ 日历组件以及时间组件新增查询自动加载功能
20
+
21
+ html标签
22
+
1
23
  ## v1.5.70
2
24
  2023-10-27
3
25
 
@@ -60,7 +60,6 @@ export default {
60
60
  });
61
61
  },
62
62
  loaded(data) {
63
- debugger
64
63
  var self = this;
65
64
  self.isShowSearchlist = false;
66
65
  self.apiParam = data;
@@ -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
  }