@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/index.js
CHANGED
|
@@ -3932,8 +3932,6 @@ function delTreeDataByGuid(data, guid) {
|
|
|
3932
3932
|
|
|
3933
3933
|
|
|
3934
3934
|
class SceneViewViewModel extends (mitt_default()) {
|
|
3935
|
-
//底图集合
|
|
3936
|
-
|
|
3937
3935
|
constructor(props, lang) {
|
|
3938
3936
|
super();
|
|
3939
3937
|
_defineProperty(this, "_viewerId", "");
|
|
@@ -3949,6 +3947,9 @@ class SceneViewViewModel extends (mitt_default()) {
|
|
|
3949
3947
|
_defineProperty(this, "_props", null);
|
|
3950
3948
|
_defineProperty(this, "_removeEventListener", null);
|
|
3951
3949
|
_defineProperty(this, "_baseLayers", {});
|
|
3950
|
+
//底图集合
|
|
3951
|
+
_defineProperty(this, "_onlineBaseLayerConfig", null);
|
|
3952
|
+
_defineProperty(this, "_currentBaseLayerConfig", null);
|
|
3952
3953
|
this._viewerId = props.target;
|
|
3953
3954
|
this._props = props;
|
|
3954
3955
|
this._lang = lang;
|
|
@@ -4041,7 +4042,7 @@ class SceneViewViewModel extends (mitt_default()) {
|
|
|
4041
4042
|
//初始化操作类
|
|
4042
4043
|
initManagerClass() {
|
|
4043
4044
|
if (this._viewer) {
|
|
4044
|
-
this._drawManager = new DrawManager(this._viewer, this._lang.language);
|
|
4045
|
+
if (this._props.isInitDrawManager) this._drawManager = new DrawManager(this._viewer, this._lang.language);
|
|
4045
4046
|
this._layerManager = new LayerManager(this);
|
|
4046
4047
|
}
|
|
4047
4048
|
}
|
|
@@ -4166,6 +4167,10 @@ class SceneViewViewModel extends (mitt_default()) {
|
|
|
4166
4167
|
* @param visible 显隐
|
|
4167
4168
|
*/
|
|
4168
4169
|
showBaseLayer(layerKey, layerInfo, visible) {
|
|
4170
|
+
this._currentBaseLayerConfig = {
|
|
4171
|
+
layerKey: layerKey,
|
|
4172
|
+
layerInfo: layerInfo
|
|
4173
|
+
};
|
|
4169
4174
|
let layers = this._baseLayers[layerKey];
|
|
4170
4175
|
if (!layers) {
|
|
4171
4176
|
layers = [];
|
|
@@ -4193,7 +4198,7 @@ class SceneViewViewModel extends (mitt_default()) {
|
|
|
4193
4198
|
* 获取底图数据
|
|
4194
4199
|
*/
|
|
4195
4200
|
getBaseLayerData() {
|
|
4196
|
-
return
|
|
4201
|
+
return Object.assign({}, this._baseLayers);
|
|
4197
4202
|
}
|
|
4198
4203
|
/**
|
|
4199
4204
|
* 获取在线底图index
|
|
@@ -4297,6 +4302,7 @@ class SceneViewViewModel extends (mitt_default()) {
|
|
|
4297
4302
|
* @param {boolean} visible 显隐
|
|
4298
4303
|
*/
|
|
4299
4304
|
showOnlineBaseLayer(layerConfig, visible) {
|
|
4305
|
+
this._onlineBaseLayerConfig = layerConfig;
|
|
4300
4306
|
let guid = layerConfig.guid;
|
|
4301
4307
|
let imageryLayers = this._viewer.imageryLayers._layers;
|
|
4302
4308
|
let layer = imageryLayers.find(item => {
|
|
@@ -4404,6 +4410,11 @@ const __default__ = {
|
|
|
4404
4410
|
scenceInfo: Object,
|
|
4405
4411
|
// 默认显示的图层组名称
|
|
4406
4412
|
defaultShowLayerNames: Array,
|
|
4413
|
+
// 是否初始化绘制类
|
|
4414
|
+
isInitDrawManager: {
|
|
4415
|
+
type: Boolean,
|
|
4416
|
+
default: true
|
|
4417
|
+
},
|
|
4407
4418
|
showToolButtons: {
|
|
4408
4419
|
type: Boolean,
|
|
4409
4420
|
default: true
|
|
@@ -5172,6 +5183,7 @@ var esnext_iterator_map_js_ = __webpack_require__(170);
|
|
|
5172
5183
|
|
|
5173
5184
|
|
|
5174
5185
|
|
|
5186
|
+
|
|
5175
5187
|
/**
|
|
5176
5188
|
* Author: zqp
|
|
5177
5189
|
* Date: 2022-12-06
|
|
@@ -5195,6 +5207,8 @@ class ClientPrintViewModel extends (mitt_default()) {
|
|
|
5195
5207
|
* @type {string}
|
|
5196
5208
|
* @private
|
|
5197
5209
|
*/
|
|
5210
|
+
_defineProperty(this, "_scenceView_print", null);
|
|
5211
|
+
_defineProperty(this, "_scenceView_partent", null);
|
|
5198
5212
|
this._mapTarget = mapTarget;
|
|
5199
5213
|
/**
|
|
5200
5214
|
* 要打印的地图
|
|
@@ -5218,7 +5232,24 @@ class ClientPrintViewModel extends (mitt_default()) {
|
|
|
5218
5232
|
openPrint() {
|
|
5219
5233
|
gis_utils_.utils.getWebMap(this._mapTarget, this._loadedSync);
|
|
5220
5234
|
}
|
|
5221
|
-
|
|
5235
|
+
showBaseLayer() {
|
|
5236
|
+
let baseLayerData = this._scenceView_partent?._currentBaseLayerConfig;
|
|
5237
|
+
if (!baseLayerData || baseLayerData == {}) {
|
|
5238
|
+
if (this._scenceView_partent._onlineBaseLayerConfig) {
|
|
5239
|
+
this._scenceView_print && this._scenceView_print.showOnlineBaseLayer(this._scenceView_partent._onlineBaseLayerConfig, true);
|
|
5240
|
+
}
|
|
5241
|
+
} else {
|
|
5242
|
+
this._scenceView_print && this._scenceView_print.showBaseLayer(baseLayerData.layerKey, baseLayerData.layerInfo, true);
|
|
5243
|
+
}
|
|
5244
|
+
}
|
|
5245
|
+
removeBaseLayer() {
|
|
5246
|
+
let baseLayerData = this._scenceView_partent?._currentBaseLayerConfig;
|
|
5247
|
+
if (!baseLayerData) {
|
|
5248
|
+
this._scenceView_print && this._scenceView_print.removeAllOnlineBaseLayer();
|
|
5249
|
+
} else {
|
|
5250
|
+
this._scenceView_print && this._scenceView_print.showBaseLayer(baseLayerData.layerKey, baseLayerData.layerInfo, false);
|
|
5251
|
+
}
|
|
5252
|
+
}
|
|
5222
5253
|
/**
|
|
5223
5254
|
* 获取图例
|
|
5224
5255
|
*/
|
|
@@ -5501,6 +5532,10 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
5501
5532
|
type: Boolean,
|
|
5502
5533
|
default: false
|
|
5503
5534
|
},
|
|
5535
|
+
onlyShowCheckLayer: {
|
|
5536
|
+
type: Boolean,
|
|
5537
|
+
default: false
|
|
5538
|
+
},
|
|
5504
5539
|
// 是否使用自定义地图数据
|
|
5505
5540
|
useCustomData: {
|
|
5506
5541
|
type: Boolean,
|
|
@@ -5677,10 +5712,12 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
5677
5712
|
let legendShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
|
|
5678
5713
|
// 比例尺显示与隐藏
|
|
5679
5714
|
let scalesShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
|
|
5715
|
+
//度图的显示与隐藏
|
|
5716
|
+
let basemapShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(true);
|
|
5680
5717
|
// 指北针的显示与隐藏
|
|
5681
5718
|
let compassShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
|
|
5682
5719
|
//经纬度显示与隐藏
|
|
5683
|
-
let latlngShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(
|
|
5720
|
+
let latlngShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
|
|
5684
5721
|
//网格的显示与隐藏
|
|
5685
5722
|
let gridShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(true);
|
|
5686
5723
|
let printdataShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(true);
|
|
@@ -5751,6 +5788,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
5751
5788
|
global_event_default().getWebMapByMapTarget(props.mapTarget, scenceView => {
|
|
5752
5789
|
if (scenceView && scenceView._viewer) {
|
|
5753
5790
|
scenceView_partent = scenceView;
|
|
5791
|
+
viewModel._scenceView_partent = scenceView;
|
|
5754
5792
|
formItem = scenceView._props;
|
|
5755
5793
|
showMap.value = true;
|
|
5756
5794
|
}
|
|
@@ -5771,35 +5809,44 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
5771
5809
|
global_event_default().getWebMapByMapTarget("scencePrint", scenceView => {
|
|
5772
5810
|
if (scenceView && scenceView._viewer) {
|
|
5773
5811
|
scenceView_print = scenceView;
|
|
5812
|
+
viewModel._scenceView_print = scenceView;
|
|
5774
5813
|
if (!formItem.service && !formItem.scenceInfo) {
|
|
5775
5814
|
if (scenceView_partent) {
|
|
5776
5815
|
let _promises = [];
|
|
5777
5816
|
for (let index = scenceView_partent._layerManager._layerListData.length - 1; index >= 0; index--) {
|
|
5778
5817
|
const element = scenceView_partent._layerManager._layerListData[index];
|
|
5818
|
+
if (props.onlyShowCheckLayer) {
|
|
5819
|
+
if (!scenceView_partent._layerManager.getLayerCheckedListKey().includes(element.guid)) continue;
|
|
5820
|
+
}
|
|
5779
5821
|
if (!element.url) element.url = element.data;
|
|
5780
|
-
|
|
5781
|
-
var promise =
|
|
5822
|
+
scenceView_print._layerManager._layerListData.push(element);
|
|
5823
|
+
var promise = scenceView_print._layerManager.addLayerData(element, scenceView_partent._layerManager.getLayerCheckedListKey().includes(element.guid));
|
|
5782
5824
|
if (promise) {
|
|
5783
5825
|
_promises.push(promise);
|
|
5784
5826
|
}
|
|
5785
5827
|
}
|
|
5786
5828
|
if (_promises.length > 0) {
|
|
5787
5829
|
Promise.all(_promises).then(() => {
|
|
5788
|
-
|
|
5789
|
-
|
|
5830
|
+
scenceView_print._layerManager._layerTreeData = scenceView_print._layerManager._layerListData;
|
|
5831
|
+
scenceView_print.fire("resetLayerDatas");
|
|
5790
5832
|
});
|
|
5791
5833
|
} else {
|
|
5792
|
-
|
|
5793
|
-
|
|
5834
|
+
scenceView_print._layerManager._layerTreeData = scenceView_print._layerManager._layerListData;
|
|
5835
|
+
scenceView_print.fire("resetLayerDatas");
|
|
5794
5836
|
}
|
|
5795
|
-
|
|
5837
|
+
scenceView_print.setViewPosition(scenceView_partent.getViewPosition());
|
|
5796
5838
|
}
|
|
5797
5839
|
}
|
|
5840
|
+
if (basemapShow.value) {
|
|
5841
|
+
setTimeout(() => {
|
|
5842
|
+
viewModel && viewModel.showBaseLayer();
|
|
5843
|
+
}, 100);
|
|
5844
|
+
}
|
|
5798
5845
|
initControl();
|
|
5799
|
-
cameraToImage = new Cesium.Kq3dCanvasToImage(scenceView._viewer._container, {
|
|
5800
|
-
|
|
5801
|
-
|
|
5802
|
-
});
|
|
5846
|
+
// cameraToImage = new Cesium.Kq3dCanvasToImage(scenceView._viewer._container, {
|
|
5847
|
+
// viewer: scenceView._viewer,
|
|
5848
|
+
// canvas: scenceView._viewer.scene.canvas
|
|
5849
|
+
// });
|
|
5803
5850
|
}
|
|
5804
5851
|
});
|
|
5805
5852
|
// 格式化时间
|
|
@@ -5964,7 +6011,23 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
5964
6011
|
});
|
|
5965
6012
|
}
|
|
5966
6013
|
}
|
|
6014
|
+
/**
|
|
6015
|
+
* 底图的隐藏显示
|
|
6016
|
+
*/
|
|
6017
|
+
function changebasemapShow() {
|
|
6018
|
+
if (basemapShow.value) {
|
|
6019
|
+
viewModel && viewModel.showBaseLayer();
|
|
6020
|
+
} else {
|
|
6021
|
+
viewModel && viewModel.removeBaseLayer();
|
|
6022
|
+
}
|
|
6023
|
+
}
|
|
5967
6024
|
|
|
6025
|
+
/**
|
|
6026
|
+
* 经纬线显示
|
|
6027
|
+
*/
|
|
6028
|
+
function changelatlngShow() {
|
|
6029
|
+
if (scenceView_print) scenceView_print._viewer.cartographicGridLayer.show = latlngShow.value;
|
|
6030
|
+
}
|
|
5968
6031
|
/**
|
|
5969
6032
|
* 切换后的左侧高度样式还原
|
|
5970
6033
|
*/
|
|
@@ -6225,7 +6288,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6225
6288
|
}
|
|
6226
6289
|
}
|
|
6227
6290
|
});
|
|
6228
|
-
viewModel.getLengend();
|
|
6291
|
+
viewModel && viewModel.getLengend();
|
|
6229
6292
|
}
|
|
6230
6293
|
/**
|
|
6231
6294
|
* 对象属性排序比较
|
|
@@ -6694,7 +6757,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6694
6757
|
_: 1 /* STABLE */
|
|
6695
6758
|
})]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_collapse, {
|
|
6696
6759
|
modelValue: activeNames.value,
|
|
6697
|
-
"onUpdate:modelValue": _cache[
|
|
6760
|
+
"onUpdate:modelValue": _cache[18] || (_cache[18] = $event => activeNames.value = $event),
|
|
6698
6761
|
onChange: changeMainHeight
|
|
6699
6762
|
}, {
|
|
6700
6763
|
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, {
|
|
@@ -6708,7 +6771,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6708
6771
|
}, 8 /* PROPS */, ["class"])]),
|
|
6709
6772
|
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, {
|
|
6710
6773
|
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, {
|
|
6711
|
-
span:
|
|
6774
|
+
span: 5
|
|
6712
6775
|
}, {
|
|
6713
6776
|
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, {
|
|
6714
6777
|
class: "btnStyle",
|
|
@@ -6721,7 +6784,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6721
6784
|
}, 8 /* PROPS */, ["modelValue"])]),
|
|
6722
6785
|
_: 1 /* STABLE */
|
|
6723
6786
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
6724
|
-
span:
|
|
6787
|
+
span: 5
|
|
6725
6788
|
}, {
|
|
6726
6789
|
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, {
|
|
6727
6790
|
class: "btnStyle",
|
|
@@ -6733,7 +6796,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6733
6796
|
}, 8 /* PROPS */, ["modelValue"])]),
|
|
6734
6797
|
_: 1 /* STABLE */
|
|
6735
6798
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
6736
|
-
span:
|
|
6799
|
+
span: 5
|
|
6737
6800
|
}, {
|
|
6738
6801
|
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, {
|
|
6739
6802
|
class: "btnStyle",
|
|
@@ -6745,6 +6808,32 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6745
6808
|
_: 1 /* STABLE */
|
|
6746
6809
|
}, 8 /* PROPS */, ["modelValue"])]),
|
|
6747
6810
|
_: 1 /* STABLE */
|
|
6811
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
6812
|
+
span: 5
|
|
6813
|
+
}, {
|
|
6814
|
+
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, {
|
|
6815
|
+
class: "btnStyle",
|
|
6816
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(latlngShow),
|
|
6817
|
+
"onUpdate:modelValue": _cache[11] || (_cache[11] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(latlngShow) ? latlngShow.value = $event : latlngShow = $event),
|
|
6818
|
+
onChange: changelatlngShow
|
|
6819
|
+
}, {
|
|
6820
|
+
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 */)]),
|
|
6821
|
+
_: 1 /* STABLE */
|
|
6822
|
+
}, 8 /* PROPS */, ["modelValue"])]),
|
|
6823
|
+
_: 1 /* STABLE */
|
|
6824
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
6825
|
+
span: 4
|
|
6826
|
+
}, {
|
|
6827
|
+
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, {
|
|
6828
|
+
class: "btnStyle",
|
|
6829
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(basemapShow),
|
|
6830
|
+
"onUpdate:modelValue": _cache[12] || (_cache[12] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(basemapShow) ? basemapShow.value = $event : basemapShow = $event),
|
|
6831
|
+
onChange: changebasemapShow
|
|
6832
|
+
}, {
|
|
6833
|
+
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 */)]),
|
|
6834
|
+
_: 1 /* STABLE */
|
|
6835
|
+
}, 8 /* PROPS */, ["modelValue"])]),
|
|
6836
|
+
_: 1 /* STABLE */
|
|
6748
6837
|
})]),
|
|
6749
6838
|
_: 1 /* STABLE */
|
|
6750
6839
|
}), (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, {
|
|
@@ -6759,7 +6848,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6759
6848
|
}, {
|
|
6760
6849
|
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, {
|
|
6761
6850
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(borderStyleValue),
|
|
6762
|
-
"onUpdate:modelValue": _cache[
|
|
6851
|
+
"onUpdate:modelValue": _cache[13] || (_cache[13] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(borderStyleValue) ? borderStyleValue.value = $event : borderStyleValue = $event),
|
|
6763
6852
|
onChange: changeBorderStyleData
|
|
6764
6853
|
}, {
|
|
6765
6854
|
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, {
|
|
@@ -6792,7 +6881,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6792
6881
|
}, {
|
|
6793
6882
|
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, {
|
|
6794
6883
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(papForm),
|
|
6795
|
-
"onUpdate:modelValue": _cache[
|
|
6884
|
+
"onUpdate:modelValue": _cache[14] || (_cache[14] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(papForm) ? papForm.value = $event : papForm = $event),
|
|
6796
6885
|
onChange: changeMapContainerSize
|
|
6797
6886
|
}, {
|
|
6798
6887
|
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, {
|
|
@@ -6835,7 +6924,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6835
6924
|
}, {
|
|
6836
6925
|
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, {
|
|
6837
6926
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(papAnchor),
|
|
6838
|
-
"onUpdate:modelValue": _cache[
|
|
6927
|
+
"onUpdate:modelValue": _cache[15] || (_cache[15] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(papAnchor) ? papAnchor.value = $event : papAnchor = $event),
|
|
6839
6928
|
onChange: changeMapContainerSize
|
|
6840
6929
|
}, {
|
|
6841
6930
|
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, {
|
|
@@ -6859,7 +6948,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6859
6948
|
}, {
|
|
6860
6949
|
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, {
|
|
6861
6950
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(imageType),
|
|
6862
|
-
"onUpdate:modelValue": _cache[
|
|
6951
|
+
"onUpdate:modelValue": _cache[16] || (_cache[16] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(imageType) ? imageType.value = $event : imageType = $event)
|
|
6863
6952
|
}, {
|
|
6864
6953
|
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, {
|
|
6865
6954
|
value: "png"
|
|
@@ -6883,7 +6972,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6883
6972
|
_: 1 /* STABLE */
|
|
6884
6973
|
}, 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, {
|
|
6885
6974
|
type: "primary",
|
|
6886
|
-
onClick: _cache[
|
|
6975
|
+
onClick: _cache[17] || (_cache[17] = $event => getPic()),
|
|
6887
6976
|
loading: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(loadState)
|
|
6888
6977
|
}, {
|
|
6889
6978
|
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 */)]),
|
|
@@ -6936,7 +7025,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6936
7025
|
}, {
|
|
6937
7026
|
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, {
|
|
6938
7027
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.title,
|
|
6939
|
-
"onUpdate:modelValue": _cache[
|
|
7028
|
+
"onUpdate:modelValue": _cache[19] || (_cache[19] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.title = $event)
|
|
6940
7029
|
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
6941
7030
|
_: 1 /* STABLE */
|
|
6942
7031
|
}, 8 /* PROPS */, ["label"])]),
|
|
@@ -6952,7 +7041,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6952
7041
|
}, {
|
|
6953
7042
|
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, {
|
|
6954
7043
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontFamily,
|
|
6955
|
-
"onUpdate:modelValue": _cache[
|
|
7044
|
+
"onUpdate:modelValue": _cache[20] || (_cache[20] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontFamily = $event),
|
|
6956
7045
|
placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).pleaseselect,
|
|
6957
7046
|
style: {
|
|
6958
7047
|
"width": "100%"
|
|
@@ -6984,7 +7073,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6984
7073
|
}, {
|
|
6985
7074
|
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, {
|
|
6986
7075
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontSize,
|
|
6987
|
-
"onUpdate:modelValue": _cache[
|
|
7076
|
+
"onUpdate:modelValue": _cache[21] || (_cache[21] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontSize = $event),
|
|
6988
7077
|
placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).fontsize
|
|
6989
7078
|
}, {
|
|
6990
7079
|
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 => {
|
|
@@ -7014,7 +7103,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7014
7103
|
}, {
|
|
7015
7104
|
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, {
|
|
7016
7105
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.color,
|
|
7017
|
-
"onUpdate:modelValue": _cache[
|
|
7106
|
+
"onUpdate:modelValue": _cache[22] || (_cache[22] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.color = $event),
|
|
7018
7107
|
"show-alpha": ""
|
|
7019
7108
|
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
7020
7109
|
_: 1 /* STABLE */
|
|
@@ -7031,7 +7120,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7031
7120
|
}, {
|
|
7032
7121
|
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, {
|
|
7033
7122
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.backgroundColor,
|
|
7034
|
-
"onUpdate:modelValue": _cache[
|
|
7123
|
+
"onUpdate:modelValue": _cache[23] || (_cache[23] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.backgroundColor = $event),
|
|
7035
7124
|
"show-alpha": ""
|
|
7036
7125
|
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
7037
7126
|
_: 1 /* STABLE */
|
|
@@ -7045,7 +7134,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7045
7134
|
}, {
|
|
7046
7135
|
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, {
|
|
7047
7136
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.shadowShowBg,
|
|
7048
|
-
"onUpdate:modelValue": _cache[
|
|
7137
|
+
"onUpdate:modelValue": _cache[24] || (_cache[24] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.shadowShowBg = $event),
|
|
7049
7138
|
"show-alpha": ""
|
|
7050
7139
|
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
7051
7140
|
_: 1 /* STABLE */
|
|
@@ -7056,7 +7145,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7056
7145
|
}, {
|
|
7057
7146
|
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, {
|
|
7058
7147
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.shadowShow,
|
|
7059
|
-
"onUpdate:modelValue": _cache[
|
|
7148
|
+
"onUpdate:modelValue": _cache[25] || (_cache[25] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.shadowShow = $event)
|
|
7060
7149
|
}, {
|
|
7061
7150
|
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 */)]),
|
|
7062
7151
|
_: 1 /* STABLE */
|
|
@@ -7066,7 +7155,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7066
7155
|
_: 1 /* STABLE */
|
|
7067
7156
|
}), (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, {
|
|
7068
7157
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.titleShow,
|
|
7069
|
-
"onUpdate:modelValue": _cache[
|
|
7158
|
+
"onUpdate:modelValue": _cache[26] || (_cache[26] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.titleShow = $event)
|
|
7070
7159
|
}, {
|
|
7071
7160
|
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 */)]),
|
|
7072
7161
|
_: 1 /* STABLE */
|
|
@@ -7096,7 +7185,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7096
7185
|
}, {
|
|
7097
7186
|
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, {
|
|
7098
7187
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).companyName,
|
|
7099
|
-
"onUpdate:modelValue": _cache[
|
|
7188
|
+
"onUpdate:modelValue": _cache[27] || (_cache[27] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).companyName = $event)
|
|
7100
7189
|
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
7101
7190
|
_: 1 /* STABLE */
|
|
7102
7191
|
}, 8 /* PROPS */, ["label"])]),
|
|
@@ -7112,7 +7201,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7112
7201
|
}, {
|
|
7113
7202
|
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, {
|
|
7114
7203
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).printDate,
|
|
7115
|
-
"onUpdate:modelValue": _cache[
|
|
7204
|
+
"onUpdate:modelValue": _cache[28] || (_cache[28] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).printDate = $event),
|
|
7116
7205
|
type: "date",
|
|
7117
7206
|
clearable: false,
|
|
7118
7207
|
editable: false,
|
|
@@ -7133,7 +7222,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7133
7222
|
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, {
|
|
7134
7223
|
class: "btnStyle",
|
|
7135
7224
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(printCompanyShow),
|
|
7136
|
-
"onUpdate:modelValue": _cache[
|
|
7225
|
+
"onUpdate:modelValue": _cache[29] || (_cache[29] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(printCompanyShow) ? printCompanyShow.value = $event : printCompanyShow = $event)
|
|
7137
7226
|
}, {
|
|
7138
7227
|
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 */)]),
|
|
7139
7228
|
_: 1 /* STABLE */
|
|
@@ -7145,7 +7234,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7145
7234
|
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, {
|
|
7146
7235
|
class: "btnStyle",
|
|
7147
7236
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(printdataShow),
|
|
7148
|
-
"onUpdate:modelValue": _cache[
|
|
7237
|
+
"onUpdate:modelValue": _cache[30] || (_cache[30] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(printdataShow) ? printdataShow.value = $event : printdataShow = $event)
|
|
7149
7238
|
}, {
|
|
7150
7239
|
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 */)]),
|
|
7151
7240
|
_: 1 /* STABLE */
|
|
@@ -7175,7 +7264,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7175
7264
|
}, {
|
|
7176
7265
|
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, {
|
|
7177
7266
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontFamily,
|
|
7178
|
-
"onUpdate:modelValue": _cache[
|
|
7267
|
+
"onUpdate:modelValue": _cache[31] || (_cache[31] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontFamily = $event),
|
|
7179
7268
|
placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).pleaseselect,
|
|
7180
7269
|
style: {
|
|
7181
7270
|
"width": "100%"
|
|
@@ -7203,7 +7292,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7203
7292
|
}, {
|
|
7204
7293
|
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, {
|
|
7205
7294
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontSize,
|
|
7206
|
-
"onUpdate:modelValue": _cache[
|
|
7295
|
+
"onUpdate:modelValue": _cache[32] || (_cache[32] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontSize = $event),
|
|
7207
7296
|
placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).fontsize
|
|
7208
7297
|
}, {
|
|
7209
7298
|
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 => {
|
|
@@ -7233,7 +7322,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7233
7322
|
}, {
|
|
7234
7323
|
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, {
|
|
7235
7324
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.color,
|
|
7236
|
-
"onUpdate:modelValue": _cache[
|
|
7325
|
+
"onUpdate:modelValue": _cache[33] || (_cache[33] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.color = $event),
|
|
7237
7326
|
"show-alpha": ""
|
|
7238
7327
|
}, null, 8 /* PROPS */, ["modelValue"])])]),
|
|
7239
7328
|
_: 1 /* STABLE */
|
|
@@ -7250,7 +7339,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7250
7339
|
rows: "12",
|
|
7251
7340
|
placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).pleaseentercontent,
|
|
7252
7341
|
spellcheck: "false",
|
|
7253
|
-
"onUpdate:modelValue": _cache[
|
|
7342
|
+
"onUpdate:modelValue": _cache[34] || (_cache[34] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).data.labelValue = $event),
|
|
7254
7343
|
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)
|
|
7255
7344
|
}, 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]])]),
|
|
7256
7345
|
_: 1 /* STABLE */
|
|
@@ -7434,7 +7523,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7434
7523
|
circle: "",
|
|
7435
7524
|
icon: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_namespaceObject.CircleClose),
|
|
7436
7525
|
title: _ctx.$t('webgl.printclearimg'),
|
|
7437
|
-
onClick: _cache[
|
|
7526
|
+
onClick: _cache[35] || (_cache[35] = $event => handleDeleteCenterPic()),
|
|
7438
7527
|
style: {
|
|
7439
7528
|
"margin-left": "32px"
|
|
7440
7529
|
}
|
|
@@ -7453,7 +7542,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7453
7542
|
}, {
|
|
7454
7543
|
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, {
|
|
7455
7544
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).width,
|
|
7456
|
-
"onUpdate:modelValue": _cache[
|
|
7545
|
+
"onUpdate:modelValue": _cache[36] || (_cache[36] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).width = $event),
|
|
7457
7546
|
min: 0,
|
|
7458
7547
|
"controls-position": "right",
|
|
7459
7548
|
onChange: _ctx.onChangecenterImg
|
|
@@ -7472,7 +7561,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7472
7561
|
}, {
|
|
7473
7562
|
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, {
|
|
7474
7563
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).height,
|
|
7475
|
-
"onUpdate:modelValue": _cache[
|
|
7564
|
+
"onUpdate:modelValue": _cache[37] || (_cache[37] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).height = $event),
|
|
7476
7565
|
min: 0,
|
|
7477
7566
|
"controls-position": "right",
|
|
7478
7567
|
onChange: _ctx.onChangecenterImg
|
|
@@ -7518,10 +7607,10 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7518
7607
|
options: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).options,
|
|
7519
7608
|
service: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).service,
|
|
7520
7609
|
scenceInfo: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).scenceInfo,
|
|
7521
|
-
showToolButtons:
|
|
7610
|
+
showToolButtons: false,
|
|
7522
7611
|
defaultShowLayerNames: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).defaultShowLayerNames,
|
|
7523
|
-
|
|
7524
|
-
|
|
7612
|
+
showLogo: false,
|
|
7613
|
+
isInitDrawManager: false,
|
|
7525
7614
|
style: {
|
|
7526
7615
|
"position": "relative"
|
|
7527
7616
|
}
|
|
@@ -7593,7 +7682,20 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7593
7682
|
}, null, 8 /* PROPS */, _hoisted_43)], 32 /* HYDRATE_EVENTS */);
|
|
7594
7683
|
}), 128 /* KEYED_FRAGMENT */))]),
|
|
7595
7684
|
_: 1 /* STABLE */
|
|
7596
|
-
}, 8 /* PROPS */, ["options", "service", "scenceInfo", "
|
|
7685
|
+
}, 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, {
|
|
7686
|
+
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, {
|
|
7687
|
+
span: 12
|
|
7688
|
+
}, {
|
|
7689
|
+
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)]])]),
|
|
7690
|
+
_: 1 /* STABLE */
|
|
7691
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
7692
|
+
span: 12
|
|
7693
|
+
}, {
|
|
7694
|
+
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)]])]),
|
|
7695
|
+
_: 1 /* STABLE */
|
|
7696
|
+
})]),
|
|
7697
|
+
_: 1 /* STABLE */
|
|
7698
|
+
})])], 512 /* NEED_PATCH */)]),
|
|
7597
7699
|
_: 1 /* STABLE */
|
|
7598
7700
|
})], 512 /* NEED_PATCH */)], 512 /* NEED_PATCH */);
|
|
7599
7701
|
};
|
|
@@ -15383,6 +15485,13 @@ class Heatmap3dViewModel {
|
|
|
15383
15485
|
if (this._options.gradient) this._heatmap.gradient = this._options.gradient;
|
|
15384
15486
|
this._viewer.scene.primitives.add(this._heatmap);
|
|
15385
15487
|
this._heatmap && this._heatmap.setData(heatmapData);
|
|
15488
|
+
if (this._heatmap) {
|
|
15489
|
+
this._heatmap.readyPromise.then(() => {
|
|
15490
|
+
this._viewer.camera.flyTo({
|
|
15491
|
+
destination: this._heatmap._rectangle
|
|
15492
|
+
});
|
|
15493
|
+
});
|
|
15494
|
+
}
|
|
15386
15495
|
}
|
|
15387
15496
|
// 创建二维热力图对象
|
|
15388
15497
|
initHeatmap2d(heatmapData) {
|
|
@@ -15407,6 +15516,9 @@ class Heatmap3dViewModel {
|
|
|
15407
15516
|
show: this._options.heatmapType == "2D" ? this._options.isShow : false
|
|
15408
15517
|
});
|
|
15409
15518
|
this._viewer.imageryLayers.add(this._heatmap2dCountLayer);
|
|
15519
|
+
this._viewer.camera.flyTo({
|
|
15520
|
+
destination: Cesium.Rectangle.fromDegrees(extent[0], extent[1], extent[2], extent[3])
|
|
15521
|
+
});
|
|
15410
15522
|
}
|
|
15411
15523
|
// 切换二维数据
|
|
15412
15524
|
changeHeatmap2d() {
|
|
@@ -16248,17 +16360,16 @@ const Heatmap3dvue_type_script_setup_true_lang_js_default_ = {
|
|
|
16248
16360
|
ref_key: "headerTempRef",
|
|
16249
16361
|
ref: headerTempRef
|
|
16250
16362
|
}, 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, {
|
|
16251
|
-
gutter: 20,
|
|
16252
16363
|
class: "rowClass"
|
|
16253
16364
|
}, {
|
|
16254
16365
|
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, {
|
|
16255
|
-
span:
|
|
16366
|
+
span: 7,
|
|
16256
16367
|
class: "colClass"
|
|
16257
16368
|
}, {
|
|
16258
16369
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", Heatmap3dvue_type_script_setup_true_lang_js_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 */)]),
|
|
16259
16370
|
_: 1 /* STABLE */
|
|
16260
16371
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
16261
|
-
span:
|
|
16372
|
+
span: 17
|
|
16262
16373
|
}, {
|
|
16263
16374
|
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, {
|
|
16264
16375
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).dataPath,
|
|
@@ -16289,17 +16400,16 @@ const Heatmap3dvue_type_script_setup_true_lang_js_default_ = {
|
|
|
16289
16400
|
})]),
|
|
16290
16401
|
_: 1 /* STABLE */
|
|
16291
16402
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
16292
|
-
gutter: 20,
|
|
16293
16403
|
class: "rowClass"
|
|
16294
16404
|
}, {
|
|
16295
16405
|
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, {
|
|
16296
|
-
span:
|
|
16406
|
+
span: 7,
|
|
16297
16407
|
class: "colClass"
|
|
16298
16408
|
}, {
|
|
16299
16409
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", Heatmap3dvue_type_script_setup_true_lang_js_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 */)]),
|
|
16300
16410
|
_: 1 /* STABLE */
|
|
16301
16411
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
16302
|
-
span:
|
|
16412
|
+
span: 17
|
|
16303
16413
|
}, {
|
|
16304
16414
|
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, {
|
|
16305
16415
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).heatmapType,
|
|
@@ -16309,7 +16419,7 @@ const Heatmap3dvue_type_script_setup_true_lang_js_default_ = {
|
|
|
16309
16419
|
label: "3D",
|
|
16310
16420
|
onChange: _cache[2] || (_cache[2] = $event => paramsChanged('heatmapType'))
|
|
16311
16421
|
}, {
|
|
16312
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)(
|
|
16422
|
+
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 */)]),
|
|
16313
16423
|
_: 1 /* STABLE */
|
|
16314
16424
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_radio, {
|
|
16315
16425
|
label: "2D",
|
|
@@ -16557,7 +16667,7 @@ const Heatmap3dvue_type_script_setup_true_lang_js_default_ = {
|
|
|
16557
16667
|
_: 1 /* STABLE */
|
|
16558
16668
|
}), (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, {
|
|
16559
16669
|
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, {
|
|
16560
|
-
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).height
|
|
16670
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).height + '(m)'
|
|
16561
16671
|
}, {
|
|
16562
16672
|
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, {
|
|
16563
16673
|
style: {
|