@tplc/business 0.4.61 → 0.4.62

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,37 @@
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.4.62](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.54...v0.4.62) (2025-04-07)
6
+
7
+
8
+ ### 🚀 Chore | 构建/工程依赖/工具
9
+
10
+ * **release:** 0.4.55 ([fd9f215](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/fd9f215e1aea5a34fdba7aceff45bd1ad15aaac8))
11
+ * **release:** 0.4.56 ([0522d7b](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/0522d7b464f8bfd0429f8b0010f7bf350d4a6263))
12
+ * **release:** 0.4.57 ([3917b65](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/3917b6503fbdba726d588978eaf181e9f504f4be))
13
+ * **release:** 0.4.58 ([68ad328](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/68ad3282ee9f7cd2b3b1f82a0697723852865922))
14
+ * **release:** 0.4.59 ([9b74e0e](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/9b74e0e52cfe28e64b8b8d6c6c9d4f08a363a367))
15
+ * **release:** 0.4.60 ([bb792c5](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/bb792c5989a693384d324e4fa23e95aef268649e))
16
+ * **release:** 0.4.61 ([9dbf9dc](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/9dbf9dc11d772fa2f0ed2cfd794f173060a62ff0))
17
+
18
+
19
+ ### 🐛 Bug Fixes | Bug 修复
20
+
21
+ * img ([ba700e5](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/ba700e50dc529c9f5b9e6386c61aa0747bc8b519))
22
+
23
+
24
+ ### ✨ Features | 新功能
25
+
26
+ * button 配置 ([f01230d](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/f01230d73ea058222495648378389c5dcaec0ba9))
27
+ * 修改 rate ([afc9da2](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/afc9da279a4a0f3425e6425cec8936fdc646936d))
28
+ * 修改样式 ([10f7b8d](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/10f7b8d22dafe59374fac3728917eaef835eac72))
29
+ * 暂时支持搜索 ([a592c77](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/a592c77a9c162b73e223c785b7932ec17253f4ea))
30
+ * 调整 ([6fff186](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/6fff186f6a6630b7389337c269c291aa6982be72))
31
+ * 调整地址策略 ([9b9a258](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/9b9a2583864075e4daac9a192ec91f8b91e2ce9d))
32
+ * 调整数据 ([3778c3c](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/3778c3caf8ff0193ebac4206945b52c75be8d7af))
33
+ * 调整数据 ([ba5f1e2](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/ba5f1e2bbb877ae791a9a09f640e2de95a6a1efc))
34
+ * 部署按钮 ([1b783b3](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/1b783b3180b81f0f75ff46a5b41110d17d23baaa))
35
+
5
36
  ### [0.4.61](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.60...v0.4.61) (2025-04-06)
6
37
 
7
38
 
@@ -14,11 +14,7 @@
14
14
  :key="item.id"
15
15
  class="slot-wrapper"
16
16
  :style="{
17
- gridColumn:
18
- areaItems?.[index]?.colSpan && display === 'grid'
19
- ? `span ${areaItems?.[index]?.colSpan} / span ${areaItems?.[index]?.colSpan}`
20
- : undefined,
21
- flex: display === 'flex' ? '1 1 0' : undefined,
17
+ ...getStyle(index),
22
18
  overflowX,
23
19
  }"
24
20
  >
@@ -58,6 +54,18 @@ const innerStyle = computed(() => {
58
54
  alignItems: 'stretch',
59
55
  }
60
56
  })
57
+
58
+ const getStyle = (index: number) => {
59
+ const flex = props.areaFlexs?.[index]?.flex ?? 1
60
+ return {
61
+ gridColumn:
62
+ props.areaItems?.[index]?.colSpan && props.display === 'grid'
63
+ ? `span ${props.areaItems?.[index]?.colSpan} / span ${props.areaItems?.[index]?.colSpan}`
64
+ : undefined,
65
+ flex: props.display === 'flex' ? flex || 'auto' : undefined,
66
+ flexShrink: props.display === 'flex' ? (props.flexShrink ?? 1) : undefined,
67
+ }
68
+ }
61
69
  </script>
62
70
 
63
71
  <style lang="scss" scoped>
@@ -12,5 +12,9 @@ export interface LcbAreaProps extends LcbBlockProps {
12
12
  areaItems?: {
13
13
  colSpan?: number
14
14
  }[]
15
+ areaFlexs?: {
16
+ flex?: number
17
+ }[]
18
+ flexShrink?: number
15
19
  overflowX?: 'hidden' | 'initial' | 'auto'
16
20
  }
@@ -78,9 +78,9 @@ const innerValue = computed(() => {
78
78
  if (props.text.includes('${')) {
79
79
  value = props.text.replace(/\$\{([^}]+)\}/g, (_, p1) => {
80
80
  if (props.keyFromUser) {
81
- return userStore?.userInfo?.[p1] || ''
81
+ return userStore?.userInfo?.[p1] ?? ''
82
82
  } else {
83
- return pageInfo.value?.[p1] || ''
83
+ return pageInfo.value?.[p1] ?? ''
84
84
  }
85
85
  })
86
86
  }
@@ -3,7 +3,7 @@
3
3
  class="gap-0.25 flex flex-col p-2 justify-center border-solid border-1 border-#eeeeee rounded-1 relative"
4
4
  @click="date?.status !== 0 ? (currentDate = date?.date) : undefined"
5
5
  :class="{
6
- 'bg-[var(--theme-bg-color)] text-primary !border-[var(--wot-primary-color)]':
6
+ 'bg-[var(--theme-bg-color)] text-primary !border-[var(--wot-color-theme)]':
7
7
  currentDate === date?.date,
8
8
  'opacity-50': date?.status === 0,
9
9
  [customClass]: true,
@@ -58,11 +58,13 @@
58
58
  :size="iconSize + 'rpx'"
59
59
  :color="iconColor"
60
60
  />
61
- <wd-img
61
+ <img
62
62
  v-else
63
- :width="iconSize + 'rpx'"
64
- :height="iconSize + 'rpx'"
65
- :radius="iconRadius + 'rpx'"
63
+ :style="{
64
+ width: iconSize + 'rpx',
65
+ height: iconSize + 'rpx',
66
+ borderRadius: iconRadius + 'rpx',
67
+ }"
66
68
  :src="item[urlKey]"
67
69
  mode="aspectFit"
68
70
  />
@@ -241,7 +241,7 @@ const value = computed(() => {
241
241
  :key="tag"
242
242
  :custom-class="`!text-22rpx ${className}`"
243
243
  :style="style"
244
- :color="itemProps?.tagContentColor || 'var(--primary-color)'"
244
+ :color="itemProps?.tagContentColor || 'var(--wot-color-theme)'"
245
245
  :bg-color="itemProps?.tagBgColor"
246
246
  :plain="itemProps?.tagPlain || true"
247
247
  :mark="itemProps?.tagMark || false"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tplc/business",
3
- "version": "0.4.61",
3
+ "version": "0.4.62",
4
4
  "keywords": [
5
5
  "业务组件"
6
6
  ],
@@ -12,5 +12,9 @@ export interface LcbAreaProps extends LcbBlockProps {
12
12
  areaItems?: {
13
13
  colSpan?: number
14
14
  }[]
15
+ areaFlexs?: {
16
+ flex?: number
17
+ }[]
18
+ flexShrink?: number
15
19
  overflowX?: 'hidden' | 'initial' | 'auto'
16
20
  }