@tplc/business 0.3.65 → 0.3.67

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/CHANGELOG.md CHANGED
@@ -2,6 +2,46 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.3.67](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.61...v0.3.67) (2025-03-02)
6
+
7
+
8
+ ### ✨ Features | 新功能
9
+
10
+ * calendar 支持 withCell ([c8c21ad](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/c8c21adaf5c1bb402f34c99a04b7a2ee39b12563))
11
+ * product 支持 request ([3e708e0](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/3e708e02e9ce504b699357a4e04852be9140f515))
12
+ * product 支持刷新 ([39bfec8](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/39bfec829996bee60c12ae8e9c6d58c076b7123a))
13
+ * 字体加粗 ([d35519f](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/d35519fa29db1fb340efd6b710f210a5813de382))
14
+ * 字体颜色大小 ([2906705](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/2906705c1e8a789d599107ec832eff215baff90f))
15
+ * 展示修改 ([19028e3](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/19028e36a9a20a934d7eba6db0df949df3470405))
16
+ * 支持grid ([ee2b8fb](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/ee2b8fbff8bbaabd6120d1b91b7c54545c7ae552))
17
+ * 新增tabs ([dcf9d11](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/dcf9d1152525a3f4a000725029e4fb90ab5be43f))
18
+ * 暂时提交block ([27f9e53](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/27f9e5304a7a47187109b2c860d82a81f3434d58))
19
+ * 调整二维码 ([f41b055](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/f41b05590ec8134b6f8bb8d4d86afcfac355150a))
20
+ * 还差数据跳转 ([70b6f24](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/70b6f248e7b74fdaae87480112e19a4c1eb13f46))
21
+ * 选项清空 ([70d55a8](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/70d55a83819c3409b54fe42246cfb6ad59f94474))
22
+
23
+
24
+ ### 🚀 Chore | 构建/工程依赖/工具
25
+
26
+ * **release:** 0.1.62 ([b9bda4d](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/b9bda4d28ef4e311147091dd09fd4420730d3bbc))
27
+ * **release:** 0.3.62 ([edf06f2](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/edf06f25419bf845e021896632eece7c965af0fe))
28
+ * **release:** 0.3.63 ([a11d7b8](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/a11d7b81705b1e7a8993c487735821917a036005))
29
+ * **release:** 0.3.64 ([cedaedf](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/cedaedfeafd650c3cd97fc73900b17f924263fe0))
30
+ * **release:** 0.3.65 ([cde1ecd](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/cde1ecd004c7b7fe36ed56a4d925c6c86a3ec8c1))
31
+ * **release:** 0.3.66 ([00754f3](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/00754f3c07672989cf34de3410a7bff8581d2ab2))
32
+
33
+
34
+ ### 🐛 Bug Fixes | Bug 修复
35
+
36
+ * 修改字段颜色 ([e661df9](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/e661df917517b5231129b428ade7fbc32208782e))
37
+
38
+ ### [0.3.66](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.65...v0.3.66) (2025-03-01)
39
+
40
+
41
+ ### ✨ Features | 新功能
42
+
43
+ * 选项清空 ([70d55a8](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/70d55a83819c3409b54fe42246cfb6ad59f94474))
44
+
5
45
  ### [0.3.65](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.64...v0.3.65) (2025-02-28)
6
46
 
7
47
 
@@ -63,15 +63,17 @@ const props = withDefaults(defineProps<LcbFilterGridProps>(), {
63
63
  })
64
64
  const current = ref(-1)
65
65
  const handleClick = (index: number) => {
66
- current.value = index === current.value ? -1 : index
66
+ const isCurrent = index === current.value
67
+ current.value = isCurrent ? -1 : index
67
68
  try {
68
69
  const params = JSON.parse(props.items?.[index]?.name)
69
- if (index === current.value) {
70
+ if (isCurrent) {
70
71
  Object.keys(params).forEach((key) => {
71
72
  form!.value[key] = undefined
72
73
  })
73
74
  return
74
75
  }
76
+
75
77
  form!.value = {
76
78
  ...form!.value,
77
79
  ...params,
@@ -56,7 +56,7 @@
56
56
  :pictureDistribution="itemNum"
57
57
  :iconType="1"
58
58
  :iconSize="itemIconSize"
59
- :color="itemTextColor"
59
+ :textColor="itemTextColor"
60
60
  :iconTextMargin="24"
61
61
  :textSize="itemTextSize"
62
62
  urlKey="icon"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tplc/business",
3
- "version": "0.3.65",
3
+ "version": "0.3.67",
4
4
  "keywords": [
5
5
  "业务组件"
6
6
  ],