@tplc/business 0.4.79 → 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,20 @@
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
+
5
19
  ### [0.4.79](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.77...v0.4.79) (2025-04-28)
6
20
 
7
21
 
@@ -154,14 +154,16 @@ const coverImgWidth = computed(() => {
154
154
  itemProps.areaOnImg &&
155
155
  !itemProps.imgBottomIcon
156
156
  "
157
- class="absolute bottom-0 left-0 z-1 p-2 line-clamp-1 w-full box-border text-white text-3.5"
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"
158
158
  :style="{
159
159
  color: itemProps.areaColor,
160
160
  fontSize: `${itemProps.areaFontSize}rpx`,
161
161
  }"
162
162
  >
163
163
  <wd-icon name="location"></wd-icon>
164
- {{ itemAttrs.cityArea }}
164
+ <view class="line-clamp-1">
165
+ {{ itemAttrs.cityArea }}
166
+ </view>
165
167
  </view>
166
168
  <slot></slot>
167
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.79",
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'