@tplc/business 0.5.7 → 0.5.8

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,25 @@
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.5.8](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.5.2...v0.5.8) (2025-10-10)
6
+
7
+
8
+ ### 🚀 Chore | 构建/工程依赖/工具
9
+
10
+ * **release:** 0.5.3 ([57c7130](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/57c7130540071280353fd605b87f6815cc2d89e2))
11
+ * **release:** 0.5.4 ([e26bb51](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/e26bb514cdfbce2ec5f90f1f11b9e7a705a75236))
12
+ * **release:** 0.5.5 ([5e54c9a](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/5e54c9a5d7595feab969bb272c538ab9e81dce0e))
13
+ * **release:** 0.5.6 ([8927745](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/8927745805c238149ef478bee1b0e5528e9c9187))
14
+ * **release:** 0.5.7 ([2ffa756](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/2ffa75665995fe5ec0df5e36956564f1069be226))
15
+
16
+
17
+ ### ✨ Features | 新功能
18
+
19
+ * 支持地址选择 ([2bdb47b](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/2bdb47bededa3a5b091f4c0d52b2a55219bf9369))
20
+ * 新增pop ([70282d2](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/70282d2ce61843f7c81dd686385f38a7a8da1956))
21
+ * 新增组件 ([090ee4f](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/090ee4f5aec2f05922dc12eee7cc1c5ea5906ea9))
22
+ * 调整参数 ([fa298c9](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/fa298c94d7b34b3374f3d9fa82a22b50ccc8ac6d))
23
+
5
24
  ### [0.5.7](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.5.6...v0.5.7) (2025-10-10)
6
25
 
7
26
  ### [0.5.6](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.5.5...v0.5.6) (2025-10-10)
package/action.d.ts CHANGED
@@ -48,6 +48,9 @@ export interface LcbGlobal {
48
48
  constantsStore?: () => {
49
49
  mainConfig?: Record<string, any>
50
50
  otherConfig?: Record<string, any>
51
+ addressId?: string
52
+ setAddressId: (addressId: string) => void
53
+ getAddressId: () => string
51
54
  }
52
55
  messageStore?: () => {
53
56
  messageCount: number
@@ -21,7 +21,6 @@
21
21
  import { ref, watch } from 'vue'
22
22
  import { AddressCommunityProps } from '../types'
23
23
  import useLocation from '../../../hooks/useLocation'
24
- import { AddressCommunity } from '../../../utils/addressCommunity'
25
24
  defineOptions({
26
25
  name: 'AddressCommunity',
27
26
  options: {
@@ -42,21 +41,21 @@ const options = ref<{ addressName: string; addressId: string }[]>([])
42
41
 
43
42
  const handleChange = (e: any) => {
44
43
  title.value = e.selectedItem.label
45
- AddressCommunity.setAddressId(e.selectedItem.addressId)
44
+ uni.$lcb.constantsStore?.()?.setAddressId(e.selectedItem.addressId)
46
45
  }
47
46
  watch(
48
47
  () => userLocation.value,
49
48
  async (val) => {
50
- if (val) {
51
- const { data } = await uni.$lcb.http.post<any[]>('/addressCommunity/list')
52
- options.value = data
53
- if (data.length > 0) {
54
- const firstItem = data[0]
55
- title.value = firstItem.label
56
- value.value = firstItem.addressId
57
- AddressCommunity.setAddressId(firstItem.addressId)
58
- }
49
+ // if (val) {
50
+ const { data } = await uni.$lcb.http.post<any[]>('/addressCommunity/list')
51
+ options.value = data
52
+ if (data.length > 0) {
53
+ const firstItem = data[0]
54
+ title.value = firstItem.label
55
+ value.value = firstItem.addressId
56
+ uni.$lcb.constantsStore?.()?.setAddressId(firstItem.addressId)
59
57
  }
58
+ // }
60
59
  },
61
60
  {
62
61
  immediate: true,
@@ -67,6 +66,7 @@ watch(
67
66
  <style lang="scss" scoped>
68
67
  .drop-menu-container {
69
68
  margin-right: 24rpx;
69
+ margin-left: -24rpx;
70
70
 
71
71
  :deep(.wd-drop-menu__list) {
72
72
  background-color: transparent;
@@ -24,12 +24,7 @@
24
24
  }"
25
25
  >
26
26
  <!-- 左边布局 -->
27
- <view
28
- class="navbar-left z-1"
29
- :style="{
30
- paddingLeft: showAddressCommunity ? '0rpx' : '24rpx',
31
- }"
32
- >
27
+ <view class="navbar-left z-1">
33
28
  <AddressCommunity v-if="showAddressCommunity" v-bind="addressCommunityProps" />
34
29
  <view
35
30
  v-if="(styleGroup === 3 || moreThanTwoPages() || !canBack) && capsuleList.length"
@@ -197,7 +192,7 @@ const props = withDefaults(defineProps<NavProps>(), {
197
192
  fontWeight: 500,
198
193
  textColor: '#000000',
199
194
  keyFromUser: false,
200
- showAddressCommunity: false,
195
+ showAddressCommunity: true,
201
196
  })
202
197
  const navbarBgColor = computed(() => {
203
198
  return props.backgroundType === 'color' ? props.backColor : ''
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tplc/business",
3
- "version": "0.5.7",
3
+ "version": "0.5.8",
4
4
  "keywords": [
5
5
  "业务组件"
6
6
  ],
@@ -1,6 +0,0 @@
1
- export declare const AddressCommunity: {
2
- setAddressId(newLang: string): void
3
- getAddressId(): string
4
- }
5
- export declare const useCurrentAddressCommunity: () => import('vue').Ref<string>
6
- export default AddressCommunity
@@ -1,26 +0,0 @@
1
- /*
2
- * @Author: weisheng
3
- * @Date: 2024-01-25 23:06:48
4
- * @LastEditTime: 2024-03-30 11:30:55
5
- * @LastEditors: weisheng
6
- * @Description:
7
- * @FilePath: /wot-design-uni/src/uni_modules/wot-design-uni/locale/index.ts
8
- * 记得注释
9
- */
10
- import { ref } from 'vue'
11
-
12
- const addressCommunity = ref<string>('')
13
-
14
- export const AddressCommunity = {
15
- setAddressId(newLang: string) {
16
- addressCommunity.value = newLang
17
- },
18
-
19
- getAddressId() {
20
- return addressCommunity.value
21
- },
22
- }
23
-
24
- export const useCurrentAddressCommunity = () => addressCommunity
25
-
26
- export default AddressCommunity