@kq_npm/client3d_webgl_vue 4.5.10 → 4.5.11
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/adddata/index.js +2 -0
- package/clientPrint/index.js +1014 -121
- package/clientPrint/style/clientPrint.css +1 -1
- package/index.js +1006 -136
- package/package.json +1 -1
- package/sceneview/index.js +1013 -120
- package/sceneview/style/sceneview.css +1 -1
- package/style.css +1 -1
package/index.js
CHANGED
|
@@ -11203,21 +11203,6 @@ class LayerManager {
|
|
|
11203
11203
|
}
|
|
11204
11204
|
}
|
|
11205
11205
|
}, this);
|
|
11206
|
-
//图层删除后如果没有czml图层需要隐藏时间轴
|
|
11207
|
-
let hasCzml = false;
|
|
11208
|
-
for (var j = 0; j < this._layerListData.length; j++) {
|
|
11209
|
-
if (this._layerListData[j].addType == "czml") {
|
|
11210
|
-
hasCzml = true;
|
|
11211
|
-
break;
|
|
11212
|
-
}
|
|
11213
|
-
}
|
|
11214
|
-
if (!hasCzml) {
|
|
11215
|
-
if (this._viewer.timeline.container.style.display == 'block') {
|
|
11216
|
-
this._viewer.bottomContainer.style.bottom = '0px';
|
|
11217
|
-
this._viewer.timeline.container.style.display = 'none';
|
|
11218
|
-
this._viewer.clock.shouldAnimate = false;
|
|
11219
|
-
}
|
|
11220
|
-
}
|
|
11221
11206
|
}
|
|
11222
11207
|
}
|
|
11223
11208
|
|
|
@@ -11247,6 +11232,15 @@ class LayerManager {
|
|
|
11247
11232
|
this._viewer.scene.primitives.remove(layer);
|
|
11248
11233
|
break;
|
|
11249
11234
|
case "datasource":
|
|
11235
|
+
if (layer instanceof Cesium.CzmlDataSource) {
|
|
11236
|
+
// 删除czml图层时隐藏时间轴
|
|
11237
|
+
if (this._viewer.timeline.container.style.display == 'block') {
|
|
11238
|
+
this._viewer.bottomContainer.style.bottom = '0px';
|
|
11239
|
+
this._viewer.timeline.container.style.display = 'none';
|
|
11240
|
+
this._viewer.animation.container.style.display = 'none';
|
|
11241
|
+
this._viewer.clock.shouldAnimate = false;
|
|
11242
|
+
}
|
|
11243
|
+
}
|
|
11250
11244
|
this._viewer.dataSources.remove(layer);
|
|
11251
11245
|
break;
|
|
11252
11246
|
case "dataflowlayer":
|
|
@@ -11382,8 +11376,8 @@ class SceneViewViewModel extends (mitt_default()) {
|
|
|
11382
11376
|
imageryProvider: new Cesium.SingleTileImageryProvider({
|
|
11383
11377
|
url: Cesium.buildModuleUrl("Assets/Textures/earth_color_low_4096.jpg")
|
|
11384
11378
|
}),
|
|
11385
|
-
animation:
|
|
11386
|
-
timeline: true,
|
|
11379
|
+
// animation: true,
|
|
11380
|
+
// timeline: true,
|
|
11387
11381
|
baseLayerPicker: false,
|
|
11388
11382
|
geocoder: false,
|
|
11389
11383
|
homeButton: false,
|
|
@@ -12539,15 +12533,165 @@ Compass.install = (Vue, opts) => {
|
|
|
12539
12533
|
Vue.component(Compass.name, Compass);
|
|
12540
12534
|
};
|
|
12541
12535
|
|
|
12536
|
+
// EXTERNAL MODULE: external "core-js/modules/esnext.iterator.map.js"
|
|
12537
|
+
var esnext_iterator_map_js_ = __webpack_require__(224);
|
|
12538
|
+
// EXTERNAL MODULE: external "core-js/modules/web.url-search-params.delete.js"
|
|
12539
|
+
var web_url_search_params_delete_js_ = __webpack_require__(411);
|
|
12540
|
+
// EXTERNAL MODULE: external "core-js/modules/web.url-search-params.has.js"
|
|
12541
|
+
var web_url_search_params_has_js_ = __webpack_require__(168);
|
|
12542
|
+
// EXTERNAL MODULE: external "core-js/modules/web.url-search-params.size.js"
|
|
12543
|
+
var web_url_search_params_size_js_ = __webpack_require__(217);
|
|
12542
12544
|
;// CONCATENATED MODULE: external "html2canvas"
|
|
12543
12545
|
var external_html2canvas_namespaceObject = require("html2canvas");
|
|
12544
12546
|
var external_html2canvas_default = /*#__PURE__*/__webpack_require__.n(external_html2canvas_namespaceObject);
|
|
12545
12547
|
// EXTERNAL MODULE: ./public/libs/kqwebclient/leaflet/3rd-libs/vue3-print-nb/vue3-print-nb.umd.js
|
|
12546
12548
|
var vue3_print_nb_umd = __webpack_require__(675);
|
|
12547
12549
|
var vue3_print_nb_umd_default = /*#__PURE__*/__webpack_require__.n(vue3_print_nb_umd);
|
|
12550
|
+
// EXTERNAL MODULE: external "core-js/modules/esnext.iterator.filter.js"
|
|
12551
|
+
var esnext_iterator_filter_js_ = __webpack_require__(602);
|
|
12552
|
+
;// CONCATENATED MODULE: ./src/webgl/clientPrint/ClientPrintViewModel.js
|
|
12553
|
+
|
|
12554
|
+
|
|
12555
|
+
|
|
12556
|
+
|
|
12557
|
+
|
|
12558
|
+
/**
|
|
12559
|
+
* Author: zqp
|
|
12560
|
+
* Date: 2022-12-06
|
|
12561
|
+
* Description: 客户端打印
|
|
12562
|
+
*/
|
|
12563
|
+
|
|
12564
|
+
|
|
12565
|
+
|
|
12566
|
+
|
|
12567
|
+
|
|
12568
|
+
/**
|
|
12569
|
+
* @class ClientPrintViewModel
|
|
12570
|
+
* @classdesc 客户端打印
|
|
12571
|
+
* @param {string} props.mapTarget map对象渲染的div的id
|
|
12572
|
+
*/
|
|
12573
|
+
class ClientPrintViewModel extends (mitt_default()) {
|
|
12574
|
+
constructor(mapTarget) {
|
|
12575
|
+
super();
|
|
12576
|
+
/**
|
|
12577
|
+
* 绑定地图的target,可为“”
|
|
12578
|
+
* @type {string}
|
|
12579
|
+
* @private
|
|
12580
|
+
*/
|
|
12581
|
+
this._mapTarget = mapTarget;
|
|
12582
|
+
/**
|
|
12583
|
+
* 要打印的地图
|
|
12584
|
+
* @type {string}
|
|
12585
|
+
* @private
|
|
12586
|
+
*/
|
|
12587
|
+
this.webMap = null;
|
|
12588
|
+
// 事件绑定this
|
|
12589
|
+
this._loadedSync = this._loadedSync.bind(this);
|
|
12590
|
+
}
|
|
12591
|
+
_loadedSync(e) {
|
|
12592
|
+
this.webMap = e;
|
|
12593
|
+
this.fire("getWebMap", {
|
|
12594
|
+
webMap: this.webMap
|
|
12595
|
+
});
|
|
12596
|
+
}
|
|
12597
|
+
|
|
12598
|
+
/**
|
|
12599
|
+
* 初始化打印组件,初始化地图
|
|
12600
|
+
*/
|
|
12601
|
+
openPrint() {
|
|
12602
|
+
gis_utils_.utils.getWebMap(this._mapTarget, this._loadedSync);
|
|
12603
|
+
}
|
|
12604
|
+
|
|
12605
|
+
/**
|
|
12606
|
+
* 获取图例
|
|
12607
|
+
*/
|
|
12608
|
+
getLengend() {
|
|
12609
|
+
let self = this;
|
|
12610
|
+
let maplayers = gis_utils_.mapLayerUtils.getLayerDataByLayerChecked("scencePrint");
|
|
12611
|
+
if (!maplayers) {
|
|
12612
|
+
self.fire("getLengend", {
|
|
12613
|
+
legend: []
|
|
12614
|
+
});
|
|
12615
|
+
return;
|
|
12616
|
+
}
|
|
12617
|
+
maplayers.forEach(layers => {
|
|
12618
|
+
if (layers.url.indexOf("/wmts") >= 0) {
|
|
12619
|
+
layers.url = (0,util_.getKQURLFromURL)(layers.url) + "/map";
|
|
12620
|
+
}
|
|
12621
|
+
});
|
|
12622
|
+
maplayers = maplayers.filter((layer, index, self) => {
|
|
12623
|
+
return !layer.isDataService;
|
|
12624
|
+
});
|
|
12625
|
+
if (maplayers.length <= 0) {
|
|
12626
|
+
self.fire("getLengend", {
|
|
12627
|
+
legend: []
|
|
12628
|
+
});
|
|
12629
|
+
return;
|
|
12630
|
+
}
|
|
12631
|
+
let serverurl = maplayers[0].url;
|
|
12632
|
+
let params = new KqGIS.Map.GetLegendParams({
|
|
12633
|
+
layerIds: maplayers.map(val => {
|
|
12634
|
+
return val.id;
|
|
12635
|
+
}),
|
|
12636
|
+
width: 24,
|
|
12637
|
+
height: 16,
|
|
12638
|
+
ua_token: maplayers[0].accessToken
|
|
12639
|
+
});
|
|
12640
|
+
let onSuccess = res => {
|
|
12641
|
+
if (res.result.resultcode === "success") {
|
|
12642
|
+
let legend = [];
|
|
12643
|
+
let order = 0;
|
|
12644
|
+
res.result.result.forEach(item => {
|
|
12645
|
+
item.items.forEach(e => {
|
|
12646
|
+
legend.push({
|
|
12647
|
+
id: item.layerId + "_" + e.legendName,
|
|
12648
|
+
legendName: e.legendName,
|
|
12649
|
+
src: `data:${item.contentType};base64,${e.data}`,
|
|
12650
|
+
isShow: true,
|
|
12651
|
+
order: order++
|
|
12652
|
+
});
|
|
12653
|
+
});
|
|
12654
|
+
});
|
|
12655
|
+
self.fire("getLengend", {
|
|
12656
|
+
legend
|
|
12657
|
+
});
|
|
12658
|
+
} else {
|
|
12659
|
+
self.fire("getLengend", {
|
|
12660
|
+
legend: []
|
|
12661
|
+
});
|
|
12662
|
+
}
|
|
12663
|
+
};
|
|
12664
|
+
let onFailed = error => {
|
|
12665
|
+
self.fire("getLengend", {
|
|
12666
|
+
legend: []
|
|
12667
|
+
});
|
|
12668
|
+
};
|
|
12669
|
+
let getLegendService = new KqGIS.Map.GetLegendService(serverurl, {
|
|
12670
|
+
eventListeners: {
|
|
12671
|
+
processCompleted: onSuccess,
|
|
12672
|
+
processFailed: onFailed
|
|
12673
|
+
}
|
|
12674
|
+
});
|
|
12675
|
+
getLegendService.processAsync(params);
|
|
12676
|
+
}
|
|
12677
|
+
|
|
12678
|
+
/**
|
|
12679
|
+
* 销毁执行方法。删除所有事件监听
|
|
12680
|
+
*/
|
|
12681
|
+
destroy() {
|
|
12682
|
+
this.off();
|
|
12683
|
+
}
|
|
12684
|
+
}
|
|
12548
12685
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/clientPrint/ClientPrint.vue?vue&type=script&setup=true&lang=js
|
|
12549
12686
|
|
|
12550
12687
|
|
|
12688
|
+
|
|
12689
|
+
|
|
12690
|
+
|
|
12691
|
+
|
|
12692
|
+
|
|
12693
|
+
|
|
12694
|
+
|
|
12551
12695
|
const ClientPrintvue_type_script_setup_true_lang_js_hoisted_1 = {
|
|
12552
12696
|
class: "kq3d-client-print-wrapper",
|
|
12553
12697
|
ref: "clientRef"
|
|
@@ -12565,65 +12709,124 @@ const _hoisted_5 = {
|
|
|
12565
12709
|
class: "title"
|
|
12566
12710
|
};
|
|
12567
12711
|
const _hoisted_6 = {
|
|
12568
|
-
class: "
|
|
12712
|
+
class: "title"
|
|
12569
12713
|
};
|
|
12570
12714
|
const _hoisted_7 = {
|
|
12715
|
+
class: "title"
|
|
12716
|
+
};
|
|
12717
|
+
const _hoisted_8 = {
|
|
12718
|
+
class: "title"
|
|
12719
|
+
};
|
|
12720
|
+
const _hoisted_9 = {
|
|
12721
|
+
class: "select-content-inner"
|
|
12722
|
+
};
|
|
12723
|
+
const _hoisted_10 = {
|
|
12571
12724
|
style: {
|
|
12572
12725
|
"text-align": "right"
|
|
12573
12726
|
}
|
|
12574
12727
|
};
|
|
12575
|
-
const
|
|
12728
|
+
const _hoisted_11 = {
|
|
12576
12729
|
class: "title"
|
|
12577
12730
|
};
|
|
12578
|
-
const
|
|
12731
|
+
const _hoisted_12 = {
|
|
12579
12732
|
class: "select-layer-content"
|
|
12580
12733
|
};
|
|
12581
|
-
const
|
|
12734
|
+
const _hoisted_13 = {
|
|
12582
12735
|
class: "title"
|
|
12583
12736
|
};
|
|
12584
|
-
const
|
|
12737
|
+
const _hoisted_14 = {
|
|
12585
12738
|
class: "select-content-inner"
|
|
12586
12739
|
};
|
|
12587
|
-
const
|
|
12740
|
+
const _hoisted_15 = {
|
|
12588
12741
|
style: {
|
|
12589
12742
|
"float": "right"
|
|
12590
12743
|
}
|
|
12591
12744
|
};
|
|
12592
|
-
const
|
|
12745
|
+
const _hoisted_16 = {
|
|
12593
12746
|
class: "clientprint-title"
|
|
12594
12747
|
};
|
|
12595
|
-
const
|
|
12748
|
+
const _hoisted_17 = {
|
|
12596
12749
|
class: "title"
|
|
12597
12750
|
};
|
|
12598
|
-
const
|
|
12751
|
+
const _hoisted_18 = {
|
|
12599
12752
|
class: "select-content-inner"
|
|
12600
12753
|
};
|
|
12601
|
-
const
|
|
12602
|
-
|
|
12754
|
+
const _hoisted_19 = {
|
|
12755
|
+
class: "title"
|
|
12756
|
+
};
|
|
12757
|
+
const _hoisted_20 = {
|
|
12758
|
+
class: "select-content-inner"
|
|
12759
|
+
};
|
|
12760
|
+
const _hoisted_21 = ["placeholder"];
|
|
12761
|
+
const _hoisted_22 = {
|
|
12603
12762
|
class: "btn"
|
|
12604
12763
|
};
|
|
12605
|
-
const
|
|
12764
|
+
const _hoisted_23 = {
|
|
12765
|
+
class: "title"
|
|
12766
|
+
};
|
|
12767
|
+
const _hoisted_24 = {
|
|
12768
|
+
class: "select-content-inner"
|
|
12769
|
+
};
|
|
12770
|
+
const _hoisted_25 = {
|
|
12771
|
+
class: "legendTip"
|
|
12772
|
+
};
|
|
12773
|
+
const _hoisted_26 = {
|
|
12774
|
+
class: "legendtree"
|
|
12775
|
+
};
|
|
12776
|
+
const _hoisted_27 = {
|
|
12777
|
+
class: "tabPaneTreeDiv"
|
|
12778
|
+
};
|
|
12779
|
+
const _hoisted_28 = {
|
|
12780
|
+
class: "title"
|
|
12781
|
+
};
|
|
12782
|
+
const _hoisted_29 = {
|
|
12783
|
+
class: "select-content-inner"
|
|
12784
|
+
};
|
|
12785
|
+
const _hoisted_30 = {
|
|
12786
|
+
style: {
|
|
12787
|
+
"height": "300px"
|
|
12788
|
+
}
|
|
12789
|
+
};
|
|
12790
|
+
const _hoisted_31 = {
|
|
12791
|
+
class: "tableleft"
|
|
12792
|
+
};
|
|
12793
|
+
const _hoisted_32 = ["src"];
|
|
12794
|
+
const _hoisted_33 = {
|
|
12795
|
+
style: {
|
|
12796
|
+
"height": "300px"
|
|
12797
|
+
}
|
|
12798
|
+
};
|
|
12799
|
+
const _hoisted_34 = ["src"];
|
|
12800
|
+
const _hoisted_35 = {
|
|
12606
12801
|
class: "show-right-box-btn"
|
|
12607
12802
|
};
|
|
12608
|
-
const
|
|
12803
|
+
const _hoisted_36 = {
|
|
12609
12804
|
class: "btn-group"
|
|
12610
12805
|
};
|
|
12611
|
-
const
|
|
12806
|
+
const _hoisted_37 = {
|
|
12612
12807
|
class: "kq3d-client-print-titleContainerDiv"
|
|
12613
12808
|
};
|
|
12614
|
-
const
|
|
12809
|
+
const _hoisted_38 = {
|
|
12615
12810
|
class: "baseImage"
|
|
12616
12811
|
};
|
|
12617
|
-
const
|
|
12618
|
-
const
|
|
12619
|
-
|
|
12620
|
-
|
|
12812
|
+
const _hoisted_39 = ["src"];
|
|
12813
|
+
const _hoisted_40 = {
|
|
12814
|
+
key: 0,
|
|
12815
|
+
class: "lengendTitle"
|
|
12816
|
+
};
|
|
12817
|
+
const _hoisted_41 = {
|
|
12818
|
+
class: "legend-panel"
|
|
12819
|
+
};
|
|
12820
|
+
const _hoisted_42 = ["src"];
|
|
12821
|
+
const _hoisted_43 = ["id"];
|
|
12822
|
+
const _hoisted_44 = ["onClick"];
|
|
12823
|
+
const _hoisted_45 = {
|
|
12621
12824
|
class: "kq3d-client-print-infomationContainer"
|
|
12622
12825
|
};
|
|
12623
|
-
const
|
|
12826
|
+
const _hoisted_46 = {
|
|
12624
12827
|
class: "kq3d-client-print-companyName"
|
|
12625
12828
|
};
|
|
12626
|
-
const
|
|
12829
|
+
const _hoisted_47 = {
|
|
12627
12830
|
class: "kq3d-client-print-systemTime"
|
|
12628
12831
|
};
|
|
12629
12832
|
|
|
@@ -12633,6 +12836,7 @@ const _hoisted_27 = {
|
|
|
12633
12836
|
|
|
12634
12837
|
|
|
12635
12838
|
|
|
12839
|
+
|
|
12636
12840
|
const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
12637
12841
|
name: "Kq3dClientPrint"
|
|
12638
12842
|
};
|
|
@@ -12704,11 +12908,12 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
12704
12908
|
//国际化
|
|
12705
12909
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
12706
12910
|
language.value = messages.value[newVal]["webgl"];
|
|
12707
|
-
|
|
12911
|
+
setFooterDataform.value["companyName"] = props.companyName || language.value.comapanyname;
|
|
12708
12912
|
systemTime.value = newVal == "zh" ? getSystemIime() : getSystemEnTime();
|
|
12709
12913
|
printObj.value.popTitle = language.value.print;
|
|
12710
12914
|
});
|
|
12711
12915
|
const props = __props;
|
|
12916
|
+
// 标题的数据
|
|
12712
12917
|
let setTitleDataform = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)({
|
|
12713
12918
|
style: {
|
|
12714
12919
|
fontSize: "18px",
|
|
@@ -12726,6 +12931,12 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
12726
12931
|
titleShow: true
|
|
12727
12932
|
}
|
|
12728
12933
|
});
|
|
12934
|
+
let viewModel = null;
|
|
12935
|
+
// 页脚的数据对象
|
|
12936
|
+
let setFooterDataform = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)({
|
|
12937
|
+
companyName: props.companyName,
|
|
12938
|
+
printDate: new Date()
|
|
12939
|
+
});
|
|
12729
12940
|
// 文本的数据
|
|
12730
12941
|
let setLabelDataform = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)({
|
|
12731
12942
|
style: {
|
|
@@ -12741,6 +12952,12 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
12741
12952
|
labelValue: ""
|
|
12742
12953
|
}
|
|
12743
12954
|
});
|
|
12955
|
+
//中心点图片
|
|
12956
|
+
let centerPicData = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)({
|
|
12957
|
+
img: "",
|
|
12958
|
+
width: 32,
|
|
12959
|
+
height: 32
|
|
12960
|
+
});
|
|
12744
12961
|
let cameraToImage = null;
|
|
12745
12962
|
// 组件容器
|
|
12746
12963
|
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
@@ -12754,8 +12971,15 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
12754
12971
|
let selectLayerBoxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
12755
12972
|
// 样式设置容器
|
|
12756
12973
|
let selectTitleBoxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
12974
|
+
let selectFooterBoxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
12757
12975
|
// 添加文本容器
|
|
12758
12976
|
let selectTextBoxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
12977
|
+
//添加图片容器
|
|
12978
|
+
let selectImageBoxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
12979
|
+
//图例设置容器
|
|
12980
|
+
let selectLegendBoxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
12981
|
+
//中心点图片设置容器
|
|
12982
|
+
let selectCenterPicBoxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
12759
12983
|
//页面设置tab设置
|
|
12760
12984
|
const activeNames = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(["1"]);
|
|
12761
12985
|
// 控制主容器与图层选择容器的切换
|
|
@@ -12764,10 +12988,33 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
12764
12988
|
let isShowLayer = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
|
|
12765
12989
|
//标题设置显示控制
|
|
12766
12990
|
let isShowTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
|
|
12991
|
+
let isShowFooter = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
|
|
12767
12992
|
//添加文本显示控制
|
|
12768
12993
|
let isShowText = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
|
|
12994
|
+
//图例设置显示控制
|
|
12995
|
+
let isShowlegendSet = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
|
|
12996
|
+
//中心点图片设置显示控制
|
|
12997
|
+
let isCenterPicSet = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
|
|
12769
12998
|
// 边框样式
|
|
12770
12999
|
let borderStyleValue = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
13000
|
+
//边框样式下拉选择
|
|
13001
|
+
let borderStyleData = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)([{
|
|
13002
|
+
value: "printborder1",
|
|
13003
|
+
label: language.value.Template1
|
|
13004
|
+
}, {
|
|
13005
|
+
value: "printborder2",
|
|
13006
|
+
label: language.value.Template2
|
|
13007
|
+
}, {
|
|
13008
|
+
value: "printborder3",
|
|
13009
|
+
label: language.value.Template3
|
|
13010
|
+
}, {
|
|
13011
|
+
value: "printborder4",
|
|
13012
|
+
label: language.value.Template4
|
|
13013
|
+
}, {
|
|
13014
|
+
value: "printborder5",
|
|
13015
|
+
label: language.value.Template5
|
|
13016
|
+
}]);
|
|
13017
|
+
|
|
12771
13018
|
// 纸张设置
|
|
12772
13019
|
let sizeData = [[{
|
|
12773
13020
|
f: "A2",
|
|
@@ -12802,12 +13049,14 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
12802
13049
|
}, "a6HSize"]];
|
|
12803
13050
|
// 字体大小
|
|
12804
13051
|
let sizelist = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)([]);
|
|
12805
|
-
|
|
13052
|
+
let legendList = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)([]);
|
|
12806
13053
|
// 纸张类型
|
|
12807
13054
|
let papForm = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("A4"); // 默认
|
|
12808
13055
|
|
|
13056
|
+
let fileList = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)([]);
|
|
13057
|
+
let isshowopacity = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
|
|
12809
13058
|
// 纸张方向
|
|
12810
|
-
let papAnchor = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(
|
|
13059
|
+
let papAnchor = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(language.value.portrait); // 默认
|
|
12811
13060
|
// 图片格式
|
|
12812
13061
|
let imageType = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("png");
|
|
12813
13062
|
//图例对象
|
|
@@ -12818,6 +13067,12 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
12818
13067
|
let scalesShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(true);
|
|
12819
13068
|
// 指北针的显示与隐藏
|
|
12820
13069
|
let compassShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
|
|
13070
|
+
//经纬度显示与隐藏
|
|
13071
|
+
let latlngShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(true);
|
|
13072
|
+
//网格的显示与隐藏
|
|
13073
|
+
let gridShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(true);
|
|
13074
|
+
let printdataShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(true);
|
|
13075
|
+
let printCompanyShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(true);
|
|
12821
13076
|
let isActive = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(0);
|
|
12822
13077
|
//打印内容div
|
|
12823
13078
|
let printContentDiv = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
@@ -12832,7 +13087,6 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
12832
13087
|
// 公司名
|
|
12833
13088
|
let companyName = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("");
|
|
12834
13089
|
let printState = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
|
|
12835
|
-
let printViewer = null;
|
|
12836
13090
|
// 打印对象
|
|
12837
13091
|
let printObj = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)({
|
|
12838
13092
|
id: "printMap",
|
|
@@ -12859,16 +13113,33 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
12859
13113
|
let scaleStep = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(0.2);
|
|
12860
13114
|
// 查询进度条
|
|
12861
13115
|
let loadState = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
|
|
13116
|
+
let isscrollTop = false;
|
|
13117
|
+
let treescroll_ref = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
13118
|
+
let treeLegend = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
13119
|
+
let treeCheckedData = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)([]);
|
|
13120
|
+
let legendChecked = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)([]);
|
|
13121
|
+
let legendOrder = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)([]);
|
|
13122
|
+
// 树绑定字段
|
|
13123
|
+
const defaultProps = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)({
|
|
13124
|
+
label: "legendName"
|
|
13125
|
+
});
|
|
13126
|
+
let _transform = {
|
|
13127
|
+
transform: null,
|
|
13128
|
+
viewBox: null
|
|
13129
|
+
};
|
|
13130
|
+
let centerMarker = null;
|
|
13131
|
+
let lonLatGridLineLayer = null;
|
|
12862
13132
|
// 三维球id
|
|
12863
13133
|
global_event_default().setWebMap("scencePrint", "cesium", null);
|
|
12864
13134
|
let scenceView_partent = null;
|
|
12865
|
-
|
|
13135
|
+
let scenceView_print = null;
|
|
12866
13136
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
13137
|
+
viewModel = new ClientPrintViewModel(props.mapTarget);
|
|
12867
13138
|
if (!props.useCustomData) {
|
|
12868
13139
|
global_event_default().getWebMapByMapTarget(props.mapTarget, scenceView => {
|
|
12869
13140
|
if (scenceView && scenceView._viewer) {
|
|
12870
13141
|
scenceView_partent = scenceView;
|
|
12871
|
-
|
|
13142
|
+
formItem = scenceView._props;
|
|
12872
13143
|
showMap.value = true;
|
|
12873
13144
|
}
|
|
12874
13145
|
});
|
|
@@ -12884,9 +13155,10 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
12884
13155
|
sizelist.value.push(i);
|
|
12885
13156
|
}
|
|
12886
13157
|
setLabelData.value = [];
|
|
13158
|
+
fileList.value = [];
|
|
12887
13159
|
global_event_default().getWebMapByMapTarget("scencePrint", scenceView => {
|
|
12888
13160
|
if (scenceView && scenceView._viewer) {
|
|
12889
|
-
|
|
13161
|
+
scenceView_print = scenceView;
|
|
12890
13162
|
if (!formItem.service && !formItem.scenceInfo) {
|
|
12891
13163
|
if (scenceView_partent) {
|
|
12892
13164
|
let _promises = [];
|
|
@@ -12899,11 +13171,13 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
12899
13171
|
_promises.push(promise);
|
|
12900
13172
|
}
|
|
12901
13173
|
}
|
|
12902
|
-
|
|
12903
|
-
|
|
12904
|
-
|
|
12905
|
-
|
|
12906
|
-
|
|
13174
|
+
if (_promises.length > 0) {
|
|
13175
|
+
Promise.all(_promises).then(() => {
|
|
13176
|
+
scenceView._layerManager._layerTreeData = scenceView._layerManager._layerListData;
|
|
13177
|
+
scenceView.fire("resetLayerDatas");
|
|
13178
|
+
});
|
|
13179
|
+
scenceView.setViewPosition(scenceView_partent.getViewPosition());
|
|
13180
|
+
}
|
|
12907
13181
|
}
|
|
12908
13182
|
}
|
|
12909
13183
|
initControl();
|
|
@@ -12913,11 +13187,23 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
12913
13187
|
});
|
|
12914
13188
|
}
|
|
12915
13189
|
});
|
|
13190
|
+
// 格式化时间
|
|
13191
|
+
formateDate();
|
|
12916
13192
|
});
|
|
12917
13193
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onBeforeUnmount)(() => {
|
|
12918
13194
|
destroy();
|
|
12919
13195
|
});
|
|
12920
|
-
|
|
13196
|
+
function formateDate() {
|
|
13197
|
+
if (locale.value === "zh") {
|
|
13198
|
+
var currentDate = setFooterDataform.value.printDate;
|
|
13199
|
+
var year = currentDate.getFullYear() + "";
|
|
13200
|
+
var month = currentDate.getMonth() + 1 + ""; // 月份从0开始,所以要加1
|
|
13201
|
+
var day = currentDate.getDate() + "";
|
|
13202
|
+
systemTime.value = year + "年" + month + "月" + day + "日";
|
|
13203
|
+
} else {
|
|
13204
|
+
systemTime.value = getSystemEnTime();
|
|
13205
|
+
}
|
|
13206
|
+
}
|
|
12921
13207
|
/**
|
|
12922
13208
|
* 获取当前时间
|
|
12923
13209
|
* @returns {string}
|
|
@@ -12978,8 +13264,11 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
12978
13264
|
}
|
|
12979
13265
|
return m[mn] + " " + dn + dns + "," + dt.getFullYear();
|
|
12980
13266
|
}
|
|
13267
|
+
function changePrintDate() {
|
|
13268
|
+
formateDate();
|
|
13269
|
+
}
|
|
12981
13270
|
function changStatusBar() {
|
|
12982
|
-
if (
|
|
13271
|
+
if (scenceView_print) scenceView_print._viewer.statusBar.show = scalesShow.value;
|
|
12983
13272
|
}
|
|
12984
13273
|
/**
|
|
12985
13274
|
* 显示切换
|
|
@@ -12992,6 +13281,9 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
12992
13281
|
isShowLayer.value = true;
|
|
12993
13282
|
isShowTitle.value = false;
|
|
12994
13283
|
isShowText.value = false;
|
|
13284
|
+
isShowlegendSet.value = false;
|
|
13285
|
+
isShowFooter.value = false;
|
|
13286
|
+
isCenterPicSet.value = false;
|
|
12995
13287
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
12996
13288
|
// settingBoxRef.value.style.height = `${selectLayerBoxRef.value.clientHeight}px`;
|
|
12997
13289
|
settingBoxRef.value.style.height = `${selectLayerBoxRef.value.clientHeight}px`;
|
|
@@ -13001,20 +13293,61 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13001
13293
|
isShowLayer.value = false;
|
|
13002
13294
|
isShowTitle.value = true;
|
|
13003
13295
|
isShowText.value = false;
|
|
13296
|
+
isShowlegendSet.value = false;
|
|
13297
|
+
isShowFooter.value = false;
|
|
13298
|
+
isCenterPicSet.value = false;
|
|
13004
13299
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
13005
13300
|
// settingBoxRef.value.style.height = `${selectTitleBoxRef.value.clientHeight}px`;
|
|
13006
13301
|
settingBoxRef.value.style.height = `${selectTitleBoxRef.value.clientHeight}px`;
|
|
13007
13302
|
});
|
|
13008
13303
|
}
|
|
13304
|
+
if (type === "footer") {
|
|
13305
|
+
isShowLayer.value = false;
|
|
13306
|
+
isShowTitle.value = false;
|
|
13307
|
+
isShowText.value = false;
|
|
13308
|
+
isShowlegendSet.value = false;
|
|
13309
|
+
isShowFooter.value = true;
|
|
13310
|
+
isCenterPicSet.value = false;
|
|
13311
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
13312
|
+
settingBoxRef.value.style.height = `${selectFooterBoxRef.value.clientHeight}px`;
|
|
13313
|
+
});
|
|
13314
|
+
}
|
|
13009
13315
|
if (type === "text") {
|
|
13010
13316
|
isShowLayer.value = false;
|
|
13011
13317
|
isShowTitle.value = false;
|
|
13012
13318
|
isShowText.value = true;
|
|
13319
|
+
isShowlegendSet.value = false;
|
|
13320
|
+
isShowFooter.value = false;
|
|
13321
|
+
isCenterPicSet.value = false;
|
|
13013
13322
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
13014
13323
|
// settingBoxRef.value.style.height = `${selectTextBoxRef.value.clientHeight}px`;
|
|
13015
13324
|
settingBoxRef.value.style.height = `${selectTextBoxRef.value.clientHeight}px`;
|
|
13016
13325
|
});
|
|
13017
13326
|
}
|
|
13327
|
+
if (type === "legend") {
|
|
13328
|
+
//图例
|
|
13329
|
+
isShowLayer.value = false;
|
|
13330
|
+
isShowTitle.value = false;
|
|
13331
|
+
isShowText.value = false;
|
|
13332
|
+
isShowlegendSet.value = true;
|
|
13333
|
+
isShowFooter.value = false;
|
|
13334
|
+
isCenterPicSet.value = false;
|
|
13335
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
13336
|
+
settingBoxRef.value.style.height = `${selectLegendBoxRef.value.clientHeight}px`;
|
|
13337
|
+
defaultLengnd();
|
|
13338
|
+
});
|
|
13339
|
+
}
|
|
13340
|
+
if (type === "center") {
|
|
13341
|
+
isShowLayer.value = false;
|
|
13342
|
+
isShowTitle.value = false;
|
|
13343
|
+
isShowText.value = false;
|
|
13344
|
+
isShowlegendSet.value = false;
|
|
13345
|
+
isShowFooter.value = false;
|
|
13346
|
+
isCenterPicSet.value = true;
|
|
13347
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
13348
|
+
settingBoxRef.value.style.height = `${selectCenterPicBoxRef.value.clientHeight}px`;
|
|
13349
|
+
});
|
|
13350
|
+
}
|
|
13018
13351
|
}
|
|
13019
13352
|
|
|
13020
13353
|
/**
|
|
@@ -13024,6 +13357,9 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13024
13357
|
isShowLayer.value = false;
|
|
13025
13358
|
isShowTitle.value = false;
|
|
13026
13359
|
isShowText.value = false;
|
|
13360
|
+
isShowFooter.value = false;
|
|
13361
|
+
isShowlegendSet.value = false;
|
|
13362
|
+
isCenterPicSet.value = false;
|
|
13027
13363
|
settingBoxRef.value.style.height = `${mainBoxRef.value.clientHeight}px`;
|
|
13028
13364
|
}
|
|
13029
13365
|
|
|
@@ -13244,15 +13580,113 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13244
13580
|
}, 1000);
|
|
13245
13581
|
}
|
|
13246
13582
|
|
|
13583
|
+
/**
|
|
13584
|
+
* 获取图例
|
|
13585
|
+
*/
|
|
13586
|
+
function getLengendList() {
|
|
13587
|
+
if (legendShow.value) {
|
|
13588
|
+
defaultLengnd();
|
|
13589
|
+
}
|
|
13590
|
+
}
|
|
13591
|
+
function defaultLengnd() {
|
|
13592
|
+
viewModel.once("getLengend", _data => {
|
|
13593
|
+
legendList.value = [];
|
|
13594
|
+
treeCheckedData.value = [];
|
|
13595
|
+
if (_data.legend.length > 0) {
|
|
13596
|
+
let _legendList = _data.legend;
|
|
13597
|
+
_legendList.forEach(list => {
|
|
13598
|
+
if (legendChecked.value.length > 0) {
|
|
13599
|
+
if (legendChecked.value.find(t => t.id == list.id)) {
|
|
13600
|
+
list.isShow = legendChecked.value.find(t => t.id == list.id).isShow;
|
|
13601
|
+
}
|
|
13602
|
+
}
|
|
13603
|
+
if (legendOrder.value.length > 0) {
|
|
13604
|
+
if (legendOrder.value.find(t => t.id == list.id)) {
|
|
13605
|
+
list.order = legendOrder.value.find(t => t.id == list.id).order;
|
|
13606
|
+
}
|
|
13607
|
+
}
|
|
13608
|
+
});
|
|
13609
|
+
legendList.value = _legendList;
|
|
13610
|
+
legendList.value = legendList.value.sort(compare("order"));
|
|
13611
|
+
for (let i = 0; i < _data.legend.length; i++) {
|
|
13612
|
+
if (_data.legend[i].isShow) {
|
|
13613
|
+
treeCheckedData.value.push(_data.legend[i].id);
|
|
13614
|
+
}
|
|
13615
|
+
}
|
|
13616
|
+
}
|
|
13617
|
+
});
|
|
13618
|
+
viewModel.getLengend();
|
|
13619
|
+
}
|
|
13620
|
+
/**
|
|
13621
|
+
* 对象属性排序比较
|
|
13622
|
+
* @param {string} property 要对比的属性值
|
|
13623
|
+
*/
|
|
13624
|
+
function compare(property) {
|
|
13625
|
+
return function (a, b) {
|
|
13626
|
+
var value1 = parseInt(a[property]);
|
|
13627
|
+
var value2 = parseInt(b[property]);
|
|
13628
|
+
return value1 - value2;
|
|
13629
|
+
};
|
|
13630
|
+
}
|
|
13247
13631
|
/**
|
|
13248
13632
|
* 显示图例
|
|
13249
13633
|
* @param {object} e
|
|
13250
13634
|
*/
|
|
13251
13635
|
function showLegend(e) {
|
|
13252
|
-
|
|
13253
|
-
|
|
13254
|
-
|
|
13636
|
+
getLengendList();
|
|
13637
|
+
}
|
|
13638
|
+
|
|
13639
|
+
/**
|
|
13640
|
+
* 上传事件
|
|
13641
|
+
* @param {object} file
|
|
13642
|
+
*/
|
|
13643
|
+
function clickUpload(file) {
|
|
13644
|
+
fileList.value.push({
|
|
13645
|
+
name: file.name,
|
|
13646
|
+
uid: file.uid,
|
|
13647
|
+
url: URL.createObjectURL(file.raw),
|
|
13648
|
+
width: 64,
|
|
13649
|
+
height: 64
|
|
13650
|
+
});
|
|
13651
|
+
}
|
|
13652
|
+
function clickUploadCenter(file) {
|
|
13653
|
+
centerPicData.value.img = URL.createObjectURL(file.raw);
|
|
13654
|
+
setCenterPic();
|
|
13655
|
+
}
|
|
13656
|
+
function setCenterPic() {
|
|
13657
|
+
if (centerPicData.value.img != "") {
|
|
13658
|
+
if (centerMarker) {
|
|
13659
|
+
centerMarker.remove();
|
|
13660
|
+
}
|
|
13661
|
+
let map = map2_ref.value.getWebMap().map;
|
|
13662
|
+
let src = centerPicData.value.img;
|
|
13663
|
+
let width = centerPicData.value.width;
|
|
13664
|
+
let height = centerPicData.value.height;
|
|
13665
|
+
var myIcon = L.icon({
|
|
13666
|
+
iconUrl: src,
|
|
13667
|
+
// 图标图片的URL
|
|
13668
|
+
iconSize: [width, height],
|
|
13669
|
+
iconAnchor: [width / 2, height / 2]
|
|
13255
13670
|
});
|
|
13671
|
+
centerMarker = L.marker([map.getCenter().lat, map.getCenter().lng], {
|
|
13672
|
+
icon: myIcon,
|
|
13673
|
+
draggable: false
|
|
13674
|
+
}).addTo(map);
|
|
13675
|
+
} else {
|
|
13676
|
+
if (centerMarker) {
|
|
13677
|
+
centerMarker.remove();
|
|
13678
|
+
}
|
|
13679
|
+
}
|
|
13680
|
+
}
|
|
13681
|
+
function handleDelete(row) {
|
|
13682
|
+
let index = fileList.value.findIndex(t => t.uid === row.uid);
|
|
13683
|
+
fileList.value.splice(index, 1);
|
|
13684
|
+
console.log(index);
|
|
13685
|
+
}
|
|
13686
|
+
function handleDeleteCenterPic() {
|
|
13687
|
+
centerPicData.value.img = "";
|
|
13688
|
+
if (centerMarker) {
|
|
13689
|
+
centerMarker.remove();
|
|
13256
13690
|
}
|
|
13257
13691
|
}
|
|
13258
13692
|
/**
|
|
@@ -13390,6 +13824,112 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13390
13824
|
function getPixelValue(doc, key) {
|
|
13391
13825
|
return Number(doc.style[key].replace("px", ""));
|
|
13392
13826
|
}
|
|
13827
|
+
|
|
13828
|
+
// 新增文本项
|
|
13829
|
+
const addContents = () => {
|
|
13830
|
+
let item = {
|
|
13831
|
+
style: {
|
|
13832
|
+
fontSize: setLabelDataform.value.style.fontSize,
|
|
13833
|
+
fontFamily: setLabelDataform.value.style.fontFamily,
|
|
13834
|
+
color: setLabelDataform.value.style.color,
|
|
13835
|
+
padding: "10px 10px 5px 5px"
|
|
13836
|
+
},
|
|
13837
|
+
data: {
|
|
13838
|
+
dataId: "print_label_" + (setLabelData.value.length + 1),
|
|
13839
|
+
labelValue: "",
|
|
13840
|
+
isShow: false
|
|
13841
|
+
}
|
|
13842
|
+
};
|
|
13843
|
+
setLabelData.value.push(item);
|
|
13844
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
13845
|
+
settingBoxRef.value.style.height = `${selectTextBoxRef.value.clientHeight}px`;
|
|
13846
|
+
});
|
|
13847
|
+
};
|
|
13848
|
+
const onChangeSetting = value => {
|
|
13849
|
+
if (!setLabelData.value[seleted_index.value]) {
|
|
13850
|
+
seleted_index.value = 0;
|
|
13851
|
+
}
|
|
13852
|
+
setLabelData.value[seleted_index.value].style = {
|
|
13853
|
+
fontSize: setLabelDataform.value.style.fontSize,
|
|
13854
|
+
fontFamily: setLabelDataform.value.style.fontFamily,
|
|
13855
|
+
color: setLabelDataform.value.style.color
|
|
13856
|
+
};
|
|
13857
|
+
};
|
|
13858
|
+
|
|
13859
|
+
// 修改文本
|
|
13860
|
+
const onChangeContents = index => {
|
|
13861
|
+
seleted_index.value = index;
|
|
13862
|
+
setTimeout(() => {
|
|
13863
|
+
var mapdiv = document.getElementById("printMap");
|
|
13864
|
+
var labelDiv = document.getElementById(setLabelData.value[index].data.dataId);
|
|
13865
|
+
labelDiv.style.display = "block";
|
|
13866
|
+
mapdiv.appendChild(labelDiv);
|
|
13867
|
+
}, 200);
|
|
13868
|
+
};
|
|
13869
|
+
|
|
13870
|
+
// 文本框聚焦
|
|
13871
|
+
const onFocusContents = (index, item) => {
|
|
13872
|
+
seleted_index.value = index;
|
|
13873
|
+
setLabelDataform.value.style.fontSize = setLabelData.value[index].style.fontSize;
|
|
13874
|
+
setLabelDataform.value.style.fontFamily = setLabelData.value[index].style.fontFamily;
|
|
13875
|
+
setLabelDataform.value.style.color = setLabelData.value[index].style.color;
|
|
13876
|
+
|
|
13877
|
+
//renderWrite();
|
|
13878
|
+
};
|
|
13879
|
+
function handleCheck(node, obj) {
|
|
13880
|
+
let isShow = false;
|
|
13881
|
+
if (obj.checkedKeys.includes(node.id)) {
|
|
13882
|
+
isShow = true;
|
|
13883
|
+
}
|
|
13884
|
+
legendChecked.value.push({
|
|
13885
|
+
id: node.id,
|
|
13886
|
+
isShow: isShow
|
|
13887
|
+
});
|
|
13888
|
+
legendList.value.forEach(t => {
|
|
13889
|
+
if (t.id === node.id) {
|
|
13890
|
+
t.isShow = isShow;
|
|
13891
|
+
}
|
|
13892
|
+
});
|
|
13893
|
+
}
|
|
13894
|
+
|
|
13895
|
+
// 拖动前存储勾选的节点
|
|
13896
|
+
// tree有bug 在拖动后 节点的勾选状态会消失 需要程序设置勾选
|
|
13897
|
+
let checkedNodeKeys = [];
|
|
13898
|
+
function funAllowDragStart() {
|
|
13899
|
+
const _checkedNodes = treeLegend.value.$refs.child.getCheckedNodes();
|
|
13900
|
+
checkedNodeKeys.splice(0);
|
|
13901
|
+
_checkedNodes.forEach(node => {
|
|
13902
|
+
if (node.isShow) {
|
|
13903
|
+
checkedNodeKeys.push(node.id);
|
|
13904
|
+
}
|
|
13905
|
+
});
|
|
13906
|
+
}
|
|
13907
|
+
|
|
13908
|
+
//节点拖动事件
|
|
13909
|
+
//dragType before、after、inner
|
|
13910
|
+
function nodedrop(node, afternode, dragType, event) {
|
|
13911
|
+
treeLegend.value.$refs.child.setCheckedKeys(checkedNodeKeys, false);
|
|
13912
|
+
let order = afternode.data.order;
|
|
13913
|
+
if (dragType === "before") {
|
|
13914
|
+
order = order - 1;
|
|
13915
|
+
if (order === 0) {
|
|
13916
|
+
order = 1;
|
|
13917
|
+
}
|
|
13918
|
+
}
|
|
13919
|
+
if (dragType === "after") {
|
|
13920
|
+
order = order + 1;
|
|
13921
|
+
}
|
|
13922
|
+
node.order = order;
|
|
13923
|
+
legendList.value.forEach(t => {
|
|
13924
|
+
if (t.id === node.id) {
|
|
13925
|
+
t.order = order;
|
|
13926
|
+
}
|
|
13927
|
+
});
|
|
13928
|
+
legendOrder.value.push({
|
|
13929
|
+
id: node.id,
|
|
13930
|
+
order: order
|
|
13931
|
+
});
|
|
13932
|
+
}
|
|
13393
13933
|
/**
|
|
13394
13934
|
* 清除设置
|
|
13395
13935
|
*/
|
|
@@ -13400,6 +13940,9 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13400
13940
|
if (scalesShow.value) {
|
|
13401
13941
|
scalesShow.value = false;
|
|
13402
13942
|
}
|
|
13943
|
+
legendChecked.value = [];
|
|
13944
|
+
legendOrder.value = [];
|
|
13945
|
+
fileList.value = [];
|
|
13403
13946
|
setLabelData.value = [];
|
|
13404
13947
|
setTitleDataform.value = {
|
|
13405
13948
|
// 标题的数据
|
|
@@ -13456,8 +13999,15 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13456
13999
|
const _component_kq_layer_tree = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-layer-tree");
|
|
13457
14000
|
const _component_kq_input = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-input");
|
|
13458
14001
|
const _component_kq_color_picker = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-color-picker");
|
|
13459
|
-
const
|
|
14002
|
+
const _component_kq_date_picker = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-date-picker");
|
|
14003
|
+
const _component_kq_tree = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-tree");
|
|
13460
14004
|
const _component_kq_scrollbar = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-scrollbar");
|
|
14005
|
+
const _component_kq_upload = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-upload");
|
|
14006
|
+
const _component_kq_table_Column = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-table-Column");
|
|
14007
|
+
const _component_kq_input_number = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-input-number");
|
|
14008
|
+
const _component_kq_table = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-table");
|
|
14009
|
+
const _component_kq_tab_pane = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-tab-pane");
|
|
14010
|
+
const _component_kq_tabs = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-tabs");
|
|
13461
14011
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", ClientPrintvue_type_script_setup_true_lang_js_hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
13462
14012
|
class: "settleLayer",
|
|
13463
14013
|
ref_key: "boxRef",
|
|
@@ -13492,7 +14042,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13492
14042
|
ref_key: "settingBoxRef",
|
|
13493
14043
|
ref: settingBoxRef
|
|
13494
14044
|
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
13495
|
-
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["box", (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowLayer) ? 'is-show-layer' : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowTitle) ? 'is-show-layer' : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowText) ? 'is-show-layer' : null])
|
|
14045
|
+
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["box", (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowLayer) ? 'is-show-layer' : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowTitle) ? 'is-show-layer' : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowText) ? 'is-show-layer' : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowlegendSet) ? 'is-show-layer' : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isCenterPicSet) ? 'is-show-layer' : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowFooter) ? 'is-show-layer' : null])
|
|
13496
14046
|
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
13497
14047
|
class: "main-box",
|
|
13498
14048
|
ref_key: "mainBoxRef",
|
|
@@ -13503,21 +14053,39 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13503
14053
|
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", ClientPrintvue_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).layerSelect), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
|
|
13504
14054
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_namespaceObject.ArrowRight))]),
|
|
13505
14055
|
_: 1 /* STABLE */
|
|
13506
|
-
})]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
14056
|
+
})]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 标题设置-bar "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
13507
14057
|
class: "select-layer-bar bar select-layer-margin",
|
|
13508
14058
|
onClick: _cache[3] || (_cache[3] = $event => setShowChange('title'))
|
|
13509
14059
|
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", ClientPrintvue_type_script_setup_true_lang_js_hoisted_4, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).titlesetting), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
|
|
13510
14060
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_namespaceObject.ArrowRight))]),
|
|
13511
14061
|
_: 1 /* STABLE */
|
|
13512
|
-
})]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
14062
|
+
})]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 页脚设置-bar "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
14063
|
+
class: "select-layer-bar bar select-layer-margin",
|
|
14064
|
+
onClick: _cache[4] || (_cache[4] = $event => setShowChange('footer'))
|
|
14065
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_5, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).footersetting), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
|
|
14066
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_namespaceObject.ArrowRight))]),
|
|
14067
|
+
_: 1 /* STABLE */
|
|
14068
|
+
})]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 文本设置-bar "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
13513
14069
|
class: "select-layer-bar bar select-layer-margin",
|
|
13514
|
-
onClick: _cache[
|
|
13515
|
-
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4",
|
|
14070
|
+
onClick: _cache[5] || (_cache[5] = $event => setShowChange('text'))
|
|
14071
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_6, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).addtext), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
|
|
14072
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_namespaceObject.ArrowRight))]),
|
|
14073
|
+
_: 1 /* STABLE */
|
|
14074
|
+
})]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 图例设置-bar "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
14075
|
+
class: "select-layer-bar bar select-layer-margin",
|
|
14076
|
+
onClick: _cache[6] || (_cache[6] = $event => setShowChange('legend'))
|
|
14077
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_7, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).printlegendset), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
|
|
14078
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_namespaceObject.ArrowRight))]),
|
|
14079
|
+
_: 1 /* STABLE */
|
|
14080
|
+
})]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 图片设置-bar "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
14081
|
+
class: "select-layer-bar bar select-layer-margin",
|
|
14082
|
+
onClick: _cache[7] || (_cache[7] = $event => setShowChange('center'))
|
|
14083
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_8, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)(_ctx.$t("webgl.addimage")), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
|
|
13516
14084
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_namespaceObject.ArrowRight))]),
|
|
13517
14085
|
_: 1 /* STABLE */
|
|
13518
14086
|
})]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_collapse, {
|
|
13519
14087
|
modelValue: activeNames.value,
|
|
13520
|
-
"onUpdate:modelValue": _cache[
|
|
14088
|
+
"onUpdate:modelValue": _cache[17] || (_cache[17] = $event => activeNames.value = $event),
|
|
13521
14089
|
onChange: changeMainHeight
|
|
13522
14090
|
}, {
|
|
13523
14091
|
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, {
|
|
@@ -13536,7 +14104,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13536
14104
|
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, {
|
|
13537
14105
|
class: "btnStyle",
|
|
13538
14106
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(legendShow),
|
|
13539
|
-
"onUpdate:modelValue": _cache[
|
|
14107
|
+
"onUpdate:modelValue": _cache[8] || (_cache[8] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(legendShow) ? legendShow.value = $event : legendShow = $event),
|
|
13540
14108
|
onChange: showLegend
|
|
13541
14109
|
}, {
|
|
13542
14110
|
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).printlegend), 1 /* TEXT */)]),
|
|
@@ -13549,7 +14117,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13549
14117
|
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, {
|
|
13550
14118
|
class: "btnStyle",
|
|
13551
14119
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(compassShow),
|
|
13552
|
-
"onUpdate:modelValue": _cache[
|
|
14120
|
+
"onUpdate:modelValue": _cache[9] || (_cache[9] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(compassShow) ? compassShow.value = $event : compassShow = $event)
|
|
13553
14121
|
}, {
|
|
13554
14122
|
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).printcompass), 1 /* TEXT */)]),
|
|
13555
14123
|
_: 1 /* STABLE */
|
|
@@ -13561,16 +14129,16 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13561
14129
|
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, {
|
|
13562
14130
|
class: "btnStyle",
|
|
13563
14131
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(scalesShow),
|
|
13564
|
-
"onUpdate:modelValue": _cache[
|
|
14132
|
+
"onUpdate:modelValue": _cache[10] || (_cache[10] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(scalesShow) ? scalesShow.value = $event : scalesShow = $event),
|
|
13565
14133
|
onChange: changStatusBar
|
|
13566
14134
|
}, {
|
|
13567
|
-
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).
|
|
14135
|
+
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).clientprintscale), 1 /* TEXT */)]),
|
|
13568
14136
|
_: 1 /* STABLE */
|
|
13569
14137
|
}, 8 /* PROPS */, ["modelValue"])]),
|
|
13570
14138
|
_: 1 /* STABLE */
|
|
13571
14139
|
})]),
|
|
13572
14140
|
_: 1 /* STABLE */
|
|
13573
|
-
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
14141
|
+
}), (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, {
|
|
13574
14142
|
model: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform),
|
|
13575
14143
|
"label-width": "70px",
|
|
13576
14144
|
"label-position": "left"
|
|
@@ -13582,7 +14150,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13582
14150
|
}, {
|
|
13583
14151
|
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, {
|
|
13584
14152
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(borderStyleValue),
|
|
13585
|
-
"onUpdate:modelValue": _cache[
|
|
14153
|
+
"onUpdate:modelValue": _cache[11] || (_cache[11] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(borderStyleValue) ? borderStyleValue.value = $event : borderStyleValue = $event),
|
|
13586
14154
|
onChange: changeBorderStyleData
|
|
13587
14155
|
}, {
|
|
13588
14156
|
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, {
|
|
@@ -13615,33 +14183,33 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13615
14183
|
}, {
|
|
13616
14184
|
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, {
|
|
13617
14185
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(papForm),
|
|
13618
|
-
"onUpdate:modelValue": _cache[
|
|
14186
|
+
"onUpdate:modelValue": _cache[12] || (_cache[12] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(papForm) ? papForm.value = $event : papForm = $event),
|
|
13619
14187
|
onChange: changeMapContainerSize
|
|
13620
14188
|
}, {
|
|
13621
14189
|
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, {
|
|
13622
14190
|
value: "A2"
|
|
13623
14191
|
}, {
|
|
13624
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[
|
|
14192
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[37] || (_cache[37] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("A2")])),
|
|
13625
14193
|
_: 1 /* STABLE */
|
|
13626
14194
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
|
|
13627
14195
|
value: "A3"
|
|
13628
14196
|
}, {
|
|
13629
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[
|
|
14197
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[38] || (_cache[38] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("A3")])),
|
|
13630
14198
|
_: 1 /* STABLE */
|
|
13631
14199
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
|
|
13632
14200
|
value: "A4"
|
|
13633
14201
|
}, {
|
|
13634
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[
|
|
14202
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[39] || (_cache[39] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("A4")])),
|
|
13635
14203
|
_: 1 /* STABLE */
|
|
13636
14204
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
|
|
13637
14205
|
value: "A5"
|
|
13638
14206
|
}, {
|
|
13639
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[
|
|
14207
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[40] || (_cache[40] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("A5")])),
|
|
13640
14208
|
_: 1 /* STABLE */
|
|
13641
14209
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
|
|
13642
14210
|
value: "A6"
|
|
13643
14211
|
}, {
|
|
13644
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[
|
|
14212
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[41] || (_cache[41] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("A6")])),
|
|
13645
14213
|
_: 1 /* STABLE */
|
|
13646
14214
|
})]),
|
|
13647
14215
|
_: 1 /* STABLE */
|
|
@@ -13658,7 +14226,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13658
14226
|
}, {
|
|
13659
14227
|
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, {
|
|
13660
14228
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(papAnchor),
|
|
13661
|
-
"onUpdate:modelValue": _cache[
|
|
14229
|
+
"onUpdate:modelValue": _cache[13] || (_cache[13] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(papAnchor) ? papAnchor.value = $event : papAnchor = $event),
|
|
13662
14230
|
onChange: changeMapContainerSize
|
|
13663
14231
|
}, {
|
|
13664
14232
|
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, {
|
|
@@ -13682,17 +14250,17 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13682
14250
|
}, {
|
|
13683
14251
|
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, {
|
|
13684
14252
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(imageType),
|
|
13685
|
-
"onUpdate:modelValue": _cache[
|
|
14253
|
+
"onUpdate:modelValue": _cache[14] || (_cache[14] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(imageType) ? imageType.value = $event : imageType = $event)
|
|
13686
14254
|
}, {
|
|
13687
14255
|
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, {
|
|
13688
14256
|
value: "png"
|
|
13689
14257
|
}, {
|
|
13690
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[
|
|
14258
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[42] || (_cache[42] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("png")])),
|
|
13691
14259
|
_: 1 /* STABLE */
|
|
13692
14260
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
|
|
13693
14261
|
value: "jpg"
|
|
13694
14262
|
}, {
|
|
13695
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[
|
|
14263
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[43] || (_cache[43] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("jpg")])),
|
|
13696
14264
|
_: 1 /* STABLE */
|
|
13697
14265
|
})]),
|
|
13698
14266
|
_: 1 /* STABLE */
|
|
@@ -13704,9 +14272,9 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13704
14272
|
_: 1 /* STABLE */
|
|
13705
14273
|
})]),
|
|
13706
14274
|
_: 1 /* STABLE */
|
|
13707
|
-
}, 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",
|
|
14275
|
+
}, 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, {
|
|
13708
14276
|
type: "primary",
|
|
13709
|
-
onClick: _cache[
|
|
14277
|
+
onClick: _cache[15] || (_cache[15] = $event => getPic()),
|
|
13710
14278
|
loading: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(loadState)
|
|
13711
14279
|
}, {
|
|
13712
14280
|
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 */)]),
|
|
@@ -13714,7 +14282,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13714
14282
|
}, 8 /* PROPS */, ["loading"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)(((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_button, {
|
|
13715
14283
|
type: "plain",
|
|
13716
14284
|
loading: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(printState),
|
|
13717
|
-
onClick: _cache[
|
|
14285
|
+
onClick: _cache[16] || (_cache[16] = $event => canvasToImage())
|
|
13718
14286
|
}, {
|
|
13719
14287
|
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).sendprinter), 1 /* TEXT */)]),
|
|
13720
14288
|
_: 1 /* STABLE */
|
|
@@ -13733,7 +14301,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13733
14301
|
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
|
|
13734
14302
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_namespaceObject.ArrowLeft))]),
|
|
13735
14303
|
_: 1 /* STABLE */
|
|
13736
|
-
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4",
|
|
14304
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_11, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).layerSelect), 1 /* TEXT */)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_12, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_layer_tree, {
|
|
13737
14305
|
showShadow: false,
|
|
13738
14306
|
"map-target": 'scencePrint'
|
|
13739
14307
|
})])], 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_.createCommentVNode)(" 标题设置-box "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
@@ -13746,12 +14314,12 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13746
14314
|
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
|
|
13747
14315
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_namespaceObject.ArrowLeft))]),
|
|
13748
14316
|
_: 1 /* STABLE */
|
|
13749
|
-
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4",
|
|
14317
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_13, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).titlesetting), 1 /* TEXT */)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form, {
|
|
13750
14318
|
model: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform),
|
|
13751
14319
|
"label-width": "70px",
|
|
13752
14320
|
"label-position": "left"
|
|
13753
14321
|
}, {
|
|
13754
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
14322
|
+
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_14, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
13755
14323
|
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, {
|
|
13756
14324
|
span: 24
|
|
13757
14325
|
}, {
|
|
@@ -13760,7 +14328,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13760
14328
|
}, {
|
|
13761
14329
|
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, {
|
|
13762
14330
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.title,
|
|
13763
|
-
"onUpdate:modelValue": _cache[
|
|
14331
|
+
"onUpdate:modelValue": _cache[18] || (_cache[18] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.title = $event)
|
|
13764
14332
|
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
13765
14333
|
_: 1 /* STABLE */
|
|
13766
14334
|
}, 8 /* PROPS */, ["label"])]),
|
|
@@ -13776,7 +14344,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13776
14344
|
}, {
|
|
13777
14345
|
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, {
|
|
13778
14346
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontFamily,
|
|
13779
|
-
"onUpdate:modelValue": _cache[
|
|
14347
|
+
"onUpdate:modelValue": _cache[19] || (_cache[19] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontFamily = $event),
|
|
13780
14348
|
placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).pleaseselect,
|
|
13781
14349
|
style: {
|
|
13782
14350
|
"width": "100%"
|
|
@@ -13808,7 +14376,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13808
14376
|
}, {
|
|
13809
14377
|
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, {
|
|
13810
14378
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontSize,
|
|
13811
|
-
"onUpdate:modelValue": _cache[
|
|
14379
|
+
"onUpdate:modelValue": _cache[20] || (_cache[20] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontSize = $event),
|
|
13812
14380
|
placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).fontsize
|
|
13813
14381
|
}, {
|
|
13814
14382
|
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 => {
|
|
@@ -13828,7 +14396,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13828
14396
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
13829
14397
|
span: 2
|
|
13830
14398
|
}, {
|
|
13831
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[
|
|
14399
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[44] || (_cache[44] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)(" ")])),
|
|
13832
14400
|
_: 1 /* STABLE */
|
|
13833
14401
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
13834
14402
|
span: 6
|
|
@@ -13838,7 +14406,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13838
14406
|
}, {
|
|
13839
14407
|
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, {
|
|
13840
14408
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.color,
|
|
13841
|
-
"onUpdate:modelValue": _cache[
|
|
14409
|
+
"onUpdate:modelValue": _cache[21] || (_cache[21] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.color = $event),
|
|
13842
14410
|
"show-alpha": ""
|
|
13843
14411
|
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
13844
14412
|
_: 1 /* STABLE */
|
|
@@ -13855,7 +14423,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13855
14423
|
}, {
|
|
13856
14424
|
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, {
|
|
13857
14425
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.backgroundColor,
|
|
13858
|
-
"onUpdate:modelValue": _cache[
|
|
14426
|
+
"onUpdate:modelValue": _cache[22] || (_cache[22] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.backgroundColor = $event),
|
|
13859
14427
|
"show-alpha": ""
|
|
13860
14428
|
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
13861
14429
|
_: 1 /* STABLE */
|
|
@@ -13869,7 +14437,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13869
14437
|
}, {
|
|
13870
14438
|
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, {
|
|
13871
14439
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.shadowShowBg,
|
|
13872
|
-
"onUpdate:modelValue": _cache[
|
|
14440
|
+
"onUpdate:modelValue": _cache[23] || (_cache[23] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.shadowShowBg = $event),
|
|
13873
14441
|
"show-alpha": ""
|
|
13874
14442
|
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
13875
14443
|
_: 1 /* STABLE */
|
|
@@ -13878,9 +14446,9 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13878
14446
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
13879
14447
|
span: 8
|
|
13880
14448
|
}, {
|
|
13881
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
14449
|
+
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, {
|
|
13882
14450
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.shadowShow,
|
|
13883
|
-
"onUpdate:modelValue": _cache[
|
|
14451
|
+
"onUpdate:modelValue": _cache[24] || (_cache[24] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.shadowShow = $event)
|
|
13884
14452
|
}, {
|
|
13885
14453
|
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 */)]),
|
|
13886
14454
|
_: 1 /* STABLE */
|
|
@@ -13888,15 +14456,98 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13888
14456
|
_: 1 /* STABLE */
|
|
13889
14457
|
})]),
|
|
13890
14458
|
_: 1 /* STABLE */
|
|
13891
|
-
}), (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",
|
|
14459
|
+
}), (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, {
|
|
13892
14460
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.titleShow,
|
|
13893
|
-
"onUpdate:modelValue": _cache[
|
|
14461
|
+
"onUpdate:modelValue": _cache[25] || (_cache[25] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.titleShow = $event)
|
|
13894
14462
|
}, {
|
|
13895
14463
|
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 */)]),
|
|
13896
14464
|
_: 1 /* STABLE */
|
|
13897
14465
|
}, 8 /* PROPS */, ["modelValue"])])])]),
|
|
13898
14466
|
_: 1 /* STABLE */
|
|
13899
|
-
}, 8 /* PROPS */, ["model"])], 512 /* NEED_PATCH */), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowTitle)]]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("
|
|
14467
|
+
}, 8 /* PROPS */, ["model"])], 512 /* NEED_PATCH */), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowTitle)]]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 页脚设置-box "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
14468
|
+
class: "select-layer-box",
|
|
14469
|
+
ref_key: "selectFooterBoxRef",
|
|
14470
|
+
ref: selectFooterBoxRef
|
|
14471
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 页脚设置-bar "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
14472
|
+
class: "select-layer-bar bar",
|
|
14473
|
+
onClick: setMainStyle
|
|
14474
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
|
|
14475
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_namespaceObject.ArrowLeft))]),
|
|
14476
|
+
_: 1 /* STABLE */
|
|
14477
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_17, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).footersetting), 1 /* TEXT */)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form, {
|
|
14478
|
+
model: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform),
|
|
14479
|
+
"label-width": "70px",
|
|
14480
|
+
"label-position": "left"
|
|
14481
|
+
}, {
|
|
14482
|
+
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_18, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
14483
|
+
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, {
|
|
14484
|
+
span: 24
|
|
14485
|
+
}, {
|
|
14486
|
+
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, {
|
|
14487
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).printcompany
|
|
14488
|
+
}, {
|
|
14489
|
+
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, {
|
|
14490
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).companyName,
|
|
14491
|
+
"onUpdate:modelValue": _cache[26] || (_cache[26] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).companyName = $event)
|
|
14492
|
+
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
14493
|
+
_: 1 /* STABLE */
|
|
14494
|
+
}, 8 /* PROPS */, ["label"])]),
|
|
14495
|
+
_: 1 /* STABLE */
|
|
14496
|
+
})]),
|
|
14497
|
+
_: 1 /* STABLE */
|
|
14498
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
14499
|
+
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, {
|
|
14500
|
+
span: 24
|
|
14501
|
+
}, {
|
|
14502
|
+
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, {
|
|
14503
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).printdate
|
|
14504
|
+
}, {
|
|
14505
|
+
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, {
|
|
14506
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).printDate,
|
|
14507
|
+
"onUpdate:modelValue": _cache[27] || (_cache[27] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setFooterDataform).printDate = $event),
|
|
14508
|
+
type: "date",
|
|
14509
|
+
clearable: false,
|
|
14510
|
+
editable: false,
|
|
14511
|
+
onChange: changePrintDate,
|
|
14512
|
+
style: {
|
|
14513
|
+
"width": "100%"
|
|
14514
|
+
}
|
|
14515
|
+
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
14516
|
+
_: 1 /* STABLE */
|
|
14517
|
+
}, 8 /* PROPS */, ["label"])]),
|
|
14518
|
+
_: 1 /* STABLE */
|
|
14519
|
+
})]),
|
|
14520
|
+
_: 1 /* STABLE */
|
|
14521
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
14522
|
+
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, {
|
|
14523
|
+
span: 12
|
|
14524
|
+
}, {
|
|
14525
|
+
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, {
|
|
14526
|
+
class: "btnStyle",
|
|
14527
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(printCompanyShow),
|
|
14528
|
+
"onUpdate:modelValue": _cache[28] || (_cache[28] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(printCompanyShow) ? printCompanyShow.value = $event : printCompanyShow = $event)
|
|
14529
|
+
}, {
|
|
14530
|
+
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 */)]),
|
|
14531
|
+
_: 1 /* STABLE */
|
|
14532
|
+
}, 8 /* PROPS */, ["modelValue"])]),
|
|
14533
|
+
_: 1 /* STABLE */
|
|
14534
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
14535
|
+
span: 12
|
|
14536
|
+
}, {
|
|
14537
|
+
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, {
|
|
14538
|
+
class: "btnStyle",
|
|
14539
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(printdataShow),
|
|
14540
|
+
"onUpdate:modelValue": _cache[29] || (_cache[29] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(printdataShow) ? printdataShow.value = $event : printdataShow = $event)
|
|
14541
|
+
}, {
|
|
14542
|
+
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 */)]),
|
|
14543
|
+
_: 1 /* STABLE */
|
|
14544
|
+
}, 8 /* PROPS */, ["modelValue"])]),
|
|
14545
|
+
_: 1 /* STABLE */
|
|
14546
|
+
})]),
|
|
14547
|
+
_: 1 /* STABLE */
|
|
14548
|
+
})])]),
|
|
14549
|
+
_: 1 /* STABLE */
|
|
14550
|
+
}, 8 /* PROPS */, ["model"])], 512 /* NEED_PATCH */), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowFooter)]]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 添加文本-box "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
13900
14551
|
class: "select-layer-box",
|
|
13901
14552
|
ref_key: "selectTextBoxRef",
|
|
13902
14553
|
ref: selectTextBoxRef
|
|
@@ -13906,7 +14557,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13906
14557
|
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
|
|
13907
14558
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_namespaceObject.ArrowLeft))]),
|
|
13908
14559
|
_: 1 /* STABLE */
|
|
13909
|
-
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4",
|
|
14560
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_19, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).addtext), 1 /* TEXT */)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_20, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form, {
|
|
13910
14561
|
model: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform),
|
|
13911
14562
|
"label-width": "70px",
|
|
13912
14563
|
"label-position": "left"
|
|
@@ -13916,7 +14567,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13916
14567
|
}, {
|
|
13917
14568
|
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, {
|
|
13918
14569
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontFamily,
|
|
13919
|
-
"onUpdate:modelValue": _cache[
|
|
14570
|
+
"onUpdate:modelValue": _cache[30] || (_cache[30] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontFamily = $event),
|
|
13920
14571
|
placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).pleaseselect,
|
|
13921
14572
|
style: {
|
|
13922
14573
|
"width": "100%"
|
|
@@ -13944,7 +14595,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13944
14595
|
}, {
|
|
13945
14596
|
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, {
|
|
13946
14597
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontSize,
|
|
13947
|
-
"onUpdate:modelValue": _cache[
|
|
14598
|
+
"onUpdate:modelValue": _cache[31] || (_cache[31] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontSize = $event),
|
|
13948
14599
|
placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).fontsize
|
|
13949
14600
|
}, {
|
|
13950
14601
|
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 => {
|
|
@@ -13964,7 +14615,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13964
14615
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
13965
14616
|
span: 2
|
|
13966
14617
|
}, {
|
|
13967
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[
|
|
14618
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => _cache[45] || (_cache[45] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)(" ")])),
|
|
13968
14619
|
_: 1 /* STABLE */
|
|
13969
14620
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
13970
14621
|
span: 6
|
|
@@ -13974,7 +14625,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13974
14625
|
}, {
|
|
13975
14626
|
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, {
|
|
13976
14627
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.color,
|
|
13977
|
-
"onUpdate:modelValue": _cache[
|
|
14628
|
+
"onUpdate:modelValue": _cache[32] || (_cache[32] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.color = $event),
|
|
13978
14629
|
"show-alpha": ""
|
|
13979
14630
|
}, null, 8 /* PROPS */, ["modelValue"])])]),
|
|
13980
14631
|
_: 1 /* STABLE */
|
|
@@ -13991,13 +14642,13 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
13991
14642
|
rows: "12",
|
|
13992
14643
|
placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).pleaseentercontent,
|
|
13993
14644
|
spellcheck: "false",
|
|
13994
|
-
"onUpdate:modelValue": _cache[
|
|
14645
|
+
"onUpdate:modelValue": _cache[33] || (_cache[33] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).data.labelValue = $event),
|
|
13995
14646
|
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)
|
|
13996
|
-
}, null, 12 /* STYLE, PROPS */,
|
|
14647
|
+
}, 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]])]),
|
|
13997
14648
|
_: 1 /* STABLE */
|
|
13998
14649
|
}, 8 /* PROPS */, ["label"])]),
|
|
13999
14650
|
_: 1 /* STABLE */
|
|
14000
|
-
}, 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",
|
|
14651
|
+
}, 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_22, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
14001
14652
|
type: "primary",
|
|
14002
14653
|
onClick: addLabel
|
|
14003
14654
|
}, {
|
|
@@ -14009,7 +14660,227 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
14009
14660
|
}, {
|
|
14010
14661
|
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).printclear), 1 /* TEXT */)]),
|
|
14011
14662
|
_: 1 /* STABLE */
|
|
14012
|
-
})])])], 512 /* NEED_PATCH */), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowText)]])
|
|
14663
|
+
})])])], 512 /* NEED_PATCH */), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowText)]]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 图例设置-box "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
14664
|
+
class: "select-layer-box",
|
|
14665
|
+
ref_key: "selectLegendBoxRef",
|
|
14666
|
+
ref: selectLegendBoxRef
|
|
14667
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 图例设置-bar "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
14668
|
+
class: "select-layer-bar bar",
|
|
14669
|
+
onClick: setMainStyle
|
|
14670
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
|
|
14671
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_namespaceObject.ArrowLeft))]),
|
|
14672
|
+
_: 1 /* STABLE */
|
|
14673
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_23, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)(_ctx.$t("webgl.printlegendset")), 1 /* TEXT */)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_24, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_25, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)(_ctx.$t("webgl.dragnodelegend")), 1 /* TEXT */)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_26, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_scrollbar, {
|
|
14674
|
+
ref_key: "treescroll_ref",
|
|
14675
|
+
ref: treescroll_ref,
|
|
14676
|
+
class: "page-scroll",
|
|
14677
|
+
always: ""
|
|
14678
|
+
}, {
|
|
14679
|
+
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_27, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_tree, {
|
|
14680
|
+
ref_key: "treeLegend",
|
|
14681
|
+
ref: treeLegend,
|
|
14682
|
+
"highlight-current": true,
|
|
14683
|
+
data: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(legendList).value,
|
|
14684
|
+
props: defaultProps,
|
|
14685
|
+
"node-key": "id",
|
|
14686
|
+
"show-checkbox": "",
|
|
14687
|
+
"default-checked-keys": (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(treeCheckedData).value,
|
|
14688
|
+
draggable: "",
|
|
14689
|
+
"expand-on-click-node": true,
|
|
14690
|
+
"default-expand-all": true,
|
|
14691
|
+
onCheck: handleCheck,
|
|
14692
|
+
onNodeDragStart: funAllowDragStart,
|
|
14693
|
+
onNodeDrop: nodedrop
|
|
14694
|
+
}, null, 8 /* PROPS */, ["data", "props", "default-checked-keys"])])]),
|
|
14695
|
+
_: 1 /* STABLE */
|
|
14696
|
+
}, 512 /* NEED_PATCH */)])])], 512 /* NEED_PATCH */), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowlegendSet)]]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 中心点图片-box "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
14697
|
+
class: "select-layer-box",
|
|
14698
|
+
ref_key: "selectCenterPicBoxRef",
|
|
14699
|
+
ref: selectCenterPicBoxRef
|
|
14700
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 中心点图片-bar "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
14701
|
+
class: "select-layer-bar bar",
|
|
14702
|
+
onClick: setMainStyle
|
|
14703
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
|
|
14704
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_namespaceObject.ArrowLeft))]),
|
|
14705
|
+
_: 1 /* STABLE */
|
|
14706
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_28, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)(_ctx.$t("webgl.addimage")), 1 /* TEXT */)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form, {
|
|
14707
|
+
"label-width": "70px",
|
|
14708
|
+
"label-position": "left"
|
|
14709
|
+
}, {
|
|
14710
|
+
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_29, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_tabs, {
|
|
14711
|
+
type: "border-card"
|
|
14712
|
+
}, {
|
|
14713
|
+
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_tab_pane, {
|
|
14714
|
+
label: _ctx.$t('webgl.addimage')
|
|
14715
|
+
}, {
|
|
14716
|
+
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_30, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_upload, {
|
|
14717
|
+
"auto-upload": false,
|
|
14718
|
+
"show-file-list": false,
|
|
14719
|
+
"on-change": clickUpload,
|
|
14720
|
+
accept: ".png,.jpg,.bmp"
|
|
14721
|
+
}, {
|
|
14722
|
+
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_button, {
|
|
14723
|
+
type: "primary"
|
|
14724
|
+
}, {
|
|
14725
|
+
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.addimage")), 1 /* TEXT */)]),
|
|
14726
|
+
_: 1 /* STABLE */
|
|
14727
|
+
})]),
|
|
14728
|
+
_: 1 /* STABLE */
|
|
14729
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_31, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_table, {
|
|
14730
|
+
border: "",
|
|
14731
|
+
stripe: "",
|
|
14732
|
+
"highlight-current-row": "",
|
|
14733
|
+
data: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(fileList).value,
|
|
14734
|
+
style: {
|
|
14735
|
+
"width": "100%"
|
|
14736
|
+
},
|
|
14737
|
+
height: "250px",
|
|
14738
|
+
"header-cell-style": _ctx.headClass,
|
|
14739
|
+
"cell-style": _ctx.cellClass,
|
|
14740
|
+
"empty-text": _ctx.$t('common.nodata'),
|
|
14741
|
+
"table-layout": "auto"
|
|
14742
|
+
}, {
|
|
14743
|
+
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_table_Column, {
|
|
14744
|
+
prop: "url",
|
|
14745
|
+
label: _ctx.$t('webgl.printimage')
|
|
14746
|
+
}, {
|
|
14747
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(scope => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("img", {
|
|
14748
|
+
src: scope.row.url,
|
|
14749
|
+
height: "32",
|
|
14750
|
+
width: "32"
|
|
14751
|
+
}, null, 8 /* PROPS */, _hoisted_32)]),
|
|
14752
|
+
_: 1 /* STABLE */
|
|
14753
|
+
}, 8 /* PROPS */, ["label"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_table_Column, {
|
|
14754
|
+
prop: "width",
|
|
14755
|
+
label: _ctx.$t('webgl.printimagewidth'),
|
|
14756
|
+
width: "100"
|
|
14757
|
+
}, {
|
|
14758
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(scope => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_input_number, {
|
|
14759
|
+
modelValue: scope.row.width,
|
|
14760
|
+
"onUpdate:modelValue": $event => scope.row.width = $event,
|
|
14761
|
+
min: 0,
|
|
14762
|
+
"controls-position": "right",
|
|
14763
|
+
size: "small"
|
|
14764
|
+
}, null, 8 /* PROPS */, ["modelValue", "onUpdate:modelValue"])]),
|
|
14765
|
+
_: 1 /* STABLE */
|
|
14766
|
+
}, 8 /* PROPS */, ["label"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_table_Column, {
|
|
14767
|
+
prop: "height",
|
|
14768
|
+
label: _ctx.$t('webgl.printimageheigth'),
|
|
14769
|
+
width: "100"
|
|
14770
|
+
}, {
|
|
14771
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(scope => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_input_number, {
|
|
14772
|
+
modelValue: scope.row.height,
|
|
14773
|
+
"onUpdate:modelValue": $event => scope.row.height = $event,
|
|
14774
|
+
min: 0,
|
|
14775
|
+
"controls-position": "right",
|
|
14776
|
+
size: "small"
|
|
14777
|
+
}, null, 8 /* PROPS */, ["modelValue", "onUpdate:modelValue"])]),
|
|
14778
|
+
_: 1 /* STABLE */
|
|
14779
|
+
}, 8 /* PROPS */, ["label"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_table_Column, {
|
|
14780
|
+
align: "right"
|
|
14781
|
+
}, {
|
|
14782
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(scope => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
14783
|
+
size: "24",
|
|
14784
|
+
circle: "",
|
|
14785
|
+
icon: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_namespaceObject.CircleClose),
|
|
14786
|
+
title: _ctx.$t('webgl.printclearimg'),
|
|
14787
|
+
onClick: $event => handleDelete(scope.row)
|
|
14788
|
+
}, null, 8 /* PROPS */, ["icon", "title", "onClick"])]),
|
|
14789
|
+
_: 1 /* STABLE */
|
|
14790
|
+
})]),
|
|
14791
|
+
_: 1 /* STABLE */
|
|
14792
|
+
}, 8 /* PROPS */, ["data", "header-cell-style", "cell-style", "empty-text"])])])]),
|
|
14793
|
+
_: 1 /* STABLE */
|
|
14794
|
+
}, 8 /* PROPS */, ["label"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_tab_pane, {
|
|
14795
|
+
label: _ctx.$t('webgl.printcenterpicset')
|
|
14796
|
+
}, {
|
|
14797
|
+
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_33, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
14798
|
+
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, {
|
|
14799
|
+
span: 24
|
|
14800
|
+
}, {
|
|
14801
|
+
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, {
|
|
14802
|
+
label: _ctx.$t('webgl.printimage')
|
|
14803
|
+
}, {
|
|
14804
|
+
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_upload, {
|
|
14805
|
+
"auto-upload": false,
|
|
14806
|
+
"show-file-list": false,
|
|
14807
|
+
"on-change": clickUploadCenter,
|
|
14808
|
+
accept: ".png,.jpg,.bmp"
|
|
14809
|
+
}, {
|
|
14810
|
+
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_button, {
|
|
14811
|
+
type: "primary"
|
|
14812
|
+
}, {
|
|
14813
|
+
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.addimage")), 1 /* TEXT */)]),
|
|
14814
|
+
_: 1 /* STABLE */
|
|
14815
|
+
})]),
|
|
14816
|
+
_: 1 /* STABLE */
|
|
14817
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("img", {
|
|
14818
|
+
src: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).img,
|
|
14819
|
+
width: "32",
|
|
14820
|
+
height: "32",
|
|
14821
|
+
style: {
|
|
14822
|
+
"margin-left": "32px"
|
|
14823
|
+
}
|
|
14824
|
+
}, null, 8 /* PROPS */, _hoisted_34), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).img != '']]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
14825
|
+
size: "24",
|
|
14826
|
+
circle: "",
|
|
14827
|
+
icon: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_namespaceObject.CircleClose),
|
|
14828
|
+
title: _ctx.$t('webgl.printclearimg'),
|
|
14829
|
+
onClick: _cache[34] || (_cache[34] = $event => handleDeleteCenterPic()),
|
|
14830
|
+
style: {
|
|
14831
|
+
"margin-left": "32px"
|
|
14832
|
+
}
|
|
14833
|
+
}, null, 8 /* PROPS */, ["icon", "title"]), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).img != '']])]),
|
|
14834
|
+
_: 1 /* STABLE */
|
|
14835
|
+
}, 8 /* PROPS */, ["label"])]),
|
|
14836
|
+
_: 1 /* STABLE */
|
|
14837
|
+
})]),
|
|
14838
|
+
_: 1 /* STABLE */
|
|
14839
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
14840
|
+
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, {
|
|
14841
|
+
span: 24
|
|
14842
|
+
}, {
|
|
14843
|
+
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, {
|
|
14844
|
+
label: _ctx.$t('webgl.printwidthset')
|
|
14845
|
+
}, {
|
|
14846
|
+
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, {
|
|
14847
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).width,
|
|
14848
|
+
"onUpdate:modelValue": _cache[35] || (_cache[35] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).width = $event),
|
|
14849
|
+
min: 0,
|
|
14850
|
+
"controls-position": "right",
|
|
14851
|
+
onChange: _ctx.onChangecenterImg
|
|
14852
|
+
}, null, 8 /* PROPS */, ["modelValue", "onChange"])]),
|
|
14853
|
+
_: 1 /* STABLE */
|
|
14854
|
+
}, 8 /* PROPS */, ["label"])]),
|
|
14855
|
+
_: 1 /* STABLE */
|
|
14856
|
+
})]),
|
|
14857
|
+
_: 1 /* STABLE */
|
|
14858
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
14859
|
+
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, {
|
|
14860
|
+
span: 24
|
|
14861
|
+
}, {
|
|
14862
|
+
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, {
|
|
14863
|
+
label: _ctx.$t('webgl.printheightset')
|
|
14864
|
+
}, {
|
|
14865
|
+
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, {
|
|
14866
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).height,
|
|
14867
|
+
"onUpdate:modelValue": _cache[36] || (_cache[36] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(centerPicData).height = $event),
|
|
14868
|
+
min: 0,
|
|
14869
|
+
"controls-position": "right",
|
|
14870
|
+
onChange: _ctx.onChangecenterImg
|
|
14871
|
+
}, null, 8 /* PROPS */, ["modelValue", "onChange"])]),
|
|
14872
|
+
_: 1 /* STABLE */
|
|
14873
|
+
}, 8 /* PROPS */, ["label"])]),
|
|
14874
|
+
_: 1 /* STABLE */
|
|
14875
|
+
})]),
|
|
14876
|
+
_: 1 /* STABLE */
|
|
14877
|
+
})])]),
|
|
14878
|
+
_: 1 /* STABLE */
|
|
14879
|
+
}, 8 /* PROPS */, ["label"])]),
|
|
14880
|
+
_: 1 /* STABLE */
|
|
14881
|
+
})])]),
|
|
14882
|
+
_: 1 /* STABLE */
|
|
14883
|
+
})], 512 /* NEED_PATCH */), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isCenterPicSet)]])], 2 /* CLASS */)], 2 /* CLASS */)], 4 /* STYLE */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_35, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_36, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
14013
14884
|
onClick: Enlarge,
|
|
14014
14885
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).equalscalezoom,
|
|
14015
14886
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isActive) === 1 ? 'clickborder' : '')
|
|
@@ -14059,7 +14930,7 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
14059
14930
|
class: "kq3d-client-print-mapContainerDiv kq3d-client-print-a4VSize",
|
|
14060
14931
|
onselectstart: "return false",
|
|
14061
14932
|
id: "printMap"
|
|
14062
|
-
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
14933
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_37, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
14063
14934
|
ref_key: "titleRef",
|
|
14064
14935
|
ref: titleRef,
|
|
14065
14936
|
style: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeStyle)({
|
|
@@ -14072,9 +14943,9 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
14072
14943
|
class: "kq3d-client-print-printContentDiv kq3d-client-print-printborder1",
|
|
14073
14944
|
ref_key: "printContentDiv",
|
|
14074
14945
|
ref: printContentDiv
|
|
14075
|
-
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
14946
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_38, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("img", {
|
|
14076
14947
|
src: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(scenceImageUrl)
|
|
14077
|
-
}, null, 8 /* PROPS */,
|
|
14948
|
+
}, null, 8 /* PROPS */, _hoisted_39)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(showMap) ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(SceneView), {
|
|
14078
14949
|
key: 0,
|
|
14079
14950
|
target: "scencePrint",
|
|
14080
14951
|
options: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).options,
|
|
@@ -14095,12 +14966,19 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
14095
14966
|
onMouseover: setdragCursor,
|
|
14096
14967
|
onMousedown: dragTl,
|
|
14097
14968
|
id: "divlegendDiv"
|
|
14098
|
-
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(legendShow) ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.
|
|
14969
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(legendShow) ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", {
|
|
14099
14970
|
key: 0,
|
|
14100
|
-
mapTarget: "scencePrint",
|
|
14101
14971
|
ref_key: "lengend_ref",
|
|
14102
|
-
ref: lengend_ref
|
|
14103
|
-
|
|
14972
|
+
ref: lengend_ref,
|
|
14973
|
+
class: "kq-legend-box"
|
|
14974
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(legendList).value && (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(legendList).value.length > 0 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", _hoisted_40, _cache[46] || (_cache[46] = [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", null, "图例", -1 /* HOISTED */)]))) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" <kq-space direction=\"vertical\" alignment=\"flex-start\"> "), ((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)(legendList).value, legend => {
|
|
14975
|
+
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)(((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", _hoisted_41, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("img", {
|
|
14976
|
+
src: legend.src,
|
|
14977
|
+
style: {
|
|
14978
|
+
"padding-right": "8px"
|
|
14979
|
+
}
|
|
14980
|
+
}, null, 8 /* PROPS */, _hoisted_42), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("label", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)(legend.legendName), 1 /* TEXT */)], 512 /* NEED_PATCH */)), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, legend.isShow]]);
|
|
14981
|
+
}), 256 /* UNKEYED_FRAGMENT */)), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" </kq-space> ")], 512 /* NEED_PATCH */)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true)], 32 /* NEED_HYDRATION */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("指北针"), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
14104
14982
|
class: "kq3d-client-print-compassDiv",
|
|
14105
14983
|
onMouseover: setdragCursor,
|
|
14106
14984
|
onMousedown: dragTl,
|
|
@@ -14133,10 +15011,10 @@ const ClientPrintvue_type_script_setup_true_lang_js_default_ = {
|
|
|
14133
15011
|
}, {
|
|
14134
15012
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_namespaceObject.Close))]),
|
|
14135
15013
|
_: 1 /* STABLE */
|
|
14136
|
-
}, 8 /* PROPS */, ["title"])], 8 /* PROPS */,
|
|
15014
|
+
}, 8 /* PROPS */, ["title"])], 8 /* PROPS */, _hoisted_44)], 40 /* PROPS, NEED_HYDRATION */, _hoisted_43)), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, item.data.isShow]]);
|
|
14137
15015
|
}), 128 /* KEYED_FRAGMENT */))]),
|
|
14138
15016
|
_: 1 /* STABLE */
|
|
14139
|
-
}, 8 /* PROPS */, ["options", "service", "scenceInfo", "showToolButtons", "defaultShowLayerNames", "toolButtonsPosition", "showLogo"])) : (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",
|
|
15017
|
+
}, 8 /* PROPS */, ["options", "service", "scenceInfo", "showToolButtons", "defaultShowLayerNames", "toolButtonsPosition", "showLogo"])) : (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_45, [(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).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 */)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_47, [(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 */)]),
|
|
14140
15018
|
_: 1 /* STABLE */
|
|
14141
15019
|
})], 512 /* NEED_PATCH */)], 512 /* NEED_PATCH */);
|
|
14142
15020
|
};
|
|
@@ -14737,39 +15615,39 @@ const Measurevue_type_script_setup_true_lang_js_hoisted_26 = {
|
|
|
14737
15615
|
const Measurevue_type_script_setup_true_lang_js_hoisted_27 = {
|
|
14738
15616
|
class: "tit"
|
|
14739
15617
|
};
|
|
14740
|
-
const
|
|
15618
|
+
const Measurevue_type_script_setup_true_lang_js_hoisted_28 = {
|
|
14741
15619
|
class: "res"
|
|
14742
15620
|
};
|
|
14743
|
-
const
|
|
15621
|
+
const Measurevue_type_script_setup_true_lang_js_hoisted_29 = {
|
|
14744
15622
|
class: "tit"
|
|
14745
15623
|
};
|
|
14746
|
-
const
|
|
15624
|
+
const Measurevue_type_script_setup_true_lang_js_hoisted_30 = {
|
|
14747
15625
|
class: "res"
|
|
14748
15626
|
};
|
|
14749
|
-
const
|
|
15627
|
+
const Measurevue_type_script_setup_true_lang_js_hoisted_31 = {
|
|
14750
15628
|
key: 2,
|
|
14751
15629
|
class: "result"
|
|
14752
15630
|
};
|
|
14753
|
-
const
|
|
15631
|
+
const Measurevue_type_script_setup_true_lang_js_hoisted_32 = {
|
|
14754
15632
|
class: "tit"
|
|
14755
15633
|
};
|
|
14756
|
-
const
|
|
15634
|
+
const Measurevue_type_script_setup_true_lang_js_hoisted_33 = {
|
|
14757
15635
|
class: "res"
|
|
14758
15636
|
};
|
|
14759
|
-
const
|
|
15637
|
+
const Measurevue_type_script_setup_true_lang_js_hoisted_34 = {
|
|
14760
15638
|
class: "tit"
|
|
14761
15639
|
};
|
|
14762
|
-
const
|
|
15640
|
+
const Measurevue_type_script_setup_true_lang_js_hoisted_35 = {
|
|
14763
15641
|
class: "res"
|
|
14764
15642
|
};
|
|
14765
|
-
const
|
|
15643
|
+
const Measurevue_type_script_setup_true_lang_js_hoisted_36 = {
|
|
14766
15644
|
key: 3,
|
|
14767
15645
|
class: "result"
|
|
14768
15646
|
};
|
|
14769
|
-
const
|
|
15647
|
+
const Measurevue_type_script_setup_true_lang_js_hoisted_37 = {
|
|
14770
15648
|
class: "tit"
|
|
14771
15649
|
};
|
|
14772
|
-
const
|
|
15650
|
+
const Measurevue_type_script_setup_true_lang_js_hoisted_38 = {
|
|
14773
15651
|
class: "res"
|
|
14774
15652
|
};
|
|
14775
15653
|
|
|
@@ -15380,7 +16258,7 @@ const Measurevue_type_script_setup_true_lang_js_default_ = {
|
|
|
15380
16258
|
}, null, 8 /* PROPS */, ["label", "value"]);
|
|
15381
16259
|
}), 128 /* KEYED_FRAGMENT */))]),
|
|
15382
16260
|
_: 1 /* STABLE */
|
|
15383
|
-
}, 8 /* PROPS */, ["modelValue"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true)])) : (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", Measurevue_type_script_setup_true_lang_js_hoisted_13, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_14, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).measureResult), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(measureType) === 'height' ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", Measurevue_type_script_setup_true_lang_js_hoisted_15, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_16, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).spaceDistance), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_17, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).spaceDistance) + " m", 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_18, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).horizontalDistance), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_19, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).horizontalDistance) + " m", 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_20, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).verticalDistance), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_21, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).verticalDistance) + " m", 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_22, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).angle), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_23, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).angle) + " °", 1 /* TEXT */)])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(measureType) === 'coordinate' ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", Measurevue_type_script_setup_true_lang_js_hoisted_24, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_25, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).longitude), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_26, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).longitude), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_27, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).latitude), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p",
|
|
16261
|
+
}, 8 /* PROPS */, ["modelValue"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true)])) : (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", Measurevue_type_script_setup_true_lang_js_hoisted_13, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_14, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).measureResult), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(measureType) === 'height' ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", Measurevue_type_script_setup_true_lang_js_hoisted_15, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_16, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).spaceDistance), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_17, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).spaceDistance) + " m", 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_18, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).horizontalDistance), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_19, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).horizontalDistance) + " m", 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_20, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).verticalDistance), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_21, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).verticalDistance) + " m", 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_22, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).angle), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_23, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).angle) + " °", 1 /* TEXT */)])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(measureType) === 'coordinate' ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", Measurevue_type_script_setup_true_lang_js_hoisted_24, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_25, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).longitude), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_26, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).longitude), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_27, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).latitude), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_28, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).latitude), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_29, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).elevation), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_30, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).height) + " m", 1 /* TEXT */)])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(measureType) === 'azimuth' ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", Measurevue_type_script_setup_true_lang_js_hoisted_31, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_32, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).azimuth), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_33, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).azimuth) + " °", 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_34, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).distance), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_35, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result).distance) + " m", 1 /* TEXT */)])) : ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", Measurevue_type_script_setup_true_lang_js_hoisted_36, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_37, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language)[(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(measureType)]), 1 /* TEXT */), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", Measurevue_type_script_setup_true_lang_js_hoisted_38, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(result)), 1 /* TEXT */)]))])])])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true)])], 2 /* CLASS */);
|
|
15384
16262
|
};
|
|
15385
16263
|
}
|
|
15386
16264
|
}));
|
|
@@ -21775,14 +22653,6 @@ ScanEffect.install = (Vue, opts) => {
|
|
|
21775
22653
|
Vue.component(ScanEffect.name, ScanEffect);
|
|
21776
22654
|
};
|
|
21777
22655
|
|
|
21778
|
-
// EXTERNAL MODULE: external "core-js/modules/esnext.iterator.filter.js"
|
|
21779
|
-
var esnext_iterator_filter_js_ = __webpack_require__(602);
|
|
21780
|
-
// EXTERNAL MODULE: external "core-js/modules/web.url-search-params.delete.js"
|
|
21781
|
-
var web_url_search_params_delete_js_ = __webpack_require__(411);
|
|
21782
|
-
// EXTERNAL MODULE: external "core-js/modules/web.url-search-params.has.js"
|
|
21783
|
-
var web_url_search_params_has_js_ = __webpack_require__(168);
|
|
21784
|
-
// EXTERNAL MODULE: external "core-js/modules/web.url-search-params.size.js"
|
|
21785
|
-
var web_url_search_params_size_js_ = __webpack_require__(217);
|
|
21786
22656
|
;// CONCATENATED MODULE: ./src/webgl/heatmap3d/Heatmap3dViewModel.js
|
|
21787
22657
|
|
|
21788
22658
|
/*
|
|
@@ -25306,8 +26176,6 @@ ViewshedAnalysis.install = (Vue, opts) => {
|
|
|
25306
26176
|
Vue.component(ViewshedAnalysis.name, ViewshedAnalysis);
|
|
25307
26177
|
};
|
|
25308
26178
|
|
|
25309
|
-
// EXTERNAL MODULE: external "core-js/modules/esnext.iterator.map.js"
|
|
25310
|
-
var esnext_iterator_map_js_ = __webpack_require__(224);
|
|
25311
26179
|
;// CONCATENATED MODULE: ./src/webgl/shadowanalysis/ShadowAnalysisViewModel.js
|
|
25312
26180
|
|
|
25313
26181
|
|
|
@@ -35717,6 +36585,8 @@ class AddDataViewModel {
|
|
|
35717
36585
|
if (that._viewer.timeline.container.style.display != 'block') {
|
|
35718
36586
|
that._viewer.bottomContainer.style.bottom = '15px';
|
|
35719
36587
|
that._viewer.timeline.container.style.display = 'block';
|
|
36588
|
+
that._viewer.animation.container.style.display = 'block';
|
|
36589
|
+
that._viewer.animation.resize();
|
|
35720
36590
|
that._viewer.clock.shouldAnimate = true;
|
|
35721
36591
|
}
|
|
35722
36592
|
that._viewer.dataSources.add(Cesium.CzmlDataSource.load(ret, {
|