@tplc/business 0.4.183 → 0.4.184

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.4.184](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.183...v0.4.184) (2025-08-02)
6
+
7
+
8
+ ### ✨ Features | 新功能
9
+
10
+ * useAutoHeight 支持自定义timeout ([34705f4](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/34705f4b1e13f6bfd69c3daf47b10aa1e9464010))
11
+
5
12
  ### [0.4.183](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.182...v0.4.183) (2025-08-02)
6
13
 
7
14
 
@@ -206,6 +206,8 @@ const getConfig = async () => {
206
206
  latitude: mapLatitude,
207
207
  longitude: mapLongitude,
208
208
  })
209
+ mapScale.value = scale
210
+ currentScale.value = scale
209
211
  getData()
210
212
  }
211
213
 
@@ -299,7 +301,9 @@ const getCurrentData = (markers: MapItem[]) => {
299
301
  watch(
300
302
  () => form.value,
301
303
  () => {
302
- getData()
304
+ if (isConfig.value) {
305
+ getData()
306
+ }
303
307
  },
304
308
  {
305
309
  deep: true,
@@ -307,7 +311,6 @@ watch(
307
311
  )
308
312
  onMounted(() => {
309
313
  mapContext.value = uni.createMapContext('map', proxy)
310
- getData()
311
314
  })
312
315
 
313
316
  onUnmounted(() => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tplc/business",
3
- "version": "0.4.183",
3
+ "version": "0.4.184",
4
4
  "keywords": [
5
5
  "业务组件"
6
6
  ],