centaline-data-driven 1.5.29 → 1.5.30

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "centaline-data-driven",
3
- "version": "1.5.29",
3
+ "version": "1.5.30",
4
4
  "description": "ccai",
5
5
  "author": "hjc <3226136347@qq.com>",
6
6
  "private": false,
package/release-log.md CHANGED
@@ -1,4 +1,28 @@
1
1
  ## v1.5.29
2
+ 2023-07-10
3
+
4
+ 优化
5
+
6
+ 树组件右键样式与逻辑优化
7
+
8
+ ## v1.5.29
9
+ 2023-07-07
10
+
11
+ 优化
12
+
13
+ 树组件新增右键增改删逻辑优化
14
+
15
+ ccai通过js给input输入框value赋值,v-model绑定值不同步问题
16
+
17
+ ## v1.5.29
18
+ 2023-07-04
19
+
20
+ 优化
21
+
22
+ 树组件新增右键增改删功能
23
+
24
+ 修改上传图片修改和删除图标的颜色
25
+ ## v1.5.29
2
26
  2023-06-30
3
27
 
4
28
  bug修复
@@ -621,6 +621,9 @@ const common = {
621
621
  */
622
622
  formatDate: function (date, format) {
623
623
  var v = "";
624
+ if (typeof date === "string") {
625
+ date = new Date(date)
626
+ }
624
627
  if (typeof date === "string" || typeof date !== "object") {
625
628
  return;
626
629
  }
@@ -826,7 +829,7 @@ const common = {
826
829
  var arr = str.split("&");
827
830
  for (var i = 0; i < arr.length; i++) {
828
831
  var res = arr[i].split("=");
829
- obj[res[0]] = res[1];
832
+ obj[this.initialsToLowerCase(res[0])] = res[1];
830
833
  }
831
834
  return obj;
832
835
  }