@tplc/business 0.7.8 → 0.7.9

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,13 @@
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.7.9](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.7.8...v0.7.9) (2025-12-13)
6
+
7
+
8
+ ### ✨ Features | 新功能
9
+
10
+ * 支持切喊 ([4b3bde8](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/4b3bde83e45d5cd6893e23459dd281acb496e09c))
11
+
5
12
  ### [0.7.8](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.7.7...v0.7.8) (2025-12-13)
6
13
 
7
14
 
@@ -104,6 +104,7 @@ const handleChange = (e: any) => {
104
104
  uni.$emit('refreshSchemaPage', {
105
105
  pageDecorationId: e.selectedItem.pageDecorationId,
106
106
  pageId: getCurrentPage().pageId,
107
+ mode: props.mode,
107
108
  })
108
109
  } else {
109
110
  uni.$lcb.constantsStore?.()?.setAddressId(e.selectedItem.addressId, props.switchType)
@@ -26,11 +26,13 @@
26
26
  <!-- 左边布局 -->
27
27
  <view class="navbar-left z-1">
28
28
  <AddressCommunity
29
- v-if="showAddressCommunity || pageInfo.chooseFlag"
29
+ v-if="showAddressCommunity || pageInfo.frontConfig?.chooseFlag"
30
30
  v-bind="{
31
31
  ...addressCommunityProps,
32
- switchType:
33
- addressCommunityProps?.switchType || pageInfo.chooseFlag ? 'merchant' : 'address',
32
+ switchType: pageInfo.frontConfig?.chooseFlag
33
+ ? 'merchant'
34
+ : addressCommunityProps?.switchType,
35
+ mode: pageInfo.frontConfig?.mode || addressCommunityProps?.mode,
34
36
  }"
35
37
  />
36
38
  <view
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tplc/business",
3
- "version": "0.7.8",
3
+ "version": "0.7.9",
4
4
  "keywords": [
5
5
  "业务组件"
6
6
  ],