@kq_npm/client3d_webgl_vue 3.0.7-beta → 3.0.9-beta
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 +290 -319
- package/adddata/style/adddata.css +1 -1
- package/aspectanalysis/index.js +47 -179
- package/aspectanalysis/style/aspectanalysis.css +1 -1
- package/baseterraingallery/index.js +39 -177
- package/baseterraingallery/style/baseterraingallery.css +1 -1
- package/boxclip/index.js +50 -182
- package/boxclip/style/boxclip.css +1 -1
- package/excavatefillanalysis/index.js +57 -189
- package/excavatefillanalysis/style/excavatefillanalysis.css +1 -1
- package/flight/index.js +42 -177
- package/floodanalysis/index.js +64 -199
- package/floodanalysis/style/floodanalysis.css +1 -1
- package/gpuspatialquery/index.js +47 -179
- package/gpuspatialquery/style/gpuspatialquery.css +1 -1
- package/headertemp/index.js +34 -83
- package/index.js +1378 -733
- package/isolineanalysis/index.js +75 -207
- package/isolineanalysis/style/isolineanalysis.css +1 -1
- package/measure/index.js +42 -177
- package/modelselect/index.js +49 -182
- package/modelselect/style/modelselect.css +1 -1
- package/package.json +1 -1
- package/particleeffect/index.js +45 -178
- package/particleeffect/style/particleeffect.css +1 -1
- package/planeclip/index.js +51 -183
- package/planeclip/style/planeclip.css +1 -1
- package/profileanalysis/index.js +50 -182
- package/profileanalysis/style/profileanalysis.css +1 -1
- package/roller/index.js +43 -188
- package/scenceview/index.js +1477 -851
- package/screenshot/index.js +47 -179
- package/screenshot/style/screenshot.css +1 -1
- package/shadowanalysis/index.js +58 -190
- package/shadowanalysis/style/shadowanalysis.css +1 -1
- package/sightlineanalysis/index.js +46 -179
- package/sightlineanalysis/style/sightlineanalysis.css +1 -1
- package/skylineanalysis/index.js +49 -181
- package/skylineanalysis/style/skylineanalysis.css +1 -1
- package/slopeanalysis/index.js +62 -194
- package/slopeanalysis/style/slopeanalysis.css +1 -1
- package/style.css +1 -1
- package/terrainoperation/index.js +53 -185
- package/terrainoperation/style/terrainoperation.css +1 -1
- package/underground/index.js +32 -20
- package/viewshedanalysis/index.js +45 -178
- package/viewshedanalysis/style/viewshedanalysis.css +1 -1
- package/weathereffect/index.js +48 -180
- package/weathereffect/style/weathereffect.css +1 -1
package/isolineanalysis/index.js
CHANGED
|
@@ -2,169 +2,6 @@
|
|
|
2
2
|
/******/ "use strict";
|
|
3
3
|
/******/ var __webpack_modules__ = ({
|
|
4
4
|
|
|
5
|
-
/***/ 519:
|
|
6
|
-
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
// EXPORTS
|
|
10
|
-
__webpack_require__.d(__webpack_exports__, {
|
|
11
|
-
"default": function() { return /* reexport */ HeaderTemp; }
|
|
12
|
-
});
|
|
13
|
-
|
|
14
|
-
// EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
15
|
-
var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(637);
|
|
16
|
-
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
17
|
-
var util_ = __webpack_require__(9519);
|
|
18
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/headertemp/HeaderTemp.vue?vue&type=script&setup=true&lang=js
|
|
19
|
-
|
|
20
|
-
const _hoisted_1 = {
|
|
21
|
-
class: "kq-control-header-temp"
|
|
22
|
-
};
|
|
23
|
-
const _hoisted_2 = {
|
|
24
|
-
class: "_title"
|
|
25
|
-
};
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
const __default__ = {
|
|
29
|
-
name: "Kq3dHeaderTemp"
|
|
30
|
-
};
|
|
31
|
-
/* harmony default export */ var HeaderTempvue_type_script_setup_true_lang_js = (/*#__PURE__*/Object.assign(__default__, {
|
|
32
|
-
props: {
|
|
33
|
-
// 是否显示阴影效果
|
|
34
|
-
showShadow: {
|
|
35
|
-
type: Boolean,
|
|
36
|
-
default: true
|
|
37
|
-
},
|
|
38
|
-
// HeaderTemp标题
|
|
39
|
-
headerTempTitle: {
|
|
40
|
-
type: String,
|
|
41
|
-
default: ""
|
|
42
|
-
},
|
|
43
|
-
// HeaderTemp图标
|
|
44
|
-
headerTempIcon: {
|
|
45
|
-
type: Object
|
|
46
|
-
},
|
|
47
|
-
// HeaderTemp是否折叠
|
|
48
|
-
isCollapse: {
|
|
49
|
-
type: Boolean,
|
|
50
|
-
default: false
|
|
51
|
-
},
|
|
52
|
-
// HeaderTemp Title&Icon的位置
|
|
53
|
-
isRight: {
|
|
54
|
-
type: Boolean,
|
|
55
|
-
default: true
|
|
56
|
-
}
|
|
57
|
-
},
|
|
58
|
-
|
|
59
|
-
setup(__props, {
|
|
60
|
-
expose
|
|
61
|
-
}) {
|
|
62
|
-
const props = __props;
|
|
63
|
-
const proxy = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.getCurrentInstance)(); // 获取组件传参
|
|
64
|
-
// 图标组件
|
|
65
|
-
|
|
66
|
-
let iconBtn = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
67
|
-
let isCollapse = props.isCollapse;
|
|
68
|
-
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
69
|
-
iconBtn.value = props.headerTempIcon;
|
|
70
|
-
let dom = proxy.parent.vnode.el;
|
|
71
|
-
|
|
72
|
-
if (!props.isRight) {
|
|
73
|
-
(0,util_.addClass)(dom, ["kq-is-show", "kq-is-left"]);
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
if (isCollapse) {
|
|
77
|
-
if (props.showShadow) {
|
|
78
|
-
(0,util_.addClass)(dom, ["kq-is-hide", "kq-light-shadow"]);
|
|
79
|
-
(0,util_.removeClass)(dom, ["kq-is-show", "kq-box-shadow"]);
|
|
80
|
-
} else {
|
|
81
|
-
(0,util_.addClass)(dom, "kq-is-hide");
|
|
82
|
-
(0,util_.removeClass)(dom, "kq-is-show");
|
|
83
|
-
}
|
|
84
|
-
} else {
|
|
85
|
-
if (props.showShadow) {
|
|
86
|
-
(0,util_.removeClass)(dom, ["kq-is-hide", "kq-light-shadow"]);
|
|
87
|
-
(0,util_.addClass)(dom, ["kq-is-show", "kq-box-shadow"]);
|
|
88
|
-
} else {
|
|
89
|
-
(0,util_.removeClass)(dom, "kq-is-hide");
|
|
90
|
-
(0,util_.addClass)(dom, "kq-is-show");
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
}); // 图标按钮点击事件
|
|
94
|
-
|
|
95
|
-
function btnClick() {
|
|
96
|
-
isCollapse = !isCollapse;
|
|
97
|
-
let dom = proxy.parent.vnode.el;
|
|
98
|
-
|
|
99
|
-
if (isCollapse) {
|
|
100
|
-
// 折叠
|
|
101
|
-
if (props.showShadow) {
|
|
102
|
-
(0,util_.addClass)(dom, ["kq-is-hide", "kq-light-shadow"]);
|
|
103
|
-
(0,util_.removeClass)(dom, ["kq-is-show", "kq-box-shadow"]);
|
|
104
|
-
} else {
|
|
105
|
-
(0,util_.addClass)(dom, "kq-is-hide");
|
|
106
|
-
(0,util_.removeClass)(dom, "kq-is-show");
|
|
107
|
-
}
|
|
108
|
-
} else {
|
|
109
|
-
// 展开
|
|
110
|
-
if (props.showShadow) {
|
|
111
|
-
(0,util_.addClass)(dom, ["kq-is-show", "kq-box-shadow"]);
|
|
112
|
-
(0,util_.removeClass)(dom, ["kq-is-hide", "kq-light-shadow"]);
|
|
113
|
-
} else {
|
|
114
|
-
(0,util_.addClass)(dom, "kq-is-show");
|
|
115
|
-
(0,util_.removeClass)(dom, "kq-is-hide");
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
expose({
|
|
121
|
-
btnClick
|
|
122
|
-
});
|
|
123
|
-
return (_ctx, _cache) => {
|
|
124
|
-
const _component_kq_icon = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-icon");
|
|
125
|
-
|
|
126
|
-
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_2, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)(__props.headerTempTitle), 1
|
|
127
|
-
/* TEXT */
|
|
128
|
-
), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
129
|
-
class: "_btn kq-control-header-temp_btn",
|
|
130
|
-
onClick: btnClick
|
|
131
|
-
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, {
|
|
132
|
-
size: 16
|
|
133
|
-
}, {
|
|
134
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [((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_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(iconBtn))))]),
|
|
135
|
-
_: 1
|
|
136
|
-
/* STABLE */
|
|
137
|
-
|
|
138
|
-
})])]);
|
|
139
|
-
};
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
}));
|
|
143
|
-
;// CONCATENATED MODULE: ./src/webgl/headertemp/HeaderTemp.vue?vue&type=script&setup=true&lang=js
|
|
144
|
-
|
|
145
|
-
;// CONCATENATED MODULE: ./src/webgl/headertemp/HeaderTemp.vue
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
const __exports__ = HeaderTempvue_type_script_setup_true_lang_js;
|
|
150
|
-
|
|
151
|
-
/* harmony default export */ var HeaderTemp = (__exports__);
|
|
152
|
-
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/init.js"
|
|
153
|
-
var init_js_ = __webpack_require__(5406);
|
|
154
|
-
var init_js_default = /*#__PURE__*/__webpack_require__.n(init_js_);
|
|
155
|
-
;// CONCATENATED MODULE: ./src/webgl/headertemp/index.js
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
HeaderTemp.install = (Vue, opts) => {
|
|
160
|
-
init_js_default()(Vue, opts);
|
|
161
|
-
Vue.component(HeaderTemp.name, HeaderTemp);
|
|
162
|
-
};
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
/***/ }),
|
|
167
|
-
|
|
168
5
|
/***/ 348:
|
|
169
6
|
/***/ (function(module) {
|
|
170
7
|
|
|
@@ -658,72 +495,75 @@ class IsolineAnalysisViewModel {
|
|
|
658
495
|
}
|
|
659
496
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
660
497
|
var client_icons_vue_ = __webpack_require__(348);
|
|
661
|
-
// EXTERNAL MODULE:
|
|
662
|
-
var
|
|
498
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
499
|
+
var util_ = __webpack_require__(9519);
|
|
663
500
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/isolineanalysis/IsolineAnalysis.vue?vue&type=script&setup=true&lang=js
|
|
664
501
|
|
|
665
502
|
const _hoisted_1 = {
|
|
666
|
-
class: "kq3d-isoline-analysis-
|
|
503
|
+
class: "kq3d-isoline-analysis-box"
|
|
667
504
|
};
|
|
668
505
|
const _hoisted_2 = {
|
|
669
|
-
|
|
506
|
+
class: "kq3d-isoline-analysis-span"
|
|
670
507
|
};
|
|
671
508
|
const _hoisted_3 = {
|
|
672
|
-
|
|
509
|
+
key: 0
|
|
673
510
|
};
|
|
674
511
|
const _hoisted_4 = {
|
|
675
|
-
|
|
512
|
+
class: "kq3d-isoline-analysis-heightspan"
|
|
676
513
|
};
|
|
677
514
|
const _hoisted_5 = {
|
|
515
|
+
key: 1
|
|
516
|
+
};
|
|
517
|
+
const _hoisted_6 = {
|
|
678
518
|
style: {
|
|
679
519
|
"width": "15%",
|
|
680
520
|
"text-align": "left"
|
|
681
521
|
}
|
|
682
522
|
};
|
|
683
523
|
|
|
684
|
-
const
|
|
524
|
+
const _hoisted_7 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
685
525
|
class: "kq3d-isoline-analysis-line"
|
|
686
526
|
}, null, -1
|
|
687
527
|
/* HOISTED */
|
|
688
528
|
);
|
|
689
529
|
|
|
690
|
-
const
|
|
530
|
+
const _hoisted_8 = {
|
|
691
531
|
style: {
|
|
692
532
|
"width": "15%",
|
|
693
533
|
"text-align": "right"
|
|
694
534
|
}
|
|
695
535
|
};
|
|
696
|
-
const
|
|
697
|
-
const
|
|
536
|
+
const _hoisted_9 = ["src"];
|
|
537
|
+
const _hoisted_10 = {
|
|
698
538
|
key: 0
|
|
699
539
|
};
|
|
700
|
-
const
|
|
540
|
+
const _hoisted_11 = {
|
|
701
541
|
class: "kq3d-isoline-analysis-heightspan"
|
|
702
542
|
};
|
|
703
|
-
const
|
|
543
|
+
const _hoisted_12 = {
|
|
704
544
|
key: 1
|
|
705
545
|
};
|
|
706
|
-
const
|
|
546
|
+
const _hoisted_13 = {
|
|
707
547
|
style: {
|
|
708
548
|
"width": "15%",
|
|
709
549
|
"text-align": "left"
|
|
710
550
|
}
|
|
711
551
|
};
|
|
712
552
|
|
|
713
|
-
const
|
|
553
|
+
const _hoisted_14 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
714
554
|
class: "kq3d-isoline-analysis-line"
|
|
715
555
|
}, null, -1
|
|
716
556
|
/* HOISTED */
|
|
717
557
|
);
|
|
718
558
|
|
|
719
|
-
const
|
|
559
|
+
const _hoisted_15 = {
|
|
720
560
|
style: {
|
|
721
561
|
"width": "15%",
|
|
722
562
|
"text-align": "right"
|
|
723
563
|
}
|
|
724
564
|
};
|
|
725
|
-
const
|
|
726
|
-
const
|
|
565
|
+
const _hoisted_16 = ["src"];
|
|
566
|
+
const _hoisted_17 = {
|
|
727
567
|
class: "kq3d-isoline-analysis-footer"
|
|
728
568
|
};
|
|
729
569
|
|
|
@@ -746,6 +586,11 @@ const __default__ = {
|
|
|
746
586
|
type: Boolean,
|
|
747
587
|
default: true
|
|
748
588
|
},
|
|
589
|
+
|
|
590
|
+
/**
|
|
591
|
+
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
592
|
+
*/
|
|
593
|
+
position: [String, Object],
|
|
749
594
|
// 是否生成HeaderTemp
|
|
750
595
|
showHeaderTemp: {
|
|
751
596
|
type: Boolean,
|
|
@@ -869,8 +714,21 @@ const __default__ = {
|
|
|
869
714
|
surfaceAlpha: props.settingParams && props.settingParams.surfaceAlpha || 0.6 // 面透明度
|
|
870
715
|
|
|
871
716
|
});
|
|
872
|
-
let viewModel = null;
|
|
717
|
+
let viewModel = null; // 组件容器Ref
|
|
718
|
+
|
|
719
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
|
|
720
|
+
|
|
721
|
+
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
722
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
873
723
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
724
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
725
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
|
|
726
|
+
(0,util_.updatePosition)(boxRef.value, props);
|
|
727
|
+
});
|
|
728
|
+
watchCreateHeaderTemp();
|
|
729
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
|
|
730
|
+
watchCreateHeaderTemp();
|
|
731
|
+
});
|
|
874
732
|
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
875
733
|
|
|
876
734
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
@@ -911,7 +769,18 @@ const __default__ = {
|
|
|
911
769
|
viewModel = new IsolineAnalysisViewModel(scenceView, options);
|
|
912
770
|
}
|
|
913
771
|
});
|
|
914
|
-
});
|
|
772
|
+
});
|
|
773
|
+
/**
|
|
774
|
+
* @description 监听header生成
|
|
775
|
+
*/
|
|
776
|
+
|
|
777
|
+
const watchCreateHeaderTemp = () => {
|
|
778
|
+
if (props.showHeaderTemp) {
|
|
779
|
+
// 生成headerTemp
|
|
780
|
+
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef);
|
|
781
|
+
}
|
|
782
|
+
}; // 刷新自定义样式数组
|
|
783
|
+
|
|
915
784
|
|
|
916
785
|
function refactorArr(type) {
|
|
917
786
|
if (!dataList || !dataList.length) return;
|
|
@@ -1102,23 +971,22 @@ const __default__ = {
|
|
|
1102
971
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
1103
972
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-isoline-analysis", {
|
|
1104
973
|
'kq-box-shadow': __props.showShadow
|
|
1105
|
-
}])
|
|
1106
|
-
|
|
974
|
+
}]),
|
|
975
|
+
ref_key: "boxRef",
|
|
976
|
+
ref: boxRef
|
|
977
|
+
}, [__props.showHeaderTemp ? ((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_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
|
|
1107
978
|
key: 0,
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
}, null, 8
|
|
1114
|
-
/* PROPS */
|
|
1115
|
-
, ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
979
|
+
ref_key: "headerTempRef",
|
|
980
|
+
ref: headerTempRef
|
|
981
|
+
}, null, 512
|
|
982
|
+
/* NEED_PATCH */
|
|
983
|
+
)) : (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", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
1116
984
|
gutter: 20
|
|
1117
985
|
}, {
|
|
1118
986
|
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, {
|
|
1119
987
|
span: 6
|
|
1120
988
|
}, {
|
|
1121
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span",
|
|
989
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", _hoisted_2, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).fillType), 1
|
|
1122
990
|
/* TEXT */
|
|
1123
991
|
)]),
|
|
1124
992
|
_: 1
|
|
@@ -1819,7 +1687,7 @@ const __default__ = {
|
|
|
1819
1687
|
_: 1
|
|
1820
1688
|
/* STABLE */
|
|
1821
1689
|
|
|
1822
|
-
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle === 0 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div",
|
|
1690
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle === 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_3, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
1823
1691
|
style: {
|
|
1824
1692
|
"display": "flex"
|
|
1825
1693
|
}
|
|
@@ -1877,7 +1745,7 @@ const __default__ = {
|
|
|
1877
1745
|
"controls-position": "right"
|
|
1878
1746
|
}, null, 8
|
|
1879
1747
|
/* PROPS */
|
|
1880
|
-
, ["modelValue", "onUpdate: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_.createElementVNode)("span",
|
|
1748
|
+
, ["modelValue", "onUpdate: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_.createElementVNode)("span", _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).to), 1
|
|
1881
1749
|
/* TEXT */
|
|
1882
1750
|
), index > 0 && index < (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList).length - 1 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_input_number, {
|
|
1883
1751
|
key: 2,
|
|
@@ -1932,7 +1800,7 @@ const __default__ = {
|
|
|
1932
1800
|
);
|
|
1933
1801
|
}), 128
|
|
1934
1802
|
/* KEYED_FRAGMENT */
|
|
1935
|
-
))])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle === 1 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div",
|
|
1803
|
+
))])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle === 1 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", _hoisted_5, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
1936
1804
|
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, {
|
|
1937
1805
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).gradientColor
|
|
1938
1806
|
}, {
|
|
@@ -1941,9 +1809,9 @@ const __default__ = {
|
|
|
1941
1809
|
"display": "flex"
|
|
1942
1810
|
}
|
|
1943
1811
|
}, {
|
|
1944
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
1812
|
+
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_6, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight) + "m", 1
|
|
1945
1813
|
/* TEXT */
|
|
1946
|
-
),
|
|
1814
|
+
), _hoisted_7, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_8, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight) + "m", 1
|
|
1947
1815
|
/* TEXT */
|
|
1948
1816
|
)]),
|
|
1949
1817
|
_: 1
|
|
@@ -1965,7 +1833,7 @@ const __default__ = {
|
|
|
1965
1833
|
alt: "无"
|
|
1966
1834
|
}, null, 8
|
|
1967
1835
|
/* PROPS */
|
|
1968
|
-
,
|
|
1836
|
+
, _hoisted_9)]),
|
|
1969
1837
|
_: 2
|
|
1970
1838
|
/* DYNAMIC */
|
|
1971
1839
|
|
|
@@ -2647,7 +2515,7 @@ const __default__ = {
|
|
|
2647
2515
|
_: 1
|
|
2648
2516
|
/* STABLE */
|
|
2649
2517
|
|
|
2650
|
-
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle === 0 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div",
|
|
2518
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle === 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_10, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
2651
2519
|
style: {
|
|
2652
2520
|
"display": "flex"
|
|
2653
2521
|
}
|
|
@@ -2705,7 +2573,7 @@ const __default__ = {
|
|
|
2705
2573
|
"controls-position": "right"
|
|
2706
2574
|
}, null, 8
|
|
2707
2575
|
/* PROPS */
|
|
2708
|
-
, ["modelValue", "onUpdate: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_.createElementVNode)("span",
|
|
2576
|
+
, ["modelValue", "onUpdate: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_.createElementVNode)("span", _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).to), 1
|
|
2709
2577
|
/* TEXT */
|
|
2710
2578
|
), index > 0 && index < (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(dataList).length - 1 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_input_number, {
|
|
2711
2579
|
key: 2,
|
|
@@ -2760,7 +2628,7 @@ const __default__ = {
|
|
|
2760
2628
|
);
|
|
2761
2629
|
}), 128
|
|
2762
2630
|
/* KEYED_FRAGMENT */
|
|
2763
|
-
))])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle === 1 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div",
|
|
2631
|
+
))])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillStyle === 1 ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", _hoisted_12, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
2764
2632
|
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, {
|
|
2765
2633
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).gradientColor
|
|
2766
2634
|
}, {
|
|
@@ -2769,9 +2637,9 @@ const __default__ = {
|
|
|
2769
2637
|
"display": "flex"
|
|
2770
2638
|
}
|
|
2771
2639
|
}, {
|
|
2772
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
2640
|
+
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_13, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight) + "m", 1
|
|
2773
2641
|
/* TEXT */
|
|
2774
|
-
),
|
|
2642
|
+
), _hoisted_14, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_15, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight) + "m", 1
|
|
2775
2643
|
/* TEXT */
|
|
2776
2644
|
)]),
|
|
2777
2645
|
_: 1
|
|
@@ -2793,7 +2661,7 @@ const __default__ = {
|
|
|
2793
2661
|
alt: ""
|
|
2794
2662
|
}, null, 8
|
|
2795
2663
|
/* PROPS */
|
|
2796
|
-
,
|
|
2664
|
+
, _hoisted_16)]),
|
|
2797
2665
|
_: 2
|
|
2798
2666
|
/* DYNAMIC */
|
|
2799
2667
|
|
|
@@ -2846,7 +2714,7 @@ const __default__ = {
|
|
|
2846
2714
|
|
|
2847
2715
|
}, 8
|
|
2848
2716
|
/* PROPS */
|
|
2849
|
-
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div",
|
|
2717
|
+
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_17, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
2850
2718
|
onClick: _cache[110] || (_cache[110] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => startAnalysis(), ["stop"])),
|
|
2851
2719
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).startAnalysis,
|
|
2852
2720
|
type: "primary"
|
|
@@ -2871,7 +2739,7 @@ const __default__ = {
|
|
|
2871
2739
|
|
|
2872
2740
|
}, 8
|
|
2873
2741
|
/* PROPS */
|
|
2874
|
-
, ["title"])])], 2
|
|
2742
|
+
, ["title"])])])], 2
|
|
2875
2743
|
/* CLASS */
|
|
2876
2744
|
);
|
|
2877
2745
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.kq3d-isoline-analysis{z-index:999;
|
|
1
|
+
.kq3d-isoline-analysis{z-index:999;border-radius:var(--kq-border-radius-base);padding:16px;pointer-events:auto;cursor:default;background-color:var(--kq-bg-color)}.kq3d-isoline-analysis .kq3d-isoline-analysis-box{width:372px}.kq3d-isoline-analysis .kq3d-isoline-analysis-span{color:var(--kq-text-color-regular);line-height:32px;margin:0;font-size:var(--kq-font-size-base)}.kq3d-isoline-analysis .kq-tabs__header{margin:0 0 8px}.kq3d-isoline-analysis .kq3d-isoline-analysis-heightspan{margin:0 20px}.kq3d-isoline-analysis .kq3d-isoline-analysis-tip{color:var(--kq-text-color-regular);font-size:var(--kq-font-size-base)}.kq3d-isoline-analysis .kq3d-isoline-analysis-tip p{margin-top:16px;margin-bottom:16px}.kq3d-isoline-analysis .kq-select{width:100%}.kq3d-isoline-analysis .kq3d-isoline-analysis-collapse .kq-row{display:block}.kq3d-isoline-analysis .kq3d-isoline-analysis-collapse .kq-divider--horizontal{margin:0}.kq3d-isoline-analysis .kq-collapse{border:unset}.kq3d-isoline-analysis .kq-collapse .kq-collapse-item__header{border:unset;height:38px;background-color:var(--kq-fill-color-light);font-weight:700;padding:0 16px;font-size:16px}.kq3d-isoline-analysis .kq-collapse .kq-collapse-item__arrow{margin:0 0 0 auto}.kq3d-isoline-analysis .kq-collapse .kq-collapse-item__wrap .kq-collapse-item__content{padding-bottom:unset;border:unset;padding-top:8px}.kq3d-isoline-analysis .kq-form-item{margin-bottom:8px}.kq3d-isoline-analysis .kq-form-item__content{text-align:end;display:block}.kq3d-isoline-analysis .kq-slider{width:90%}.kq3d-isoline-analysis .kq-slider .kq-slider__button{width:14px;height:14px}.kq3d-isoline-analysis .kq-input-number.is-controls-right{width:65px}.kq3d-isoline-analysis .kq-input-number.is-controls-right .kq-input-number__decrease,.kq3d-isoline-analysis .kq-input-number.is-controls-right .kq-input-number__increase{width:20px}.kq3d-isoline-analysis .kq-col-8 .kq-input-number .kq-input__wrapper,.kq3d-isoline-analysis .kq-input-number.is-controls-right .kq-input__wrapper{padding-left:0;padding-right:20px}.kq3d-isoline-analysis .kq-color-picker,.kq3d-isoline-analysis .kq-color-picker .kq-color-picker__mask,.kq3d-isoline-analysis .kq-color-picker .kq-color-picker__trigger{width:100%}.kq3d-isoline-analysis .kq3d-isoline-analysis-line{width:64%;margin:14px 8px;height:2px;overflow:hidden;background:#c0c4cc;border-radius:4px}.kq3d-isoline-analysis .kq3d-isoline-analysis-legend{width:248px;height:24px}.kq3d-isoline-analysis .kq3d-isoline-analysis-footer{text-align:right;padding:16px 0 0}
|