|
@@ -31,7 +31,8 @@
|
31
|
31
|
import Taro, { useReady } from '@tarojs/taro';
|
32
|
32
|
import { useModel } from '@zjxpcyc/vue-tiny-store';
|
33
|
33
|
import { onShareAppMessage, onShareTimeline } from '@/utils/share';
|
34
|
|
- import circleImg from '@/assets/images/star.png';
|
|
34
|
+
|
|
35
|
+ const star = 'https://yz-h5.oss-cn-shanghai.aliyuncs.com/assets/guoqing-miniapp/star.png';
|
35
|
36
|
|
36
|
37
|
export default {
|
37
|
38
|
onShareAppMessage,
|
|
@@ -55,11 +56,11 @@
|
55
|
56
|
id: inx + 1,
|
56
|
57
|
longitude: it.location[0],
|
57
|
58
|
latitude: it.location[1],
|
58
|
|
- iconPath: circleImg,
|
|
59
|
+ iconPath: star,
|
59
|
60
|
width: 12,
|
60
|
61
|
height: 12,
|
61
|
62
|
label: {
|
62
|
|
- content: it.shorName,
|
|
63
|
+ content: ' '// it.shortName, // 此值不能为空,否则会有 bug
|
63
|
64
|
}
|
64
|
65
|
}));
|
65
|
66
|
|