@tplc/business 0.4.78 → 0.4.80

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,34 @@
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.80](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.78...v0.4.80) (2025-04-29)
6
+
7
+
8
+ ### 🚀 Chore | 构建/工程依赖/工具
9
+
10
+ * **release:** 0.4.79 ([97bdcf2](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/97bdcf25173249dd1240fcc9b824b8ad5896ad44))
11
+
12
+
13
+ ### ✨ Features | 新功能
14
+
15
+ * PAGE_DYNAMIC_DATA ([815d9de](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/815d9ded9a4b6b55893104198a2e569d39036ea8))
16
+ * 图片展示规则 ([af06680](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/af066808b6276ccd55e19c6baa711c1a3e815941))
17
+ * 新增cityArea判断 ([587bdb4](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/587bdb41d2f7e1dd8fc0f804d1a2fe58120e2708))
18
+
19
+ ### [0.4.79](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.77...v0.4.79) (2025-04-28)
20
+
21
+
22
+ ### 🚀 Chore | 构建/工程依赖/工具
23
+
24
+ * **release:** 0.4.78 ([82c9d14](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/82c9d142494d60afc9889ebf737498542299ea7a))
25
+
26
+
27
+ ### ✨ Features | 新功能
28
+
29
+ * 图片展示规则 ([af06680](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/af066808b6276ccd55e19c6baa711c1a3e815941))
30
+ * 新增cityArea判断 ([587bdb4](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/587bdb41d2f7e1dd8fc0f804d1a2fe58120e2708))
31
+ * 新增search ([e95f9f7](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/e95f9f75686dbcbe63372ecb99b0e2d5a591d62f))
32
+
5
33
  ### [0.4.78](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.76...v0.4.78) (2025-04-28)
6
34
 
7
35
 
@@ -148,15 +148,22 @@ const coverImgWidth = computed(() => {
148
148
  <!-- area -->
149
149
  <!-- && itemProps.areaOnImg -->
150
150
  <view
151
- v-if="itemProps.showArea && itemAttrs.cityArea && itemProps.areaOnImg"
152
- class="absolute bottom-0 left-0 z-1 p-2 line-clamp-1 w-full box-border text-white text-3.5"
151
+ v-if="
152
+ itemProps.showArea &&
153
+ itemAttrs.cityArea &&
154
+ itemProps.areaOnImg &&
155
+ !itemProps.imgBottomIcon
156
+ "
157
+ class="flex absolute bottom-0 left-0 z-1 gap-1 p-2 w-full box-border text-white text-3.5 items-center"
153
158
  :style="{
154
159
  color: itemProps.areaColor,
155
160
  fontSize: `${itemProps.areaFontSize}rpx`,
156
161
  }"
157
162
  >
158
163
  <wd-icon name="location"></wd-icon>
159
- {{ itemAttrs.cityArea }}
164
+ <view class="line-clamp-1">
165
+ {{ itemAttrs.cityArea }}
166
+ </view>
160
167
  </view>
161
168
  <slot></slot>
162
169
  </view>
package/constants.ts CHANGED
@@ -9,3 +9,5 @@ export const PAGE_ANCHOR_PROVIDE_KEY = 'page_anchor_provide'
9
9
  export const USER_BASIC_INFO = 'user_basic_info'
10
10
  /** 列表页表单选择项 */
11
11
  export const LIST_FORM_CHOOSER_VALUES = 'list_form_chooser_values'
12
+ /** 页面动态数据 */
13
+ export const PAGE_DYNAMIC_DATA = 'page_dynamic_data'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tplc/business",
3
- "version": "0.4.78",
3
+ "version": "0.4.80",
4
4
  "keywords": [
5
5
  "业务组件"
6
6
  ],
@@ -9,3 +9,5 @@ export declare const PAGE_ANCHOR_PROVIDE_KEY = 'page_anchor_provide'
9
9
  export declare const USER_BASIC_INFO = 'user_basic_info'
10
10
  /** 列表页表单选择项 */
11
11
  export declare const LIST_FORM_CHOOSER_VALUES = 'list_form_chooser_values'
12
+ /** 页面动态数据 */
13
+ export declare const PAGE_DYNAMIC_DATA = 'page_dynamic_data'