@kq_npm/client3d_webgl_vue 4.4.0 → 4.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/clientPrint/index.js +3 -3
- package/index.js +521 -14
- package/package.json +1 -1
- package/scenetohdimage/index.js +518 -11
- package/scenetohdimage/style/scenetohdimage.css +1 -1
- package/sceneview/index.js +521 -14
- package/sceneview/style/index.js +1 -1
- package/style.css +1 -1
package/sceneview/index.js
CHANGED
|
@@ -4879,7 +4879,7 @@ const __default__ = {
|
|
|
4879
4879
|
}
|
|
4880
4880
|
*/
|
|
4881
4881
|
service: Object,
|
|
4882
|
-
//
|
|
4882
|
+
// SceneView初始化的参数对象,包含初始化范围和layer信息。
|
|
4883
4883
|
scenceInfo: Object,
|
|
4884
4884
|
// 默认显示的图层组名称
|
|
4885
4885
|
defaultShowLayerNames: Array,
|
|
@@ -5730,7 +5730,7 @@ const __default__ = {
|
|
|
5730
5730
|
|
|
5731
5731
|
const _component_kq3d_compass = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq3d-compass");
|
|
5732
5732
|
|
|
5733
|
-
const
|
|
5733
|
+
const _component_kq_scene_view = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-scene-view");
|
|
5734
5734
|
|
|
5735
5735
|
const _component_kq_scrollbar = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-scrollbar");
|
|
5736
5736
|
|
|
@@ -6712,7 +6712,7 @@ const __default__ = {
|
|
|
6712
6712
|
src: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(scenceImageUrl)
|
|
6713
6713
|
}, null, 8
|
|
6714
6714
|
/* PROPS */
|
|
6715
|
-
, _hoisted_22)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(
|
|
6715
|
+
, _hoisted_22)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_scene_view, {
|
|
6716
6716
|
target: 'scencePrint',
|
|
6717
6717
|
options: __props.options,
|
|
6718
6718
|
service: __props.service,
|
|
@@ -27803,10 +27803,104 @@ SceneSet.install = (Vue, opts) => {
|
|
|
27803
27803
|
* 场景高清出图
|
|
27804
27804
|
**/
|
|
27805
27805
|
class SceneToHDImageViewModel {
|
|
27806
|
-
|
|
27806
|
+
// 输出图片区域
|
|
27807
|
+
// 缩放比
|
|
27808
|
+
constructor(viewer, options) {
|
|
27807
27809
|
(0,_Users_zpc_Documents_KQGEOSpace_KQGISClientForVue_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z)(this, "_viewer", null);
|
|
27808
27810
|
|
|
27811
|
+
(0,_Users_zpc_Documents_KQGEOSpace_KQGISClientForVue_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z)(this, "_options", null);
|
|
27812
|
+
|
|
27813
|
+
(0,_Users_zpc_Documents_KQGEOSpace_KQGISClientForVue_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z)(this, "_canvasToImage", null);
|
|
27814
|
+
|
|
27815
|
+
(0,_Users_zpc_Documents_KQGEOSpace_KQGISClientForVue_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z)(this, "_exportPictureRegion", null);
|
|
27816
|
+
|
|
27817
|
+
(0,_Users_zpc_Documents_KQGEOSpace_KQGISClientForVue_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z)(this, "_pantographRatio", null);
|
|
27818
|
+
|
|
27809
27819
|
this._viewer = viewer;
|
|
27820
|
+
this._options = options;
|
|
27821
|
+
this._viewer.enabledFXAA = true; // this._exportPictureRegion = document.createElement("div");
|
|
27822
|
+
// this._exportPictureRegion.class = "export-picture-region";
|
|
27823
|
+
// this._exportPictureRegion.id = "exportPictureRegion";
|
|
27824
|
+
// this._tbSlider = document.createElement("div");
|
|
27825
|
+
// this._tbSlider.class = "shutter-slider";
|
|
27826
|
+
// this._tbSlider.id = "tbSlider";
|
|
27827
|
+
// this._viewer.container.appendChild(this._lrSlider);
|
|
27828
|
+
// this._viewer.container.appendChild(this._tbSlider);
|
|
27829
|
+
|
|
27830
|
+
console.log(this._viewer._container.id); //声明场景出图类
|
|
27831
|
+
|
|
27832
|
+
this._canvasToImage = new Cesium.Kq3dCanvasToImage(this._viewer._container.id, {
|
|
27833
|
+
viewer: this._viewer,
|
|
27834
|
+
canvas: this._viewer.scene.canvas
|
|
27835
|
+
});
|
|
27836
|
+
}
|
|
27837
|
+
|
|
27838
|
+
resizeExportRegionSize() {} // 出图
|
|
27839
|
+
|
|
27840
|
+
|
|
27841
|
+
sceneToImages() {
|
|
27842
|
+
var width = Number(this._options.width),
|
|
27843
|
+
height = Number(this._options.height),
|
|
27844
|
+
resolutionWidth = Number(this._options.resolutionWidth),
|
|
27845
|
+
resolutionHeight = Number(this._options.resolutionHeight); //设置宽、高、图片类型
|
|
27846
|
+
|
|
27847
|
+
var options = {
|
|
27848
|
+
width: width,
|
|
27849
|
+
//图片宽度
|
|
27850
|
+
height: height,
|
|
27851
|
+
//图片高度
|
|
27852
|
+
type: this._options.type //图片类型
|
|
27853
|
+
|
|
27854
|
+
};
|
|
27855
|
+
|
|
27856
|
+
if (width == resolutionWidth && height == resolutionHeight) {
|
|
27857
|
+
this._canvasToImage.saveAsimages(this._viewer.scene.canvas, options);
|
|
27858
|
+
} else {
|
|
27859
|
+
this._viewer.render();
|
|
27860
|
+
|
|
27861
|
+
var ctx = this._viewer.scene.canvas.getContext("2d");
|
|
27862
|
+
|
|
27863
|
+
var startX = (resolutionWidth - width) / 2,
|
|
27864
|
+
startY = (resolutionHeight - height) / 2;
|
|
27865
|
+
var canvas = document.createElement('canvas');
|
|
27866
|
+
canvas.width = width;
|
|
27867
|
+
canvas.height = height;
|
|
27868
|
+
var newCtx = canvas.getContext("2d");
|
|
27869
|
+
newCtx.drawImage(this._viewer.canvas, startX, startY, width, height, 0, 0, width, height);
|
|
27870
|
+
|
|
27871
|
+
this._canvasToImage.saveAsimages(canvas, options);
|
|
27872
|
+
}
|
|
27873
|
+
}
|
|
27874
|
+
|
|
27875
|
+
scaleCesiumContainer() {
|
|
27876
|
+
var bWidth = $('body').width(),
|
|
27877
|
+
bHeight = $('body').height();
|
|
27878
|
+
var width = Number(this._options.resolutionWidth),
|
|
27879
|
+
height = Number(this._options.resolutionHeight);
|
|
27880
|
+
var wRatio = bWidth / width,
|
|
27881
|
+
hRatio = bHeight / height; // if (wRatio < 1 || hRatio < 1) {
|
|
27882
|
+
|
|
27883
|
+
var scale = Math.min(wRatio, hRatio);
|
|
27884
|
+
$('#cesiumContainer').css('width', width + 'px').css('height', height + 'px').css('transform', `translate(-50%,-50%) scale(${scale > 1 ? 1 : scale})`);
|
|
27885
|
+
this._options.scale = scale > 1 ? 1 : scale;
|
|
27886
|
+
} //将值转换成4的倍数
|
|
27887
|
+
|
|
27888
|
+
|
|
27889
|
+
convertValueTo4Times(value) {
|
|
27890
|
+
if (Math.abs(value % 4) > 0.000001) {
|
|
27891
|
+
if (Math.abs(value % 4) > 1.5) {
|
|
27892
|
+
value = 4 * (parseInt(value / 4) + 1);
|
|
27893
|
+
} else {
|
|
27894
|
+
value = 4 * parseInt(value / 4);
|
|
27895
|
+
}
|
|
27896
|
+
}
|
|
27897
|
+
|
|
27898
|
+
return value || 4;
|
|
27899
|
+
} // 参数切换
|
|
27900
|
+
|
|
27901
|
+
|
|
27902
|
+
paramsChanged(key, val) {
|
|
27903
|
+
this._options[key] = val;
|
|
27810
27904
|
} // 销毁
|
|
27811
27905
|
|
|
27812
27906
|
|
|
@@ -27845,6 +27939,9 @@ var vue_i18n_cjs_js_ = __webpack_require__(7080);
|
|
|
27845
27939
|
const _hoisted_1 = {
|
|
27846
27940
|
class: "kq3d-scene-to-hd-image-box"
|
|
27847
27941
|
};
|
|
27942
|
+
const _hoisted_2 = {
|
|
27943
|
+
class: "kq3d-scene-to-hd-image-footer"
|
|
27944
|
+
};
|
|
27848
27945
|
|
|
27849
27946
|
|
|
27850
27947
|
|
|
@@ -27905,12 +28002,41 @@ const __default__ = {
|
|
|
27905
28002
|
} = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.getCurrentInstance)();
|
|
27906
28003
|
let currentLang = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("");
|
|
27907
28004
|
let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)({});
|
|
27908
|
-
let collapseValue = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("
|
|
28005
|
+
let collapseValue = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("screenParameter"); // 获取组件传参
|
|
27909
28006
|
// 分析类
|
|
27910
28007
|
|
|
27911
28008
|
let viewModel = null; // 参数
|
|
27912
28009
|
|
|
27913
|
-
let formItem = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)({
|
|
28010
|
+
let formItem = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)({
|
|
28011
|
+
screenWidth: props.settingParams && props.settingParams.screenWidth || 100,
|
|
28012
|
+
// 屏幕宽度
|
|
28013
|
+
minScreenWidth: props.settingParams && props.settingParams.minScreenWidth || 0,
|
|
28014
|
+
// 屏幕宽度最小值
|
|
28015
|
+
maxScreenWidth: props.settingParams && props.settingParams.maxScreenWidth || 1920,
|
|
28016
|
+
// 屏幕宽度最大值
|
|
28017
|
+
screenHeight: props.settingParams && props.settingParams.screenHeight || 100,
|
|
28018
|
+
// 屏幕宽度
|
|
28019
|
+
minScreenHeight: props.settingParams && props.settingParams.minScreenHeight || 0,
|
|
28020
|
+
// 屏幕宽度最小值
|
|
28021
|
+
maxScreenHeight: props.settingParams && props.settingParams.maxScreenHeight || 900,
|
|
28022
|
+
// 屏幕宽度最大值
|
|
28023
|
+
displayArea: props.settingParams && props.settingParams.displayArea || true,
|
|
28024
|
+
// 是否显示区域
|
|
28025
|
+
imgWidth: props.settingParams && props.settingParams.imgWidth || 100,
|
|
28026
|
+
// 图片宽度
|
|
28027
|
+
minImgWidth: props.settingParams && props.settingParams.minImgWidth || 0,
|
|
28028
|
+
// 图片宽度最小值
|
|
28029
|
+
maxImgWidth: props.settingParams && props.settingParams.maxImgWidth || 1920,
|
|
28030
|
+
// 图片宽度最大值
|
|
28031
|
+
imgHeight: props.settingParams && props.settingParams.imgHeight || 100,
|
|
28032
|
+
// 图片高度
|
|
28033
|
+
minImgHeight: props.settingParams && props.settingParams.minImgHeight || 0,
|
|
28034
|
+
// 图片高度最小值
|
|
28035
|
+
maxImgHeight: props.settingParams && props.settingParams.maxImgHeight || 900,
|
|
28036
|
+
// 图片高度最大值
|
|
28037
|
+
imgFormat: props.settingParams && props.settingParams.imgFormat || "jpg" // 图片类型
|
|
28038
|
+
|
|
28039
|
+
}); // 组件容器Ref
|
|
27914
28040
|
|
|
27915
28041
|
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
|
|
27916
28042
|
|
|
@@ -27952,23 +28078,48 @@ const __default__ = {
|
|
|
27952
28078
|
// 生成headerTemp
|
|
27953
28079
|
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef, headerTempTitle);
|
|
27954
28080
|
}
|
|
27955
|
-
}; //
|
|
28081
|
+
}; // 高清出图
|
|
28082
|
+
|
|
28083
|
+
|
|
28084
|
+
function toHDImageHander() {
|
|
28085
|
+
viewModel && viewModel.sceneToImages();
|
|
28086
|
+
} // 参数改变
|
|
27956
28087
|
|
|
27957
28088
|
|
|
27958
|
-
function paramsChanged(key) {
|
|
28089
|
+
function paramsChanged(key) {
|
|
28090
|
+
viewModel && viewModel.paramsChanged(key, formItem[key]);
|
|
28091
|
+
} // 销毁
|
|
27959
28092
|
|
|
27960
28093
|
|
|
27961
28094
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onBeforeUnmount)(() => {
|
|
27962
28095
|
viewModel && viewModel.destroy();
|
|
27963
28096
|
});
|
|
27964
|
-
expose({
|
|
27965
|
-
paramsChanged
|
|
27966
|
-
});
|
|
28097
|
+
expose({});
|
|
27967
28098
|
return (_ctx, _cache) => {
|
|
28099
|
+
const _component_kq_slider = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-slider");
|
|
28100
|
+
|
|
28101
|
+
const _component_kq_col = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-col");
|
|
28102
|
+
|
|
28103
|
+
const _component_kq_input_number = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-input-number");
|
|
28104
|
+
|
|
28105
|
+
const _component_kq_row = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-row");
|
|
28106
|
+
|
|
28107
|
+
const _component_kq_form_item = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-form-item");
|
|
28108
|
+
|
|
28109
|
+
const _component_kq_switch = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-switch");
|
|
28110
|
+
|
|
28111
|
+
const _component_kq_form = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-form");
|
|
28112
|
+
|
|
27968
28113
|
const _component_kq_collapse_item = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-collapse-item");
|
|
27969
28114
|
|
|
28115
|
+
const _component_kq_option = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-option");
|
|
28116
|
+
|
|
28117
|
+
const _component_kq_select = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-select");
|
|
28118
|
+
|
|
27970
28119
|
const _component_kq_collapse = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-collapse");
|
|
27971
28120
|
|
|
28121
|
+
const _component_kq_button = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-button");
|
|
28122
|
+
|
|
27972
28123
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
27973
28124
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-scene-to-hd-image", {
|
|
27974
28125
|
'kq-box-shadow': __props.showShadow
|
|
@@ -27987,8 +28138,351 @@ const __default__ = {
|
|
|
27987
28138
|
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, {
|
|
27988
28139
|
class: "scene-content",
|
|
27989
28140
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).screenParameter,
|
|
27990
|
-
name: "
|
|
27991
|
-
},
|
|
28141
|
+
name: "screenParameter"
|
|
28142
|
+
}, {
|
|
28143
|
+
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, {
|
|
28144
|
+
"label-width": "100px",
|
|
28145
|
+
"label-position": "left"
|
|
28146
|
+
}, {
|
|
28147
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
28148
|
+
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, {
|
|
28149
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).screenWidth
|
|
28150
|
+
}, {
|
|
28151
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
28152
|
+
style: {
|
|
28153
|
+
"display": "flex"
|
|
28154
|
+
}
|
|
28155
|
+
}, {
|
|
28156
|
+
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, {
|
|
28157
|
+
span: 16
|
|
28158
|
+
}, {
|
|
28159
|
+
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_slider, {
|
|
28160
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).screenWidth,
|
|
28161
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).screenWidth = $event),
|
|
28162
|
+
step: 1,
|
|
28163
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minScreenWidth,
|
|
28164
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxScreenHeight,
|
|
28165
|
+
onInput: _cache[1] || (_cache[1] = $event => paramsChanged('screenWidth'))
|
|
28166
|
+
}, null, 8
|
|
28167
|
+
/* PROPS */
|
|
28168
|
+
, ["modelValue", "min", "max"])]),
|
|
28169
|
+
_: 1
|
|
28170
|
+
/* STABLE */
|
|
28171
|
+
|
|
28172
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
28173
|
+
span: 8
|
|
28174
|
+
}, {
|
|
28175
|
+
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, {
|
|
28176
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).screenWidth,
|
|
28177
|
+
"onUpdate:modelValue": _cache[2] || (_cache[2] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).screenWidth = $event),
|
|
28178
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minScreenWidth,
|
|
28179
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxScreenWidth,
|
|
28180
|
+
step: 1,
|
|
28181
|
+
"controls-position": "right",
|
|
28182
|
+
onInput: _cache[3] || (_cache[3] = $event => paramsChanged('screenWidth'))
|
|
28183
|
+
}, null, 8
|
|
28184
|
+
/* PROPS */
|
|
28185
|
+
, ["modelValue", "min", "max"])]),
|
|
28186
|
+
_: 1
|
|
28187
|
+
/* STABLE */
|
|
28188
|
+
|
|
28189
|
+
})]),
|
|
28190
|
+
_: 1
|
|
28191
|
+
/* STABLE */
|
|
28192
|
+
|
|
28193
|
+
})]),
|
|
28194
|
+
_: 1
|
|
28195
|
+
/* STABLE */
|
|
28196
|
+
|
|
28197
|
+
}, 8
|
|
28198
|
+
/* PROPS */
|
|
28199
|
+
, ["label"])]),
|
|
28200
|
+
_: 1
|
|
28201
|
+
/* STABLE */
|
|
28202
|
+
|
|
28203
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
28204
|
+
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, {
|
|
28205
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).screenHeight
|
|
28206
|
+
}, {
|
|
28207
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
28208
|
+
style: {
|
|
28209
|
+
"display": "flex"
|
|
28210
|
+
}
|
|
28211
|
+
}, {
|
|
28212
|
+
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, {
|
|
28213
|
+
span: 16
|
|
28214
|
+
}, {
|
|
28215
|
+
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_slider, {
|
|
28216
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).screenHeight,
|
|
28217
|
+
"onUpdate:modelValue": _cache[4] || (_cache[4] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).screenHeight = $event),
|
|
28218
|
+
step: 1,
|
|
28219
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minScreenHeight,
|
|
28220
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxScreenHeight,
|
|
28221
|
+
onInput: _cache[5] || (_cache[5] = $event => paramsChanged('screenHeight'))
|
|
28222
|
+
}, null, 8
|
|
28223
|
+
/* PROPS */
|
|
28224
|
+
, ["modelValue", "min", "max"])]),
|
|
28225
|
+
_: 1
|
|
28226
|
+
/* STABLE */
|
|
28227
|
+
|
|
28228
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
28229
|
+
span: 8
|
|
28230
|
+
}, {
|
|
28231
|
+
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, {
|
|
28232
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).screenHeight,
|
|
28233
|
+
"onUpdate:modelValue": _cache[6] || (_cache[6] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).screenHeight = $event),
|
|
28234
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minScreenHeight,
|
|
28235
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxScreenHeight,
|
|
28236
|
+
step: 1,
|
|
28237
|
+
"controls-position": "right",
|
|
28238
|
+
onInput: _cache[7] || (_cache[7] = $event => paramsChanged('screenHeight'))
|
|
28239
|
+
}, null, 8
|
|
28240
|
+
/* PROPS */
|
|
28241
|
+
, ["modelValue", "min", "max"])]),
|
|
28242
|
+
_: 1
|
|
28243
|
+
/* STABLE */
|
|
28244
|
+
|
|
28245
|
+
})]),
|
|
28246
|
+
_: 1
|
|
28247
|
+
/* STABLE */
|
|
28248
|
+
|
|
28249
|
+
})]),
|
|
28250
|
+
_: 1
|
|
28251
|
+
/* STABLE */
|
|
28252
|
+
|
|
28253
|
+
}, 8
|
|
28254
|
+
/* PROPS */
|
|
28255
|
+
, ["label"])]),
|
|
28256
|
+
_: 1
|
|
28257
|
+
/* STABLE */
|
|
28258
|
+
|
|
28259
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
28260
|
+
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, {
|
|
28261
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).displayArea
|
|
28262
|
+
}, {
|
|
28263
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
28264
|
+
style: {
|
|
28265
|
+
"text-align": "left"
|
|
28266
|
+
}
|
|
28267
|
+
}, {
|
|
28268
|
+
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, {
|
|
28269
|
+
span: 24,
|
|
28270
|
+
style: {}
|
|
28271
|
+
}, {
|
|
28272
|
+
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_switch, {
|
|
28273
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).displayArea,
|
|
28274
|
+
"onUpdate:modelValue": _cache[8] || (_cache[8] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).displayArea = $event),
|
|
28275
|
+
"controls-position": "left",
|
|
28276
|
+
onChange: _cache[9] || (_cache[9] = $event => paramsChanged('displayArea'))
|
|
28277
|
+
}, null, 8
|
|
28278
|
+
/* PROPS */
|
|
28279
|
+
, ["modelValue"])]),
|
|
28280
|
+
_: 1
|
|
28281
|
+
/* STABLE */
|
|
28282
|
+
|
|
28283
|
+
})]),
|
|
28284
|
+
_: 1
|
|
28285
|
+
/* STABLE */
|
|
28286
|
+
|
|
28287
|
+
})]),
|
|
28288
|
+
_: 1
|
|
28289
|
+
/* STABLE */
|
|
28290
|
+
|
|
28291
|
+
}, 8
|
|
28292
|
+
/* PROPS */
|
|
28293
|
+
, ["label"])]),
|
|
28294
|
+
_: 1
|
|
28295
|
+
/* STABLE */
|
|
28296
|
+
|
|
28297
|
+
})]),
|
|
28298
|
+
_: 1
|
|
28299
|
+
/* STABLE */
|
|
28300
|
+
|
|
28301
|
+
})]),
|
|
28302
|
+
_: 1
|
|
28303
|
+
/* STABLE */
|
|
28304
|
+
|
|
28305
|
+
}, 8
|
|
28306
|
+
/* PROPS */
|
|
28307
|
+
, ["title"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_collapse_item, {
|
|
28308
|
+
class: "kq3d-scene-to-hd-image-collapse-item",
|
|
28309
|
+
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).pictureSpecification,
|
|
28310
|
+
name: "pictureSpecification"
|
|
28311
|
+
}, {
|
|
28312
|
+
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, {
|
|
28313
|
+
"label-width": "100px",
|
|
28314
|
+
"label-position": "left"
|
|
28315
|
+
}, {
|
|
28316
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
28317
|
+
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, {
|
|
28318
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).imgFormat
|
|
28319
|
+
}, {
|
|
28320
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
28321
|
+
style: {
|
|
28322
|
+
"display": "flex"
|
|
28323
|
+
}
|
|
28324
|
+
}, {
|
|
28325
|
+
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, {
|
|
28326
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).imgFormat,
|
|
28327
|
+
"onUpdate:modelValue": _cache[10] || (_cache[10] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).imgFormat = $event),
|
|
28328
|
+
onChange: _cache[11] || (_cache[11] = $event => paramsChanged('imgFormat')),
|
|
28329
|
+
style: {
|
|
28330
|
+
"width": "100%"
|
|
28331
|
+
}
|
|
28332
|
+
}, {
|
|
28333
|
+
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, {
|
|
28334
|
+
label: "JPG",
|
|
28335
|
+
value: "jpg"
|
|
28336
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
|
|
28337
|
+
label: "PNG",
|
|
28338
|
+
value: "png"
|
|
28339
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
|
|
28340
|
+
label: "BMP",
|
|
28341
|
+
value: "bmp"
|
|
28342
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
|
|
28343
|
+
label: "JPEG",
|
|
28344
|
+
value: "jpeg"
|
|
28345
|
+
})]),
|
|
28346
|
+
_: 1
|
|
28347
|
+
/* STABLE */
|
|
28348
|
+
|
|
28349
|
+
}, 8
|
|
28350
|
+
/* PROPS */
|
|
28351
|
+
, ["modelValue"])]),
|
|
28352
|
+
_: 1
|
|
28353
|
+
/* STABLE */
|
|
28354
|
+
|
|
28355
|
+
})]),
|
|
28356
|
+
_: 1
|
|
28357
|
+
/* STABLE */
|
|
28358
|
+
|
|
28359
|
+
}, 8
|
|
28360
|
+
/* PROPS */
|
|
28361
|
+
, ["label"])]),
|
|
28362
|
+
_: 1
|
|
28363
|
+
/* STABLE */
|
|
28364
|
+
|
|
28365
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
28366
|
+
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, {
|
|
28367
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).imgWidth + '(px)'
|
|
28368
|
+
}, {
|
|
28369
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
28370
|
+
style: {
|
|
28371
|
+
"display": "flex"
|
|
28372
|
+
}
|
|
28373
|
+
}, {
|
|
28374
|
+
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, {
|
|
28375
|
+
span: 16
|
|
28376
|
+
}, {
|
|
28377
|
+
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_slider, {
|
|
28378
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).imgWidth,
|
|
28379
|
+
"onUpdate:modelValue": _cache[12] || (_cache[12] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).imgWidth = $event),
|
|
28380
|
+
step: 1,
|
|
28381
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minImgWidth,
|
|
28382
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxImgWidth,
|
|
28383
|
+
onInput: _cache[13] || (_cache[13] = $event => paramsChanged('imgWidth'))
|
|
28384
|
+
}, null, 8
|
|
28385
|
+
/* PROPS */
|
|
28386
|
+
, ["modelValue", "min", "max"])]),
|
|
28387
|
+
_: 1
|
|
28388
|
+
/* STABLE */
|
|
28389
|
+
|
|
28390
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
28391
|
+
span: 8
|
|
28392
|
+
}, {
|
|
28393
|
+
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, {
|
|
28394
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).imgWidth,
|
|
28395
|
+
"onUpdate:modelValue": _cache[14] || (_cache[14] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).imgWidth = $event),
|
|
28396
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minImgWidth,
|
|
28397
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxImgWidth,
|
|
28398
|
+
step: 1,
|
|
28399
|
+
"controls-position": "right",
|
|
28400
|
+
onInput: _cache[15] || (_cache[15] = $event => paramsChanged('imgWidth'))
|
|
28401
|
+
}, null, 8
|
|
28402
|
+
/* PROPS */
|
|
28403
|
+
, ["modelValue", "min", "max"])]),
|
|
28404
|
+
_: 1
|
|
28405
|
+
/* STABLE */
|
|
28406
|
+
|
|
28407
|
+
})]),
|
|
28408
|
+
_: 1
|
|
28409
|
+
/* STABLE */
|
|
28410
|
+
|
|
28411
|
+
})]),
|
|
28412
|
+
_: 1
|
|
28413
|
+
/* STABLE */
|
|
28414
|
+
|
|
28415
|
+
}, 8
|
|
28416
|
+
/* PROPS */
|
|
28417
|
+
, ["label"])]),
|
|
28418
|
+
_: 1
|
|
28419
|
+
/* STABLE */
|
|
28420
|
+
|
|
28421
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
28422
|
+
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, {
|
|
28423
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).imgHeight + '(px)'
|
|
28424
|
+
}, {
|
|
28425
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
28426
|
+
style: {
|
|
28427
|
+
"display": "flex"
|
|
28428
|
+
}
|
|
28429
|
+
}, {
|
|
28430
|
+
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, {
|
|
28431
|
+
span: 16
|
|
28432
|
+
}, {
|
|
28433
|
+
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_slider, {
|
|
28434
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).imgHeight,
|
|
28435
|
+
"onUpdate:modelValue": _cache[16] || (_cache[16] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).imgHeight = $event),
|
|
28436
|
+
step: 1,
|
|
28437
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minImgHeight,
|
|
28438
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxImgHeight,
|
|
28439
|
+
onInput: _cache[17] || (_cache[17] = $event => paramsChanged('imgHeight'))
|
|
28440
|
+
}, null, 8
|
|
28441
|
+
/* PROPS */
|
|
28442
|
+
, ["modelValue", "min", "max"])]),
|
|
28443
|
+
_: 1
|
|
28444
|
+
/* STABLE */
|
|
28445
|
+
|
|
28446
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
28447
|
+
span: 8
|
|
28448
|
+
}, {
|
|
28449
|
+
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, {
|
|
28450
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).imgHeight,
|
|
28451
|
+
"onUpdate:modelValue": _cache[18] || (_cache[18] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).imgHeight = $event),
|
|
28452
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minImgHeight,
|
|
28453
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxImgHeight,
|
|
28454
|
+
step: 1,
|
|
28455
|
+
"controls-position": "right",
|
|
28456
|
+
onInput: _cache[19] || (_cache[19] = $event => paramsChanged('imgHeight'))
|
|
28457
|
+
}, null, 8
|
|
28458
|
+
/* PROPS */
|
|
28459
|
+
, ["modelValue", "min", "max"])]),
|
|
28460
|
+
_: 1
|
|
28461
|
+
/* STABLE */
|
|
28462
|
+
|
|
28463
|
+
})]),
|
|
28464
|
+
_: 1
|
|
28465
|
+
/* STABLE */
|
|
28466
|
+
|
|
28467
|
+
})]),
|
|
28468
|
+
_: 1
|
|
28469
|
+
/* STABLE */
|
|
28470
|
+
|
|
28471
|
+
}, 8
|
|
28472
|
+
/* PROPS */
|
|
28473
|
+
, ["label"])]),
|
|
28474
|
+
_: 1
|
|
28475
|
+
/* STABLE */
|
|
28476
|
+
|
|
28477
|
+
})]),
|
|
28478
|
+
_: 1
|
|
28479
|
+
/* STABLE */
|
|
28480
|
+
|
|
28481
|
+
})]),
|
|
28482
|
+
_: 1
|
|
28483
|
+
/* STABLE */
|
|
28484
|
+
|
|
28485
|
+
}, 8
|
|
27992
28486
|
/* PROPS */
|
|
27993
28487
|
, ["title"])]),
|
|
27994
28488
|
_: 1
|
|
@@ -27996,7 +28490,20 @@ const __default__ = {
|
|
|
27996
28490
|
|
|
27997
28491
|
}, 8
|
|
27998
28492
|
/* PROPS */
|
|
27999
|
-
, ["model-value"])
|
|
28493
|
+
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_2, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
28494
|
+
onClick: _cache[20] || (_cache[20] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => toHDImageHander(), ["stop"])),
|
|
28495
|
+
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).sceneToHDImageTips,
|
|
28496
|
+
type: "primary"
|
|
28497
|
+
}, {
|
|
28498
|
+
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).sceneToHDImageTips), 1
|
|
28499
|
+
/* TEXT */
|
|
28500
|
+
)]),
|
|
28501
|
+
_: 1
|
|
28502
|
+
/* STABLE */
|
|
28503
|
+
|
|
28504
|
+
}, 8
|
|
28505
|
+
/* PROPS */
|
|
28506
|
+
, ["title"])])])], 2
|
|
28000
28507
|
/* CLASS */
|
|
28001
28508
|
);
|
|
28002
28509
|
};
|
package/sceneview/style/index.js
CHANGED