vue2-client 1.2.37-1 → 1.2.37-2
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/package.json
CHANGED
package/src/base-client/all.js
CHANGED
|
@@ -12,7 +12,7 @@ import XBadge from '@vue2-client/base-client/components/common/XBadge'
|
|
|
12
12
|
import DataAnalysisView from '@vue2-client/base-client/components/iot/DataAnalysisView'
|
|
13
13
|
import DataAnalysisUser from '@vue2-client/base-client/components/iot/DataAnalysisUser'
|
|
14
14
|
import SrcollList from '@vue2-client/base-client/components/common/ScrollList'
|
|
15
|
-
import AmapPointRendering from '@vue2-client/base-client/components/common/
|
|
15
|
+
import AmapPointRendering from '@vue2-client/base-client/components/common/AmapMarker'
|
|
16
16
|
import DeviceTypeDetailsView from '@vue2-client/base-client/components/iot/DeviceTypeDetailsView'
|
|
17
17
|
import DeviceBrandDetailsView from '@vue2-client/base-client/components/iot/DeviceBrandDetailsView'
|
|
18
18
|
import DictionaryDetailsView from '@vue2-client/base-client/components/system/DictionaryDetailsView'
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
<div id="amap_point_rendering_map" :style="mapStyle">
|
|
3
3
|
<div v-show="false">
|
|
4
4
|
<div id="amap_point_rendering_template">
|
|
5
|
-
<a-descriptions>
|
|
6
|
-
<a-descriptions-item
|
|
5
|
+
<a-descriptions :column="1">
|
|
6
|
+
<a-descriptions-item v-for="(des, index) in describeList" :key="index" :label="des.describe" >{{ markers[des.field] }}</a-descriptions-item>
|
|
7
7
|
</a-descriptions>
|
|
8
8
|
</div>
|
|
9
9
|
</div>
|
|
@@ -71,8 +71,6 @@
|
|
|
71
71
|
extData: this.markers
|
|
72
72
|
})
|
|
73
73
|
marker.on('click', function (e) {
|
|
74
|
-
console.log(e.target.getExtData())
|
|
75
|
-
that.selectrow = e.target.getExtData()
|
|
76
74
|
that.infoWindow.setContent(document.getElementById('amap_point_rendering_template'))
|
|
77
75
|
that.infoWindow.open(that.map, [e.target.getExtData().lng, e.target.getExtData().lat])
|
|
78
76
|
})
|