@tplc/business 0.4.183 → 0.4.185

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,21 @@
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.185](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.184...v0.4.185) (2025-08-04)
6
+
7
+
8
+ ### ✨ Features | 新功能
9
+
10
+ * map scale ([6dc2249](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/6dc22499f4f7c2d0a6ed0d04f925fd1025248399))
11
+ * map修改样式 ([8ffc1aa](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/8ffc1aa582e93ae622084fb6cbdc8ad5f5618cf0))
12
+
13
+ ### [0.4.184](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.183...v0.4.184) (2025-08-02)
14
+
15
+
16
+ ### ✨ Features | 新功能
17
+
18
+ * useAutoHeight 支持自定义timeout ([34705f4](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/34705f4b1e13f6bfd69c3daf47b10aa1e9464010))
19
+
5
20
  ### [0.4.183](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.182...v0.4.183) (2025-08-02)
6
21
 
7
22
 
@@ -75,22 +75,17 @@
75
75
  />
76
76
  </view>
77
77
  </view>
78
+ <!-- loading 加载地球gif -->
79
+ <view class="absolute top-0 left-0 w-full h-full flex-center z-2" v-if="isLoading">
80
+ <image src="./images/earth.gif" class="w-137rpx h-120rpx mt--180rpx" />
81
+ </view>
78
82
  </view>
79
83
  </view>
80
84
  </template>
81
85
 
82
86
  <script lang="ts" setup>
83
87
  import { FORM_KEY } from '@tplc/business/constants'
84
- import {
85
- reactive,
86
- inject,
87
- ref,
88
- useAttrs,
89
- watch,
90
- onMounted,
91
- getCurrentInstance,
92
- onUnmounted,
93
- } from 'vue'
88
+ import { reactive, inject, ref, useAttrs, watch, getCurrentInstance, onUnmounted } from 'vue'
94
89
  import { getJsonFromStr, transformValueUnit } from '../../utils/transform'
95
90
  import { MapItem, MapMarker } from './types'
96
91
  import useAutoHeight from '../../hooks/useAutoHeight'
@@ -111,6 +106,7 @@ const attrs = useAttrs()
111
106
  const { proxy } = getCurrentInstance()!
112
107
  const mapContext = ref<UniApp.MapContext>()
113
108
  const { userLatLon, getLocation } = useLocation()
109
+ const isLoading = ref(false)
114
110
  const props = withDefaults(defineProps<LcbListProps & LcbListInfo>(), {
115
111
  mapTagMode: 'multiple',
116
112
  })
@@ -126,6 +122,7 @@ const callout: MapMarker['callout'] = {
126
122
  borderColor: themeColor,
127
123
  bgColor: '#ffffff',
128
124
  color: themeColor,
125
+ // anchorY: 10,
129
126
  }
130
127
  const selectedTag = ref<string[]>([])
131
128
  const info = reactive({
@@ -160,20 +157,26 @@ const getData = debounce(() => {
160
157
  if (!southwest) return
161
158
  mapContext.value?.getCenterLocation({
162
159
  async success({ latitude, longitude }) {
163
- const { data = [] } = (await uni.$lcb.http.post('/productInfoMap/list', {
164
- ...props.baseParam,
165
- ...form?.value,
166
- mapLatitude: latitude,
167
- mapLongitude: longitude,
168
- mapScale: currentScale.value,
169
- mapCornerLongitude: southwest.longitude,
170
- mapCornerLatitude: southwest.latitude,
171
- productTypeList: selectedTag.value.length ? selectedTag.value : undefined,
172
- })) as {
160
+ isLoading.value = true
161
+ const { data = [] } = (await uni.$lcb.http.post(
162
+ '/productInfoMap/list',
163
+ {
164
+ ...props.baseParam,
165
+ ...form?.value,
166
+ mapLatitude: latitude,
167
+ mapLongitude: longitude,
168
+ mapScale: currentScale.value,
169
+ mapCornerLongitude: southwest.longitude,
170
+ mapCornerLatitude: southwest.latitude,
171
+ productTypeList: selectedTag.value.length ? selectedTag.value : undefined,
172
+ },
173
+ true,
174
+ )) as {
173
175
  data: MapItem[]
174
176
  }
175
177
  list.value = data as any
176
178
  getCurrentData(data)
179
+ isLoading.value = false
177
180
  },
178
181
  })
179
182
  },
@@ -202,10 +205,13 @@ const getConfig = async () => {
202
205
  ...form?.value,
203
206
  ...getJsonFromStr(props.mapConfigParams),
204
207
  })
208
+ mapContext.value = uni.createMapContext('map', proxy)
205
209
  mapContext.value?.moveToLocation({
206
210
  latitude: mapLatitude,
207
211
  longitude: mapLongitude,
208
212
  })
213
+ mapScale.value = scale
214
+ currentScale.value = scale
209
215
  getData()
210
216
  }
211
217
 
@@ -278,13 +284,14 @@ const getCurrentData = (markers: MapItem[]) => {
278
284
  const isCurrent = index === 0
279
285
  return {
280
286
  id: index,
281
- iconPath: './images/transparent.png',
287
+ iconPath: '/static/images/transparent.png',
282
288
  width: 1,
283
289
  height: 1,
284
290
  poiId: current.productId,
285
291
  latitude: current.latitude,
286
292
  longitude: current.longitude,
287
293
  // alpha: 0.5,
294
+ // label: current.mapPriceTips,
288
295
  callout: {
289
296
  ...callout,
290
297
  content: current.mapPriceTips,
@@ -299,16 +306,17 @@ const getCurrentData = (markers: MapItem[]) => {
299
306
  watch(
300
307
  () => form.value,
301
308
  () => {
302
- getData()
309
+ if (isConfig.value) {
310
+ getData()
311
+ }
303
312
  },
304
313
  {
305
314
  deep: true,
306
315
  },
307
316
  )
308
- onMounted(() => {
309
- mapContext.value = uni.createMapContext('map', proxy)
310
- getData()
311
- })
317
+ // onMounted(() => {
318
+ // mapContext.value = uni.createMapContext('map', proxy)
319
+ // })
312
320
 
313
321
  onUnmounted(() => {
314
322
  mapContext.value = undefined
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tplc/business",
3
- "version": "0.4.183",
3
+ "version": "0.4.185",
4
4
  "keywords": [
5
5
  "业务组件"
6
6
  ],