@kq_npm/client3d_webgl_vue 4.5.17-beta → 4.5.18
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/clientPrint/index.js +170 -58
- package/heatmap3d/index.js +16 -8
- package/index.js +168 -58
- package/package.json +1 -1
- package/sceneview/index.js +170 -58
package/clientPrint/index.js
CHANGED
|
@@ -4124,6 +4124,8 @@ var icons_vue_ = __webpack_require__(8422);
|
|
|
4124
4124
|
// EXTERNAL MODULE: ./public/libs/kqwebclient/leaflet/3rd-libs/vue3-print-nb/vue3-print-nb.umd.js
|
|
4125
4125
|
var vue3_print_nb_umd = __webpack_require__(3961);
|
|
4126
4126
|
var vue3_print_nb_umd_default = /*#__PURE__*/__webpack_require__.n(vue3_print_nb_umd);
|
|
4127
|
+
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js + 3 modules
|
|
4128
|
+
var defineProperty = __webpack_require__(5301);
|
|
4127
4129
|
// EXTERNAL MODULE: external "core-js/modules/esnext.iterator.filter.js"
|
|
4128
4130
|
var esnext_iterator_filter_js_ = __webpack_require__(2753);
|
|
4129
4131
|
// EXTERNAL MODULE: external "core-js/modules/esnext.iterator.map.js"
|
|
@@ -4141,6 +4143,7 @@ var util_ = __webpack_require__(3458);
|
|
|
4141
4143
|
|
|
4142
4144
|
|
|
4143
4145
|
|
|
4146
|
+
|
|
4144
4147
|
/**
|
|
4145
4148
|
* Author: zqp
|
|
4146
4149
|
* Date: 2022-12-06
|
|
@@ -4164,6 +4167,8 @@ class ClientPrintViewModel extends (mitt_default()) {
|
|
|
4164
4167
|
* @type {string}
|
|
4165
4168
|
* @private
|
|
4166
4169
|
*/
|
|
4170
|
+
(0,defineProperty/* default */.Z)(this, "_scenceView_print", null);
|
|
4171
|
+
(0,defineProperty/* default */.Z)(this, "_scenceView_partent", null);
|
|
4167
4172
|
this._mapTarget = mapTarget;
|
|
4168
4173
|
/**
|
|
4169
4174
|
* 要打印的地图
|
|
@@ -4187,7 +4192,24 @@ class ClientPrintViewModel extends (mitt_default()) {
|
|
|
4187
4192
|
openPrint() {
|
|
4188
4193
|
gis_utils_.utils.getWebMap(this._mapTarget, this._loadedSync);
|
|
4189
4194
|
}
|
|
4190
|
-
|
|
4195
|
+
showBaseLayer() {
|
|
4196
|
+
let baseLayerData = this._scenceView_partent?._currentBaseLayerConfig;
|
|
4197
|
+
if (!baseLayerData || baseLayerData == {}) {
|
|
4198
|
+
if (this._scenceView_partent._onlineBaseLayerConfig) {
|
|
4199
|
+
this._scenceView_print && this._scenceView_print.showOnlineBaseLayer(this._scenceView_partent._onlineBaseLayerConfig, true);
|
|
4200
|
+
}
|
|
4201
|
+
} else {
|
|
4202
|
+
this._scenceView_print && this._scenceView_print.showBaseLayer(baseLayerData.layerKey, baseLayerData.layerInfo, true);
|
|
4203
|
+
}
|
|
4204
|
+
}
|
|
4205
|
+
removeBaseLayer() {
|
|
4206
|
+
let baseLayerData = this._scenceView_partent?._currentBaseLayerConfig;
|
|
4207
|
+
if (!baseLayerData) {
|
|
4208
|
+
this._scenceView_print && this._scenceView_print.removeAllOnlineBaseLayer();
|
|
4209
|
+
} else {
|
|
4210
|
+
this._scenceView_print && this._scenceView_print.showBaseLayer(baseLayerData.layerKey, baseLayerData.layerInfo, false);
|
|
4211
|
+
}
|
|
4212
|
+
}
|
|
4191
4213
|
/**
|
|
4192
4214
|
* 获取图例
|
|
4193
4215
|
*/
|
|
@@ -4477,6 +4499,10 @@ const __default__ = {
|
|
|
4477
4499
|
type: Boolean,
|
|
4478
4500
|
default: false
|
|
4479
4501
|
},
|
|
4502
|
+
onlyShowCheckLayer: {
|
|
4503
|
+
type: Boolean,
|
|
4504
|
+
default: false
|
|
4505
|
+
},
|
|
4480
4506
|
// 是否使用自定义地图数据
|
|
4481
4507
|
useCustomData: {
|
|
4482
4508
|
type: Boolean,
|
|
@@ -4653,10 +4679,12 @@ const __default__ = {
|
|
|
4653
4679
|
let legendShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
|
|
4654
4680
|
// 比例尺显示与隐藏
|
|
4655
4681
|
let scalesShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
|
|
4682
|
+
//度图的显示与隐藏
|
|
4683
|
+
let basemapShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(true);
|
|
4656
4684
|
// 指北针的显示与隐藏
|
|
4657
4685
|
let compassShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
|
|
4658
4686
|
//经纬度显示与隐藏
|
|
4659
|
-
let latlngShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(
|
|
4687
|
+
let latlngShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
|
|
4660
4688
|
//网格的显示与隐藏
|
|
4661
4689
|
let gridShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(true);
|
|
4662
4690
|
let printdataShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(true);
|
|
@@ -4727,6 +4755,7 @@ const __default__ = {
|
|
|
4727
4755
|
global_event_default().getWebMapByMapTarget(props.mapTarget, scenceView => {
|
|
4728
4756
|
if (scenceView && scenceView._viewer) {
|
|
4729
4757
|
scenceView_partent = scenceView;
|
|
4758
|
+
viewModel._scenceView_partent = scenceView;
|
|
4730
4759
|
formItem = scenceView._props;
|
|
4731
4760
|
showMap.value = true;
|
|
4732
4761
|
}
|
|
@@ -4747,35 +4776,44 @@ const __default__ = {
|
|
|
4747
4776
|
global_event_default().getWebMapByMapTarget("scencePrint", scenceView => {
|
|
4748
4777
|
if (scenceView && scenceView._viewer) {
|
|
4749
4778
|
scenceView_print = scenceView;
|
|
4779
|
+
viewModel._scenceView_print = scenceView;
|
|
4750
4780
|
if (!formItem.service && !formItem.scenceInfo) {
|
|
4751
4781
|
if (scenceView_partent) {
|
|
4752
4782
|
let _promises = [];
|
|
4753
4783
|
for (let index = scenceView_partent._layerManager._layerListData.length - 1; index >= 0; index--) {
|
|
4754
4784
|
const element = scenceView_partent._layerManager._layerListData[index];
|
|
4785
|
+
if (props.onlyShowCheckLayer) {
|
|
4786
|
+
if (!scenceView_partent._layerManager.getLayerCheckedListKey().includes(element.guid)) continue;
|
|
4787
|
+
}
|
|
4755
4788
|
if (!element.url) element.url = element.data;
|
|
4756
|
-
|
|
4757
|
-
var promise =
|
|
4789
|
+
scenceView_print._layerManager._layerListData.push(element);
|
|
4790
|
+
var promise = scenceView_print._layerManager.addLayerData(element, scenceView_partent._layerManager.getLayerCheckedListKey().includes(element.guid));
|
|
4758
4791
|
if (promise) {
|
|
4759
4792
|
_promises.push(promise);
|
|
4760
4793
|
}
|
|
4761
4794
|
}
|
|
4762
4795
|
if (_promises.length > 0) {
|
|
4763
4796
|
Promise.all(_promises).then(() => {
|
|
4764
|
-
|
|
4765
|
-
|
|
4797
|
+
scenceView_print._layerManager._layerTreeData = scenceView_print._layerManager._layerListData;
|
|
4798
|
+
scenceView_print.fire("resetLayerDatas");
|
|
4766
4799
|
});
|
|
4767
4800
|
} else {
|
|
4768
|
-
|
|
4769
|
-
|
|
4801
|
+
scenceView_print._layerManager._layerTreeData = scenceView_print._layerManager._layerListData;
|
|
4802
|
+
scenceView_print.fire("resetLayerDatas");
|
|
4770
4803
|
}
|
|
4771
|
-
|
|
4804
|
+
scenceView_print.setViewPosition(scenceView_partent.getViewPosition());
|
|
4772
4805
|
}
|
|
4773
4806
|
}
|
|
4807
|
+
if (basemapShow.value) {
|
|
4808
|
+
setTimeout(() => {
|
|
4809
|
+
viewModel && viewModel.showBaseLayer();
|
|
4810
|
+
}, 100);
|
|
4811
|
+
}
|
|
4774
4812
|
initControl();
|
|
4775
|
-
cameraToImage = new Cesium.Kq3dCanvasToImage(scenceView._viewer._container, {
|
|
4776
|
-
|
|
4777
|
-
|
|
4778
|
-
});
|
|
4813
|
+
// cameraToImage = new Cesium.Kq3dCanvasToImage(scenceView._viewer._container, {
|
|
4814
|
+
// viewer: scenceView._viewer,
|
|
4815
|
+
// canvas: scenceView._viewer.scene.canvas
|
|
4816
|
+
// });
|
|
4779
4817
|
}
|
|
4780
4818
|
});
|
|
4781
4819
|
// 格式化时间
|
|
@@ -4940,7 +4978,23 @@ const __default__ = {
|
|
|
4940
4978
|
});
|
|
4941
4979
|
}
|
|
4942
4980
|
}
|
|
4981
|
+
/**
|
|
4982
|
+
* 底图的隐藏显示
|
|
4983
|
+
*/
|
|
4984
|
+
function changebasemapShow() {
|
|
4985
|
+
if (basemapShow.value) {
|
|
4986
|
+
viewModel && viewModel.showBaseLayer();
|
|
4987
|
+
} else {
|
|
4988
|
+
viewModel && viewModel.removeBaseLayer();
|
|
4989
|
+
}
|
|
4990
|
+
}
|
|
4943
4991
|
|
|
4992
|
+
/**
|
|
4993
|
+
* 经纬线显示
|
|
4994
|
+
*/
|
|
4995
|
+
function changelatlngShow() {
|
|
4996
|
+
if (scenceView_print) scenceView_print._viewer.cartographicGridLayer.show = latlngShow.value;
|
|
4997
|
+
}
|
|
4944
4998
|
/**
|
|
4945
4999
|
* 切换后的左侧高度样式还原
|
|
4946
5000
|
*/
|
|
@@ -5201,7 +5255,7 @@ const __default__ = {
|
|
|
5201
5255
|
}
|
|
5202
5256
|
}
|
|
5203
5257
|
});
|
|
5204
|
-
viewModel.getLengend();
|
|
5258
|
+
viewModel && viewModel.getLengend();
|
|
5205
5259
|
}
|
|
5206
5260
|
/**
|
|
5207
5261
|
* 对象属性排序比较
|
|
@@ -5670,7 +5724,7 @@ const __default__ = {
|
|
|
5670
5724
|
_: 1 /* STABLE */
|
|
5671
5725
|
})]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_collapse, {
|
|
5672
5726
|
modelValue: activeNames.value,
|
|
5673
|
-
"onUpdate:modelValue": _cache[
|
|
5727
|
+
"onUpdate:modelValue": _cache[18] || (_cache[18] = $event => activeNames.value = $event),
|
|
5674
5728
|
onChange: changeMainHeight
|
|
5675
5729
|
}, {
|
|
5676
5730
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_collapse_item, {
|
|
@@ -5684,7 +5738,7 @@ const __default__ = {
|
|
|
5684
5738
|
}, 8 /* PROPS */, ["class"])]),
|
|
5685
5739
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
5686
5740
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
5687
|
-
span:
|
|
5741
|
+
span: 5
|
|
5688
5742
|
}, {
|
|
5689
5743
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_checkbox, {
|
|
5690
5744
|
class: "btnStyle",
|
|
@@ -5697,7 +5751,7 @@ const __default__ = {
|
|
|
5697
5751
|
}, 8 /* PROPS */, ["modelValue"])]),
|
|
5698
5752
|
_: 1 /* STABLE */
|
|
5699
5753
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
5700
|
-
span:
|
|
5754
|
+
span: 5
|
|
5701
5755
|
}, {
|
|
5702
5756
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_checkbox, {
|
|
5703
5757
|
class: "btnStyle",
|
|
@@ -5709,7 +5763,7 @@ const __default__ = {
|
|
|
5709
5763
|
}, 8 /* PROPS */, ["modelValue"])]),
|
|
5710
5764
|
_: 1 /* STABLE */
|
|
5711
5765
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
5712
|
-
span:
|
|
5766
|
+
span: 5
|
|
5713
5767
|
}, {
|
|
5714
5768
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_checkbox, {
|
|
5715
5769
|
class: "btnStyle",
|
|
@@ -5721,6 +5775,32 @@ const __default__ = {
|
|
|
5721
5775
|
_: 1 /* STABLE */
|
|
5722
5776
|
}, 8 /* PROPS */, ["modelValue"])]),
|
|
5723
5777
|
_: 1 /* STABLE */
|
|
5778
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
5779
|
+
span: 5
|
|
5780
|
+
}, {
|
|
5781
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_checkbox, {
|
|
5782
|
+
class: "btnStyle",
|
|
5783
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(latlngShow),
|
|
5784
|
+
"onUpdate:modelValue": _cache[11] || (_cache[11] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(latlngShow) ? latlngShow.value = $event : latlngShow = $event),
|
|
5785
|
+
onChange: changelatlngShow
|
|
5786
|
+
}, {
|
|
5787
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)(_ctx.$t("webgl.printlatlng")), 1 /* TEXT */)]),
|
|
5788
|
+
_: 1 /* STABLE */
|
|
5789
|
+
}, 8 /* PROPS */, ["modelValue"])]),
|
|
5790
|
+
_: 1 /* STABLE */
|
|
5791
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
5792
|
+
span: 4
|
|
5793
|
+
}, {
|
|
5794
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_checkbox, {
|
|
5795
|
+
class: "btnStyle",
|
|
5796
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(basemapShow),
|
|
5797
|
+
"onUpdate:modelValue": _cache[12] || (_cache[12] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(basemapShow) ? basemapShow.value = $event : basemapShow = $event),
|
|
5798
|
+
onChange: changebasemapShow
|
|
5799
|
+
}, {
|
|
5800
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)(_ctx.$t("leaflet.printbasemap")), 1 /* TEXT */)]),
|
|
5801
|
+
_: 1 /* STABLE */
|
|
5802
|
+
}, 8 /* PROPS */, ["modelValue"])]),
|
|
5803
|
+
_: 1 /* STABLE */
|
|
5724
5804
|
})]),
|
|
5725
5805
|
_: 1 /* STABLE */
|
|
5726
5806
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_9, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form, {
|
|
@@ -5735,7 +5815,7 @@ const __default__ = {
|
|
|
5735
5815
|
}, {
|
|
5736
5816
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_select, {
|
|
5737
5817
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(borderStyleValue),
|
|
5738
|
-
"onUpdate:modelValue": _cache[
|
|
5818
|
+
"onUpdate:modelValue": _cache[13] || (_cache[13] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(borderStyleValue) ? borderStyleValue.value = $event : borderStyleValue = $event),
|
|
5739
5819
|
onChange: changeBorderStyleData
|
|
5740
5820
|
}, {
|
|
5741
5821
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
|
|
@@ -5768,7 +5848,7 @@ const __default__ = {
|
|
|
5768
5848
|
}, {
|
|
5769
5849
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_select, {
|
|
5770
5850
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(papForm),
|
|
5771
|
-
"onUpdate:modelValue": _cache[
|
|
5851
|
+
"onUpdate:modelValue": _cache[14] || (_cache[14] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(papForm) ? papForm.value = $event : papForm = $event),
|
|
5772
5852
|
onChange: changeMapContainerSize
|
|
5773
5853
|
}, {
|
|
5774
5854
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
|
|
@@ -5811,7 +5891,7 @@ const __default__ = {
|
|
|
5811
5891
|
}, {
|
|
5812
5892
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_select, {
|
|
5813
5893
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(papAnchor),
|
|
5814
|
-
"onUpdate:modelValue": _cache[
|
|
5894
|
+
"onUpdate:modelValue": _cache[15] || (_cache[15] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(papAnchor) ? papAnchor.value = $event : papAnchor = $event),
|
|
5815
5895
|
onChange: changeMapContainerSize
|
|
5816
5896
|
}, {
|
|
5817
5897
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
|
|
@@ -5835,7 +5915,7 @@ const __default__ = {
|
|
|
5835
5915
|
}, {
|
|
5836
5916
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_select, {
|
|
5837
5917
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(imageType),
|
|
5838
|
-
"onUpdate:modelValue": _cache[
|
|
5918
|
+
"onUpdate:modelValue": _cache[16] || (_cache[16] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(imageType) ? imageType.value = $event : imageType = $event)
|
|
5839
5919
|
}, {
|
|
5840
5920
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
|
|
5841
5921
|
value: "png"
|
|
@@ -5859,7 +5939,7 @@ const __default__ = {
|
|
|
5859
5939
|
_: 1 /* STABLE */
|
|
5860
5940
|
}, 8 /* PROPS */, ["model"])]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_divider), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_10, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
5861
5941
|
type: "primary",
|
|
5862
|
-
onClick: _cache[
|
|
5942
|
+
onClick: _cache[17] || (_cache[17] = $event => getPic()),
|
|
5863
5943
|
loading: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(loadState)
|
|
5864
5944
|
}, {
|
|
5865
5945
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).savePicture), 1 /* TEXT */)]),
|
|
@@ -5912,7 +5992,7 @@ const __default__ = {
|
|
|
5912
5992
|
}, {
|
|
5913
5993
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_input, {
|
|
5914
5994
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.title,
|
|
5915
|
-
"onUpdate:modelValue": _cache[
|
|
5995
|
+
"onUpdate:modelValue": _cache[19] || (_cache[19] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.title = $event)
|
|
5916
5996
|
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
5917
5997
|
_: 1 /* STABLE */
|
|
5918
5998
|
}, 8 /* PROPS */, ["label"])]),
|
|
@@ -5928,7 +6008,7 @@ const __default__ = {
|
|
|
5928
6008
|
}, {
|
|
5929
6009
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_select, {
|
|
5930
6010
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontFamily,
|
|
5931
|
-
"onUpdate:modelValue": _cache[
|
|
6011
|
+
"onUpdate:modelValue": _cache[20] || (_cache[20] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontFamily = $event),
|
|
5932
6012
|
placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).pleaseselect,
|
|
5933
6013
|
style: {
|
|
5934
6014
|
"width": "100%"
|
|
@@ -5960,7 +6040,7 @@ const __default__ = {
|
|
|
5960
6040
|
}, {
|
|
5961
6041
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_select, {
|
|
5962
6042
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontSize,
|
|
5963
|
-
"onUpdate:modelValue": _cache[
|
|
6043
|
+
"onUpdate:modelValue": _cache[21] || (_cache[21] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontSize = $event),
|
|
5964
6044
|
placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).fontsize
|
|
5965
6045
|
}, {
|
|
5966
6046
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)(external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.Fragment, null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.renderList)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(sizelist).value, size => {
|
|
@@ -5990,7 +6070,7 @@ const __default__ = {
|
|
|
5990
6070
|
}, {
|
|
5991
6071
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_color_picker, {
|
|
5992
6072
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.color,
|
|
5993
|
-
"onUpdate:modelValue": _cache[
|
|
6073
|
+
"onUpdate:modelValue": _cache[22] || (_cache[22] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.color = $event),
|
|
5994
6074
|
"show-alpha": ""
|
|
5995
6075
|
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
5996
6076
|
_: 1 /* STABLE */
|
|
@@ -6007,7 +6087,7 @@ const __default__ = {
|
|
|
6007
6087
|
}, {
|
|
6008
6088
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_color_picker, {
|
|
6009
6089
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.backgroundColor,
|
|
6010
|
-
"onUpdate:modelValue": _cache[
|
|
6090
|
+
"onUpdate:modelValue": _cache[23] || (_cache[23] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.backgroundColor = $event),
|
|
6011
6091
|
"show-alpha": ""
|
|
6012
6092
|
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
6013
6093
|
_: 1 /* STABLE */
|
|
@@ -6021,7 +6101,7 @@ const __default__ = {
|
|
|
6021
6101
|
}, {
|
|
6022
6102
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_color_picker, {
|
|
6023
6103
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.shadowShowBg,
|
|
6024
|
-
"onUpdate:modelValue": _cache[
|
|
6104
|
+
"onUpdate:modelValue": _cache[24] || (_cache[24] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.shadowShowBg = $event),
|
|
6025
6105
|
"show-alpha": ""
|
|
6026
6106
|
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
6027
6107
|
_: 1 /* STABLE */
|
|
@@ -6032,7 +6112,7 @@ const __default__ = {
|
|
|
6032
6112
|
}, {
|
|
6033
6113
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_15, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_checkbox, {
|
|
6034
6114
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.shadowShow,
|
|
6035
|
-
"onUpdate:modelValue": _cache[
|
|
6115
|
+
"onUpdate:modelValue": _cache[25] || (_cache[25] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.shadowShow = $event)
|
|
6036
6116
|
}, {
|
|
6037
6117
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).backgroundShadow), 1 /* TEXT */)]),
|
|
6038
6118
|
_: 1 /* STABLE */
|
|
@@ -6042,7 +6122,7 @@ const __default__ = {
|
|
|
6042
6122
|
_: 1 /* STABLE */
|
|
6043
6123
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_divider), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_16, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_checkbox, {
|
|
6044
6124
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.titleShow,
|
|
6045
|
-
"onUpdate:modelValue": _cache[
|
|
6125
|
+
"onUpdate:modelValue": _cache[26] || (_cache[26] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.titleShow = $event)
|
|
6046
6126
|
}, {
|
|
6047
6127
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).displaytitle), 1 /* TEXT */)]),
|
|
6048
6128
|
_: 1 /* STABLE */
|
|
@@ -6072,7 +6152,7 @@ const __default__ = {
|
|
|
6072
6152
|
}, {
|
|
6073
6153
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_input, {
|
|
6074
6154
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).companyName,
|
|
6075
|
-
"onUpdate:modelValue": _cache[
|
|
6155
|
+
"onUpdate:modelValue": _cache[27] || (_cache[27] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).companyName = $event)
|
|
6076
6156
|
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
6077
6157
|
_: 1 /* STABLE */
|
|
6078
6158
|
}, 8 /* PROPS */, ["label"])]),
|
|
@@ -6088,7 +6168,7 @@ const __default__ = {
|
|
|
6088
6168
|
}, {
|
|
6089
6169
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_date_picker, {
|
|
6090
6170
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).printDate,
|
|
6091
|
-
"onUpdate:modelValue": _cache[
|
|
6171
|
+
"onUpdate:modelValue": _cache[28] || (_cache[28] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).printDate = $event),
|
|
6092
6172
|
type: "date",
|
|
6093
6173
|
clearable: false,
|
|
6094
6174
|
editable: false,
|
|
@@ -6109,7 +6189,7 @@ const __default__ = {
|
|
|
6109
6189
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_checkbox, {
|
|
6110
6190
|
class: "btnStyle",
|
|
6111
6191
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(printCompanyShow),
|
|
6112
|
-
"onUpdate:modelValue": _cache[
|
|
6192
|
+
"onUpdate:modelValue": _cache[29] || (_cache[29] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(printCompanyShow) ? printCompanyShow.value = $event : printCompanyShow = $event)
|
|
6113
6193
|
}, {
|
|
6114
6194
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).printcompany), 1 /* TEXT */)]),
|
|
6115
6195
|
_: 1 /* STABLE */
|
|
@@ -6121,7 +6201,7 @@ const __default__ = {
|
|
|
6121
6201
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_checkbox, {
|
|
6122
6202
|
class: "btnStyle",
|
|
6123
6203
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(printdataShow),
|
|
6124
|
-
"onUpdate:modelValue": _cache[
|
|
6204
|
+
"onUpdate:modelValue": _cache[30] || (_cache[30] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(printdataShow) ? printdataShow.value = $event : printdataShow = $event)
|
|
6125
6205
|
}, {
|
|
6126
6206
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).printdate), 1 /* TEXT */)]),
|
|
6127
6207
|
_: 1 /* STABLE */
|
|
@@ -6151,7 +6231,7 @@ const __default__ = {
|
|
|
6151
6231
|
}, {
|
|
6152
6232
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_select, {
|
|
6153
6233
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontFamily,
|
|
6154
|
-
"onUpdate:modelValue": _cache[
|
|
6234
|
+
"onUpdate:modelValue": _cache[31] || (_cache[31] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontFamily = $event),
|
|
6155
6235
|
placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).pleaseselect,
|
|
6156
6236
|
style: {
|
|
6157
6237
|
"width": "100%"
|
|
@@ -6179,7 +6259,7 @@ const __default__ = {
|
|
|
6179
6259
|
}, {
|
|
6180
6260
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_select, {
|
|
6181
6261
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontSize,
|
|
6182
|
-
"onUpdate:modelValue": _cache[
|
|
6262
|
+
"onUpdate:modelValue": _cache[32] || (_cache[32] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontSize = $event),
|
|
6183
6263
|
placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).fontsize
|
|
6184
6264
|
}, {
|
|
6185
6265
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)(external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.Fragment, null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.renderList)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(sizelist).value, size => {
|
|
@@ -6209,7 +6289,7 @@ const __default__ = {
|
|
|
6209
6289
|
}, {
|
|
6210
6290
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", null, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_color_picker, {
|
|
6211
6291
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.color,
|
|
6212
|
-
"onUpdate:modelValue": _cache[
|
|
6292
|
+
"onUpdate:modelValue": _cache[33] || (_cache[33] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.color = $event),
|
|
6213
6293
|
"show-alpha": ""
|
|
6214
6294
|
}, null, 8 /* PROPS */, ["modelValue"])])]),
|
|
6215
6295
|
_: 1 /* STABLE */
|
|
@@ -6226,7 +6306,7 @@ const __default__ = {
|
|
|
6226
6306
|
rows: "12",
|
|
6227
6307
|
placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).pleaseentercontent,
|
|
6228
6308
|
spellcheck: "false",
|
|
6229
|
-
"onUpdate:modelValue": _cache[
|
|
6309
|
+
"onUpdate:modelValue": _cache[34] || (_cache[34] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).data.labelValue = $event),
|
|
6230
6310
|
style: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeStyle)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style)
|
|
6231
6311
|
}, null, 12 /* STYLE, PROPS */, _hoisted_21), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vModelText, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).data.labelValue]])]),
|
|
6232
6312
|
_: 1 /* STABLE */
|
|
@@ -6410,7 +6490,7 @@ const __default__ = {
|
|
|
6410
6490
|
circle: "",
|
|
6411
6491
|
icon: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_.CircleClose),
|
|
6412
6492
|
title: _ctx.$t('webgl.printclearimg'),
|
|
6413
|
-
onClick: _cache[
|
|
6493
|
+
onClick: _cache[35] || (_cache[35] = $event => handleDeleteCenterPic()),
|
|
6414
6494
|
style: {
|
|
6415
6495
|
"margin-left": "32px"
|
|
6416
6496
|
}
|
|
@@ -6429,7 +6509,7 @@ const __default__ = {
|
|
|
6429
6509
|
}, {
|
|
6430
6510
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_input_number, {
|
|
6431
6511
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).width,
|
|
6432
|
-
"onUpdate:modelValue": _cache[
|
|
6512
|
+
"onUpdate:modelValue": _cache[36] || (_cache[36] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).width = $event),
|
|
6433
6513
|
min: 0,
|
|
6434
6514
|
"controls-position": "right",
|
|
6435
6515
|
onChange: _ctx.onChangecenterImg
|
|
@@ -6448,7 +6528,7 @@ const __default__ = {
|
|
|
6448
6528
|
}, {
|
|
6449
6529
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_input_number, {
|
|
6450
6530
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).height,
|
|
6451
|
-
"onUpdate:modelValue": _cache[
|
|
6531
|
+
"onUpdate:modelValue": _cache[37] || (_cache[37] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).height = $event),
|
|
6452
6532
|
min: 0,
|
|
6453
6533
|
"controls-position": "right",
|
|
6454
6534
|
onChange: _ctx.onChangecenterImg
|
|
@@ -6494,10 +6574,10 @@ const __default__ = {
|
|
|
6494
6574
|
options: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).options,
|
|
6495
6575
|
service: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).service,
|
|
6496
6576
|
scenceInfo: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).scenceInfo,
|
|
6497
|
-
showToolButtons:
|
|
6577
|
+
showToolButtons: false,
|
|
6498
6578
|
defaultShowLayerNames: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).defaultShowLayerNames,
|
|
6499
|
-
|
|
6500
|
-
|
|
6579
|
+
showLogo: false,
|
|
6580
|
+
isInitDrawManager: false,
|
|
6501
6581
|
style: {
|
|
6502
6582
|
"position": "relative"
|
|
6503
6583
|
}
|
|
@@ -6569,7 +6649,20 @@ const __default__ = {
|
|
|
6569
6649
|
}, null, 8 /* PROPS */, _hoisted_43)], 32 /* HYDRATE_EVENTS */);
|
|
6570
6650
|
}), 128 /* KEYED_FRAGMENT */))]),
|
|
6571
6651
|
_: 1 /* STABLE */
|
|
6572
|
-
}, 8 /* PROPS */, ["options", "service", "scenceInfo", "
|
|
6652
|
+
}, 8 /* PROPS */, ["options", "service", "scenceInfo", "defaultShowLayerNames"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true)], 512 /* NEED_PATCH */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_44, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
6653
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
6654
|
+
span: 12
|
|
6655
|
+
}, {
|
|
6656
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_45, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).printcompany) + ":" + (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).companyName), 1 /* TEXT */)], 512 /* NEED_PATCH */), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(printCompanyShow)]])]),
|
|
6657
|
+
_: 1 /* STABLE */
|
|
6658
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
6659
|
+
span: 12
|
|
6660
|
+
}, {
|
|
6661
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_46, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).printdate) + ":" + (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(systemTime)), 1 /* TEXT */)], 512 /* NEED_PATCH */), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(printdataShow)]])]),
|
|
6662
|
+
_: 1 /* STABLE */
|
|
6663
|
+
})]),
|
|
6664
|
+
_: 1 /* STABLE */
|
|
6665
|
+
})])], 512 /* NEED_PATCH */)]),
|
|
6573
6666
|
_: 1 /* STABLE */
|
|
6574
6667
|
})], 512 /* NEED_PATCH */)], 512 /* NEED_PATCH */);
|
|
6575
6668
|
};
|
|
@@ -11988,6 +12081,13 @@ class Heatmap3dViewModel {
|
|
|
11988
12081
|
if (this._options.gradient) this._heatmap.gradient = this._options.gradient;
|
|
11989
12082
|
this._viewer.scene.primitives.add(this._heatmap);
|
|
11990
12083
|
this._heatmap && this._heatmap.setData(heatmapData);
|
|
12084
|
+
if (this._heatmap) {
|
|
12085
|
+
this._heatmap.readyPromise.then(() => {
|
|
12086
|
+
this._viewer.camera.flyTo({
|
|
12087
|
+
destination: this._heatmap._rectangle
|
|
12088
|
+
});
|
|
12089
|
+
});
|
|
12090
|
+
}
|
|
11991
12091
|
}
|
|
11992
12092
|
// 创建二维热力图对象
|
|
11993
12093
|
initHeatmap2d(heatmapData) {
|
|
@@ -12012,6 +12112,9 @@ class Heatmap3dViewModel {
|
|
|
12012
12112
|
show: this._options.heatmapType == "2D" ? this._options.isShow : false
|
|
12013
12113
|
});
|
|
12014
12114
|
this._viewer.imageryLayers.add(this._heatmap2dCountLayer);
|
|
12115
|
+
this._viewer.camera.flyTo({
|
|
12116
|
+
destination: Cesium.Rectangle.fromDegrees(extent[0], extent[1], extent[2], extent[3])
|
|
12117
|
+
});
|
|
12015
12118
|
}
|
|
12016
12119
|
// 切换二维数据
|
|
12017
12120
|
changeHeatmap2d() {
|
|
@@ -12859,17 +12962,16 @@ const __default__ = {
|
|
|
12859
12962
|
ref_key: "headerTempRef",
|
|
12860
12963
|
ref: headerTempRef
|
|
12861
12964
|
}, null, 512 /* NEED_PATCH */)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", Heatmap3dvue_type_script_setup_true_lang_js_hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
12862
|
-
gutter: 20,
|
|
12863
12965
|
class: "rowClass"
|
|
12864
12966
|
}, {
|
|
12865
12967
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
12866
|
-
span:
|
|
12968
|
+
span: 7,
|
|
12867
12969
|
class: "colClass"
|
|
12868
12970
|
}, {
|
|
12869
12971
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", _hoisted_2, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).dataPath), 1 /* TEXT */)]),
|
|
12870
12972
|
_: 1 /* STABLE */
|
|
12871
12973
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
12872
|
-
span:
|
|
12974
|
+
span: 17
|
|
12873
12975
|
}, {
|
|
12874
12976
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_input, {
|
|
12875
12977
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).dataPath,
|
|
@@ -12900,17 +13002,16 @@ const __default__ = {
|
|
|
12900
13002
|
})]),
|
|
12901
13003
|
_: 1 /* STABLE */
|
|
12902
13004
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
12903
|
-
gutter: 20,
|
|
12904
13005
|
class: "rowClass"
|
|
12905
13006
|
}, {
|
|
12906
13007
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
12907
|
-
span:
|
|
13008
|
+
span: 7,
|
|
12908
13009
|
class: "colClass"
|
|
12909
13010
|
}, {
|
|
12910
13011
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", _hoisted_3, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).heatmapType), 1 /* TEXT */)]),
|
|
12911
13012
|
_: 1 /* STABLE */
|
|
12912
13013
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
12913
|
-
span:
|
|
13014
|
+
span: 17
|
|
12914
13015
|
}, {
|
|
12915
13016
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_radio_group, {
|
|
12916
13017
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).heatmapType,
|
|
@@ -12920,7 +13021,7 @@ const __default__ = {
|
|
|
12920
13021
|
label: "3D",
|
|
12921
13022
|
onChange: _cache[2] || (_cache[2] = $event => paramsChanged('heatmapType'))
|
|
12922
13023
|
}, {
|
|
12923
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)(
|
|
13024
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).classic3d), 1 /* TEXT */)]),
|
|
12924
13025
|
_: 1 /* STABLE */
|
|
12925
13026
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_radio, {
|
|
12926
13027
|
label: "2D",
|
|
@@ -13168,7 +13269,7 @@ const __default__ = {
|
|
|
13168
13269
|
_: 1 /* STABLE */
|
|
13169
13270
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
13170
13271
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form_item, {
|
|
13171
|
-
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).height
|
|
13272
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).height + '(m)'
|
|
13172
13273
|
}, {
|
|
13173
13274
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
13174
13275
|
style: {
|
|
@@ -32181,8 +32282,6 @@ function delTreeDataByGuid(data, guid) {
|
|
|
32181
32282
|
|
|
32182
32283
|
|
|
32183
32284
|
class SceneViewViewModel extends (mitt_default()) {
|
|
32184
|
-
//底图集合
|
|
32185
|
-
|
|
32186
32285
|
constructor(props, lang) {
|
|
32187
32286
|
super();
|
|
32188
32287
|
(0,defineProperty/* default */.Z)(this, "_viewerId", "");
|
|
@@ -32198,6 +32297,9 @@ class SceneViewViewModel extends (mitt_default()) {
|
|
|
32198
32297
|
(0,defineProperty/* default */.Z)(this, "_props", null);
|
|
32199
32298
|
(0,defineProperty/* default */.Z)(this, "_removeEventListener", null);
|
|
32200
32299
|
(0,defineProperty/* default */.Z)(this, "_baseLayers", {});
|
|
32300
|
+
//底图集合
|
|
32301
|
+
(0,defineProperty/* default */.Z)(this, "_onlineBaseLayerConfig", null);
|
|
32302
|
+
(0,defineProperty/* default */.Z)(this, "_currentBaseLayerConfig", null);
|
|
32201
32303
|
this._viewerId = props.target;
|
|
32202
32304
|
this._props = props;
|
|
32203
32305
|
this._lang = lang;
|
|
@@ -32290,7 +32392,7 @@ class SceneViewViewModel extends (mitt_default()) {
|
|
|
32290
32392
|
//初始化操作类
|
|
32291
32393
|
initManagerClass() {
|
|
32292
32394
|
if (this._viewer) {
|
|
32293
|
-
this._drawManager = new DrawManager(this._viewer, this._lang.language);
|
|
32395
|
+
if (this._props.isInitDrawManager) this._drawManager = new DrawManager(this._viewer, this._lang.language);
|
|
32294
32396
|
this._layerManager = new LayerManager(this);
|
|
32295
32397
|
}
|
|
32296
32398
|
}
|
|
@@ -32415,6 +32517,10 @@ class SceneViewViewModel extends (mitt_default()) {
|
|
|
32415
32517
|
* @param visible 显隐
|
|
32416
32518
|
*/
|
|
32417
32519
|
showBaseLayer(layerKey, layerInfo, visible) {
|
|
32520
|
+
this._currentBaseLayerConfig = {
|
|
32521
|
+
layerKey: layerKey,
|
|
32522
|
+
layerInfo: layerInfo
|
|
32523
|
+
};
|
|
32418
32524
|
let layers = this._baseLayers[layerKey];
|
|
32419
32525
|
if (!layers) {
|
|
32420
32526
|
layers = [];
|
|
@@ -32442,7 +32548,7 @@ class SceneViewViewModel extends (mitt_default()) {
|
|
|
32442
32548
|
* 获取底图数据
|
|
32443
32549
|
*/
|
|
32444
32550
|
getBaseLayerData() {
|
|
32445
|
-
return
|
|
32551
|
+
return Object.assign({}, this._baseLayers);
|
|
32446
32552
|
}
|
|
32447
32553
|
/**
|
|
32448
32554
|
* 获取在线底图index
|
|
@@ -32546,6 +32652,7 @@ class SceneViewViewModel extends (mitt_default()) {
|
|
|
32546
32652
|
* @param {boolean} visible 显隐
|
|
32547
32653
|
*/
|
|
32548
32654
|
showOnlineBaseLayer(layerConfig, visible) {
|
|
32655
|
+
this._onlineBaseLayerConfig = layerConfig;
|
|
32549
32656
|
let guid = layerConfig.guid;
|
|
32550
32657
|
let imageryLayers = this._viewer.imageryLayers._layers;
|
|
32551
32658
|
let layer = imageryLayers.find(item => {
|
|
@@ -32653,6 +32760,11 @@ const __default__ = {
|
|
|
32653
32760
|
scenceInfo: Object,
|
|
32654
32761
|
// 默认显示的图层组名称
|
|
32655
32762
|
defaultShowLayerNames: Array,
|
|
32763
|
+
// 是否初始化绘制类
|
|
32764
|
+
isInitDrawManager: {
|
|
32765
|
+
type: Boolean,
|
|
32766
|
+
default: true
|
|
32767
|
+
},
|
|
32656
32768
|
showToolButtons: {
|
|
32657
32769
|
type: Boolean,
|
|
32658
32770
|
default: true
|