sctj-components 1.0.30 → 1.0.32
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/lib/sctj-components.es.js +12 -8
- package/lib/sctj-components.umd.js +1 -1
- package/lib/style.css +1 -1
- package/package.json +1 -1
|
@@ -5136,8 +5136,8 @@ const _sfc_main$4 = {
|
|
|
5136
5136
|
}
|
|
5137
5137
|
};
|
|
5138
5138
|
const SCTJMapViewer = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__scopeId", "data-v-23f6e80a"]]);
|
|
5139
|
-
const
|
|
5140
|
-
const _withScopeId$1 = (n) => (pushScopeId("data-v-
|
|
5139
|
+
const index_vue_vue_type_style_index_0_scoped_761d2ab4_lang = "";
|
|
5140
|
+
const _withScopeId$1 = (n) => (pushScopeId("data-v-761d2ab4"), n = n(), popScopeId(), n);
|
|
5141
5141
|
const _hoisted_1$1 = {
|
|
5142
5142
|
key: 0,
|
|
5143
5143
|
class: "btn-container"
|
|
@@ -5308,7 +5308,7 @@ const _sfc_main$3 = {
|
|
|
5308
5308
|
required: true
|
|
5309
5309
|
}
|
|
5310
5310
|
},
|
|
5311
|
-
emits: ["update:markers", "update:polylines", "update:polygons", "update:bezierCurves", "update:circles"],
|
|
5311
|
+
emits: ["update:markers", "update:polylines", "update:polygons", "update:bezierCurves", "update:circles", "change"],
|
|
5312
5312
|
setup(__props, { expose, emit }) {
|
|
5313
5313
|
const props = __props;
|
|
5314
5314
|
const { isMobile } = useMobile();
|
|
@@ -5649,6 +5649,7 @@ const _sfc_main$3 = {
|
|
|
5649
5649
|
localMarkers.value.push({ obj: markerObj, position: marker, type: "marker" });
|
|
5650
5650
|
});
|
|
5651
5651
|
realPolylines.value.forEach((polyline) => {
|
|
5652
|
+
console.log("polyline", polyline);
|
|
5652
5653
|
const path = polyline.map((point) => {
|
|
5653
5654
|
const [lng, lat] = point.split(",").map(Number);
|
|
5654
5655
|
return new AMap2.LngLat(lng, lat);
|
|
@@ -5663,6 +5664,7 @@ const _sfc_main$3 = {
|
|
|
5663
5664
|
localPolylines.value.push({ obj: polylineObj, path: polyline, type: "polyline" });
|
|
5664
5665
|
});
|
|
5665
5666
|
realPolygons.value.forEach((polygon) => {
|
|
5667
|
+
console.log("polygon", polygon);
|
|
5666
5668
|
const path = polygon.map((point) => {
|
|
5667
5669
|
const [lng, lat] = point.split(",").map(Number);
|
|
5668
5670
|
return new AMap2.LngLat(lng, lat);
|
|
@@ -6211,6 +6213,7 @@ const _sfc_main$3 = {
|
|
|
6211
6213
|
type: item.type
|
|
6212
6214
|
}))[0]) != null ? _e : "";
|
|
6213
6215
|
}
|
|
6216
|
+
emit("change");
|
|
6214
6217
|
handleClose();
|
|
6215
6218
|
};
|
|
6216
6219
|
const handleClose = () => {
|
|
@@ -6727,9 +6730,9 @@ const _sfc_main$3 = {
|
|
|
6727
6730
|
};
|
|
6728
6731
|
}
|
|
6729
6732
|
};
|
|
6730
|
-
const SCTJMapDrawingDialog = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["__scopeId", "data-v-
|
|
6731
|
-
const
|
|
6732
|
-
const _withScopeId = (n) => (pushScopeId("data-v-
|
|
6733
|
+
const SCTJMapDrawingDialog = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["__scopeId", "data-v-761d2ab4"]]);
|
|
6734
|
+
const index_vue_vue_type_style_index_0_scoped_d0bea808_lang = "";
|
|
6735
|
+
const _withScopeId = (n) => (pushScopeId("data-v-d0bea808"), n = n(), popScopeId(), n);
|
|
6733
6736
|
const _hoisted_1 = {
|
|
6734
6737
|
key: 0,
|
|
6735
6738
|
class: "btn-container"
|
|
@@ -6935,7 +6938,7 @@ const _sfc_main$2 = {
|
|
|
6935
6938
|
required: true
|
|
6936
6939
|
}
|
|
6937
6940
|
},
|
|
6938
|
-
emits: ["update:markers", "update:polylines", "update:polygons", "update:bezierCurves", "update:circles"],
|
|
6941
|
+
emits: ["update:markers", "update:polylines", "update:polygons", "update:bezierCurves", "update:circles", "change"],
|
|
6939
6942
|
setup(__props, { expose, emit }) {
|
|
6940
6943
|
const props = __props;
|
|
6941
6944
|
const { isMobile } = useMobile();
|
|
@@ -7993,6 +7996,7 @@ const _sfc_main$2 = {
|
|
|
7993
7996
|
businessKey: item.businessKey
|
|
7994
7997
|
};
|
|
7995
7998
|
});
|
|
7999
|
+
emit("change");
|
|
7996
8000
|
handleClose();
|
|
7997
8001
|
};
|
|
7998
8002
|
const handleClose = () => {
|
|
@@ -8557,7 +8561,7 @@ const _sfc_main$2 = {
|
|
|
8557
8561
|
};
|
|
8558
8562
|
}
|
|
8559
8563
|
};
|
|
8560
|
-
const SCTJBusinessMapDrawingDialog = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["__scopeId", "data-v-
|
|
8564
|
+
const SCTJBusinessMapDrawingDialog = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["__scopeId", "data-v-d0bea808"]]);
|
|
8561
8565
|
const BimViewer_vue_vue_type_style_index_0_scoped_b60f1ba4_lang = "";
|
|
8562
8566
|
const _sfc_main$1 = {
|
|
8563
8567
|
__name: "BimViewer",
|