@kq_npm/client3d_webgl_vue 2.2.7-beta → 2.2.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/gpuspatialquery/index.js +56 -24
- package/index.js +238 -94
- package/package.json +1 -1
- package/profileanalysis/index.js +56 -24
- package/shadowanalysis/index.js +84 -30
- package/viewshedanalysis/index.js +42 -16
package/index.js
CHANGED
|
@@ -5620,6 +5620,38 @@ const GPUSpatialQueryvue_type_script_setup_true_lang_js_default_ = {
|
|
|
5620
5620
|
}
|
|
5621
5621
|
|
|
5622
5622
|
},
|
|
5623
|
+
minScale: {
|
|
5624
|
+
type: Number,
|
|
5625
|
+
default: 0.1
|
|
5626
|
+
},
|
|
5627
|
+
maxScale: {
|
|
5628
|
+
type: Number,
|
|
5629
|
+
default: 10
|
|
5630
|
+
},
|
|
5631
|
+
minXRotate: {
|
|
5632
|
+
type: Number,
|
|
5633
|
+
default: 0
|
|
5634
|
+
},
|
|
5635
|
+
maxXRotate: {
|
|
5636
|
+
type: Number,
|
|
5637
|
+
default: 120
|
|
5638
|
+
},
|
|
5639
|
+
minYRotate: {
|
|
5640
|
+
type: Number,
|
|
5641
|
+
default: 0
|
|
5642
|
+
},
|
|
5643
|
+
maxYRotate: {
|
|
5644
|
+
type: Number,
|
|
5645
|
+
default: 90
|
|
5646
|
+
},
|
|
5647
|
+
minZRotate: {
|
|
5648
|
+
type: Number,
|
|
5649
|
+
default: 0
|
|
5650
|
+
},
|
|
5651
|
+
maxZRotate: {
|
|
5652
|
+
type: Number,
|
|
5653
|
+
default: 90
|
|
5654
|
+
},
|
|
5623
5655
|
// 设置参数
|
|
5624
5656
|
settingParams: {
|
|
5625
5657
|
type: Object
|
|
@@ -5865,12 +5897,12 @@ const GPUSpatialQueryvue_type_script_setup_true_lang_js_default_ = {
|
|
|
5865
5897
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).scale,
|
|
5866
5898
|
"onUpdate:modelValue": _cache[4] || (_cache[4] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).scale = $event),
|
|
5867
5899
|
step: 0.1,
|
|
5868
|
-
min:
|
|
5869
|
-
max:
|
|
5900
|
+
min: __props.minScale,
|
|
5901
|
+
max: __props.maxScale,
|
|
5870
5902
|
onInput: _cache[5] || (_cache[5] = $event => paramsChanged('scale'))
|
|
5871
5903
|
}, null, 8
|
|
5872
5904
|
/* PROPS */
|
|
5873
|
-
, ["modelValue", "step", "min"])]),
|
|
5905
|
+
, ["modelValue", "step", "min", "max"])]),
|
|
5874
5906
|
_: 1
|
|
5875
5907
|
/* STABLE */
|
|
5876
5908
|
|
|
@@ -5880,14 +5912,14 @@ const GPUSpatialQueryvue_type_script_setup_true_lang_js_default_ = {
|
|
|
5880
5912
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
|
|
5881
5913
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).scale,
|
|
5882
5914
|
"onUpdate:modelValue": _cache[6] || (_cache[6] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).scale = $event),
|
|
5883
|
-
min:
|
|
5884
|
-
max:
|
|
5915
|
+
min: __props.minScale,
|
|
5916
|
+
max: __props.maxScale,
|
|
5885
5917
|
step: 0.1,
|
|
5886
5918
|
"controls-position": "right",
|
|
5887
5919
|
onInput: _cache[7] || (_cache[7] = $event => paramsChanged('scale'))
|
|
5888
5920
|
}, null, 8
|
|
5889
5921
|
/* PROPS */
|
|
5890
|
-
, ["modelValue", "min", "step"])]),
|
|
5922
|
+
, ["modelValue", "min", "max", "step"])]),
|
|
5891
5923
|
_: 1
|
|
5892
5924
|
/* STABLE */
|
|
5893
5925
|
|
|
@@ -5921,12 +5953,12 @@ const GPUSpatialQueryvue_type_script_setup_true_lang_js_default_ = {
|
|
|
5921
5953
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).xRotate,
|
|
5922
5954
|
"onUpdate:modelValue": _cache[8] || (_cache[8] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).xRotate = $event),
|
|
5923
5955
|
step: 1,
|
|
5924
|
-
min:
|
|
5925
|
-
max:
|
|
5956
|
+
min: __props.minXRotate,
|
|
5957
|
+
max: __props.maxXRotate,
|
|
5926
5958
|
onInput: _cache[9] || (_cache[9] = $event => paramsChanged('xRotate'))
|
|
5927
5959
|
}, null, 8
|
|
5928
5960
|
/* PROPS */
|
|
5929
|
-
, ["modelValue"])]),
|
|
5961
|
+
, ["modelValue", "min", "max"])]),
|
|
5930
5962
|
_: 1
|
|
5931
5963
|
/* STABLE */
|
|
5932
5964
|
|
|
@@ -5936,14 +5968,14 @@ const GPUSpatialQueryvue_type_script_setup_true_lang_js_default_ = {
|
|
|
5936
5968
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
|
|
5937
5969
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).xRotate,
|
|
5938
5970
|
"onUpdate:modelValue": _cache[10] || (_cache[10] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).xRotate = $event),
|
|
5939
|
-
min:
|
|
5940
|
-
max:
|
|
5971
|
+
min: __props.minXRotate,
|
|
5972
|
+
max: __props.maxXRotate,
|
|
5941
5973
|
step: 1,
|
|
5942
5974
|
"controls-position": "right",
|
|
5943
5975
|
onInput: _cache[11] || (_cache[11] = $event => paramsChanged('xRotate'))
|
|
5944
5976
|
}, null, 8
|
|
5945
5977
|
/* PROPS */
|
|
5946
|
-
, ["modelValue"])]),
|
|
5978
|
+
, ["modelValue", "min", "max"])]),
|
|
5947
5979
|
_: 1
|
|
5948
5980
|
/* STABLE */
|
|
5949
5981
|
|
|
@@ -5977,12 +6009,12 @@ const GPUSpatialQueryvue_type_script_setup_true_lang_js_default_ = {
|
|
|
5977
6009
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).yRotate,
|
|
5978
6010
|
"onUpdate:modelValue": _cache[12] || (_cache[12] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).yRotate = $event),
|
|
5979
6011
|
step: 1,
|
|
5980
|
-
min:
|
|
5981
|
-
max:
|
|
6012
|
+
min: __props.minXRotate,
|
|
6013
|
+
max: __props.maxXRotate,
|
|
5982
6014
|
onInput: _cache[13] || (_cache[13] = $event => paramsChanged('yRotate'))
|
|
5983
6015
|
}, null, 8
|
|
5984
6016
|
/* PROPS */
|
|
5985
|
-
, ["modelValue"])]),
|
|
6017
|
+
, ["modelValue", "min", "max"])]),
|
|
5986
6018
|
_: 1
|
|
5987
6019
|
/* STABLE */
|
|
5988
6020
|
|
|
@@ -5992,14 +6024,14 @@ const GPUSpatialQueryvue_type_script_setup_true_lang_js_default_ = {
|
|
|
5992
6024
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
|
|
5993
6025
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).yRotate,
|
|
5994
6026
|
"onUpdate:modelValue": _cache[14] || (_cache[14] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).yRotate = $event),
|
|
5995
|
-
min:
|
|
5996
|
-
max:
|
|
6027
|
+
min: __props.minXRotate,
|
|
6028
|
+
max: __props.maxXRotate,
|
|
5997
6029
|
step: 1,
|
|
5998
6030
|
"controls-position": "right",
|
|
5999
6031
|
onInput: _cache[15] || (_cache[15] = $event => paramsChanged('yRotate'))
|
|
6000
6032
|
}, null, 8
|
|
6001
6033
|
/* PROPS */
|
|
6002
|
-
, ["modelValue"])]),
|
|
6034
|
+
, ["modelValue", "min", "max"])]),
|
|
6003
6035
|
_: 1
|
|
6004
6036
|
/* STABLE */
|
|
6005
6037
|
|
|
@@ -6033,12 +6065,12 @@ const GPUSpatialQueryvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6033
6065
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).zRotate,
|
|
6034
6066
|
"onUpdate:modelValue": _cache[16] || (_cache[16] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).zRotate = $event),
|
|
6035
6067
|
step: 1,
|
|
6036
|
-
min:
|
|
6037
|
-
max:
|
|
6068
|
+
min: __props.minZRotate,
|
|
6069
|
+
max: __props.maxZRotate,
|
|
6038
6070
|
onInput: _cache[17] || (_cache[17] = $event => paramsChanged('zRotate'))
|
|
6039
6071
|
}, null, 8
|
|
6040
6072
|
/* PROPS */
|
|
6041
|
-
, ["modelValue"])]),
|
|
6073
|
+
, ["modelValue", "min", "max"])]),
|
|
6042
6074
|
_: 1
|
|
6043
6075
|
/* STABLE */
|
|
6044
6076
|
|
|
@@ -6048,14 +6080,14 @@ const GPUSpatialQueryvue_type_script_setup_true_lang_js_default_ = {
|
|
|
6048
6080
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
|
|
6049
6081
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).zRotate,
|
|
6050
6082
|
"onUpdate:modelValue": _cache[18] || (_cache[18] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).zRotate = $event),
|
|
6051
|
-
min:
|
|
6052
|
-
max:
|
|
6083
|
+
min: __props.minZRotate,
|
|
6084
|
+
max: __props.maxZRotate,
|
|
6053
6085
|
step: 1,
|
|
6054
6086
|
"controls-position": "right",
|
|
6055
6087
|
onInput: _cache[19] || (_cache[19] = $event => paramsChanged('zRotate'))
|
|
6056
6088
|
}, null, 8
|
|
6057
6089
|
/* PROPS */
|
|
6058
|
-
, ["modelValue"])]),
|
|
6090
|
+
, ["modelValue", "min", "max"])]),
|
|
6059
6091
|
_: 1
|
|
6060
6092
|
/* STABLE */
|
|
6061
6093
|
|
|
@@ -7146,6 +7178,30 @@ const ViewshedAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7146
7178
|
};
|
|
7147
7179
|
/* harmony default export */ var ViewshedAnalysisvue_type_script_setup_true_lang_js = (/*#__PURE__*/Object.assign(ViewshedAnalysisvue_type_script_setup_true_lang_js_default_, {
|
|
7148
7180
|
props: {
|
|
7181
|
+
minOffsetHeight: {
|
|
7182
|
+
type: Number,
|
|
7183
|
+
default: 0
|
|
7184
|
+
},
|
|
7185
|
+
maxOffsetHeight: {
|
|
7186
|
+
type: Number,
|
|
7187
|
+
default: 100
|
|
7188
|
+
},
|
|
7189
|
+
minFovV: {
|
|
7190
|
+
type: Number,
|
|
7191
|
+
default: 0
|
|
7192
|
+
},
|
|
7193
|
+
maxFovV: {
|
|
7194
|
+
type: Number,
|
|
7195
|
+
default: 90
|
|
7196
|
+
},
|
|
7197
|
+
minFovH: {
|
|
7198
|
+
type: Number,
|
|
7199
|
+
default: 0
|
|
7200
|
+
},
|
|
7201
|
+
maxFovH: {
|
|
7202
|
+
type: Number,
|
|
7203
|
+
default: 180
|
|
7204
|
+
},
|
|
7149
7205
|
// 设置参数
|
|
7150
7206
|
settingParams: {
|
|
7151
7207
|
type: Object
|
|
@@ -7297,11 +7353,12 @@ const ViewshedAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7297
7353
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).offsetHeight,
|
|
7298
7354
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).offsetHeight = $event),
|
|
7299
7355
|
step: 1,
|
|
7300
|
-
min:
|
|
7356
|
+
min: __props.minOffsetHeight,
|
|
7357
|
+
max: __props.maxOffsetHeight,
|
|
7301
7358
|
onInput: _cache[1] || (_cache[1] = $event => paramsChanged('height'))
|
|
7302
7359
|
}, null, 8
|
|
7303
7360
|
/* PROPS */
|
|
7304
|
-
, ["modelValue"])]),
|
|
7361
|
+
, ["modelValue", "min", "max"])]),
|
|
7305
7362
|
_: 1
|
|
7306
7363
|
/* STABLE */
|
|
7307
7364
|
|
|
@@ -7311,13 +7368,14 @@ const ViewshedAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7311
7368
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
|
|
7312
7369
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).offsetHeight,
|
|
7313
7370
|
"onUpdate:modelValue": _cache[2] || (_cache[2] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).offsetHeight = $event),
|
|
7314
|
-
min:
|
|
7371
|
+
min: __props.minOffsetHeight,
|
|
7372
|
+
max: __props.maxOffsetHeight,
|
|
7315
7373
|
step: 1,
|
|
7316
7374
|
"controls-position": "right",
|
|
7317
7375
|
onInput: _cache[3] || (_cache[3] = $event => paramsChanged('height'))
|
|
7318
7376
|
}, null, 8
|
|
7319
7377
|
/* PROPS */
|
|
7320
|
-
, ["modelValue"])]),
|
|
7378
|
+
, ["modelValue", "min", "max"])]),
|
|
7321
7379
|
_: 1
|
|
7322
7380
|
/* STABLE */
|
|
7323
7381
|
|
|
@@ -7351,12 +7409,12 @@ const ViewshedAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7351
7409
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).fovV,
|
|
7352
7410
|
"onUpdate:modelValue": _cache[4] || (_cache[4] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).fovV = $event),
|
|
7353
7411
|
step: 1,
|
|
7354
|
-
min:
|
|
7355
|
-
max:
|
|
7412
|
+
min: __props.minFovV,
|
|
7413
|
+
max: __props.maxFovV,
|
|
7356
7414
|
onInput: _cache[5] || (_cache[5] = $event => paramsChanged('fovV'))
|
|
7357
7415
|
}, null, 8
|
|
7358
7416
|
/* PROPS */
|
|
7359
|
-
, ["modelValue"])]),
|
|
7417
|
+
, ["modelValue", "min", "max"])]),
|
|
7360
7418
|
_: 1
|
|
7361
7419
|
/* STABLE */
|
|
7362
7420
|
|
|
@@ -7366,14 +7424,14 @@ const ViewshedAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7366
7424
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
|
|
7367
7425
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).fovV,
|
|
7368
7426
|
"onUpdate:modelValue": _cache[6] || (_cache[6] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).fovV = $event),
|
|
7369
|
-
min:
|
|
7370
|
-
max:
|
|
7427
|
+
min: __props.minFovV,
|
|
7428
|
+
max: __props.maxFovV,
|
|
7371
7429
|
step: 1,
|
|
7372
7430
|
"controls-position": "right",
|
|
7373
7431
|
onInput: _cache[7] || (_cache[7] = $event => paramsChanged('fovV'))
|
|
7374
7432
|
}, null, 8
|
|
7375
7433
|
/* PROPS */
|
|
7376
|
-
, ["modelValue"])]),
|
|
7434
|
+
, ["modelValue", "min", "max"])]),
|
|
7377
7435
|
_: 1
|
|
7378
7436
|
/* STABLE */
|
|
7379
7437
|
|
|
@@ -7407,12 +7465,12 @@ const ViewshedAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7407
7465
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).fovH,
|
|
7408
7466
|
"onUpdate:modelValue": _cache[8] || (_cache[8] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).fovH = $event),
|
|
7409
7467
|
step: 1,
|
|
7410
|
-
min:
|
|
7411
|
-
max:
|
|
7468
|
+
min: __props.minFovH,
|
|
7469
|
+
max: __props.maxFovH,
|
|
7412
7470
|
onInput: _cache[9] || (_cache[9] = $event => paramsChanged('fovH'))
|
|
7413
7471
|
}, null, 8
|
|
7414
7472
|
/* PROPS */
|
|
7415
|
-
, ["modelValue"])]),
|
|
7473
|
+
, ["modelValue", "min", "max"])]),
|
|
7416
7474
|
_: 1
|
|
7417
7475
|
/* STABLE */
|
|
7418
7476
|
|
|
@@ -7422,14 +7480,14 @@ const ViewshedAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7422
7480
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
|
|
7423
7481
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).fovH,
|
|
7424
7482
|
"onUpdate:modelValue": _cache[10] || (_cache[10] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).fovH = $event),
|
|
7425
|
-
min:
|
|
7426
|
-
max:
|
|
7483
|
+
min: __props.minFovH,
|
|
7484
|
+
max: __props.maxFovH,
|
|
7427
7485
|
step: 1,
|
|
7428
7486
|
"controls-position": "right",
|
|
7429
7487
|
onInput: _cache[11] || (_cache[11] = $event => paramsChanged('fovH'))
|
|
7430
7488
|
}, null, 8
|
|
7431
7489
|
/* PROPS */
|
|
7432
|
-
, ["modelValue"])]),
|
|
7490
|
+
, ["modelValue", "min", "max"])]),
|
|
7433
7491
|
_: 1
|
|
7434
7492
|
/* STABLE */
|
|
7435
7493
|
|
|
@@ -7814,6 +7872,54 @@ const ShadowAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
7814
7872
|
};
|
|
7815
7873
|
/* harmony default export */ var ShadowAnalysisvue_type_script_setup_true_lang_js = (/*#__PURE__*/Object.assign(ShadowAnalysisvue_type_script_setup_true_lang_js_default_, {
|
|
7816
7874
|
props: {
|
|
7875
|
+
minExtrudeHeight: {
|
|
7876
|
+
type: Number,
|
|
7877
|
+
default: 0
|
|
7878
|
+
},
|
|
7879
|
+
maxExtrudeHeight: {
|
|
7880
|
+
type: Number,
|
|
7881
|
+
default: 500
|
|
7882
|
+
},
|
|
7883
|
+
minBaseHeight: {
|
|
7884
|
+
type: Number,
|
|
7885
|
+
default: 0
|
|
7886
|
+
},
|
|
7887
|
+
maxBaseHeight: {
|
|
7888
|
+
type: Number,
|
|
7889
|
+
default: 100
|
|
7890
|
+
},
|
|
7891
|
+
minWidth: {
|
|
7892
|
+
type: Number,
|
|
7893
|
+
default: 0
|
|
7894
|
+
},
|
|
7895
|
+
maxWidth: {
|
|
7896
|
+
type: Number,
|
|
7897
|
+
default: 100
|
|
7898
|
+
},
|
|
7899
|
+
minSpacing: {
|
|
7900
|
+
type: Number,
|
|
7901
|
+
default: 0
|
|
7902
|
+
},
|
|
7903
|
+
maxSpacing: {
|
|
7904
|
+
type: Number,
|
|
7905
|
+
default: 100
|
|
7906
|
+
},
|
|
7907
|
+
minFilterValue: {
|
|
7908
|
+
type: Number,
|
|
7909
|
+
default: 0
|
|
7910
|
+
},
|
|
7911
|
+
maxFilterValue: {
|
|
7912
|
+
type: Number,
|
|
7913
|
+
default: 1
|
|
7914
|
+
},
|
|
7915
|
+
minAlphaScale: {
|
|
7916
|
+
type: Number,
|
|
7917
|
+
default: 0
|
|
7918
|
+
},
|
|
7919
|
+
maxAlphaScale: {
|
|
7920
|
+
type: Number,
|
|
7921
|
+
default: 10
|
|
7922
|
+
},
|
|
7817
7923
|
// 设置参数
|
|
7818
7924
|
settingParams: {
|
|
7819
7925
|
type: Object
|
|
@@ -8119,11 +8225,11 @@ const ShadowAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
8119
8225
|
onChange: _cache[6] || (_cache[6] = $event => paramsChanged('extrudeHeight')),
|
|
8120
8226
|
onClick: _cache[7] || (_cache[7] = $event => paramsChanged('extrudeHeight')),
|
|
8121
8227
|
step: 10,
|
|
8122
|
-
min:
|
|
8123
|
-
max:
|
|
8228
|
+
min: __props.minExtrudeHeight,
|
|
8229
|
+
max: __props.maxExtrudeHeight
|
|
8124
8230
|
}, null, 8
|
|
8125
8231
|
/* PROPS */
|
|
8126
|
-
, ["modelValue"])]),
|
|
8232
|
+
, ["modelValue", "min", "max"])]),
|
|
8127
8233
|
_: 1
|
|
8128
8234
|
/* STABLE */
|
|
8129
8235
|
|
|
@@ -8133,14 +8239,14 @@ const ShadowAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
8133
8239
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
|
|
8134
8240
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).extrudeHeight,
|
|
8135
8241
|
"onUpdate:modelValue": _cache[8] || (_cache[8] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).extrudeHeight = $event),
|
|
8136
|
-
min:
|
|
8137
|
-
max:
|
|
8242
|
+
min: __props.minExtrudeHeight,
|
|
8243
|
+
max: __props.maxExtrudeHeight,
|
|
8138
8244
|
step: 10,
|
|
8139
8245
|
onChange: _cache[9] || (_cache[9] = $event => paramsChanged('extrudeHeight')),
|
|
8140
8246
|
"controls-position": "right"
|
|
8141
8247
|
}, null, 8
|
|
8142
8248
|
/* PROPS */
|
|
8143
|
-
, ["modelValue"])]),
|
|
8249
|
+
, ["modelValue", "min", "max"])]),
|
|
8144
8250
|
_: 1
|
|
8145
8251
|
/* STABLE */
|
|
8146
8252
|
|
|
@@ -8176,10 +8282,11 @@ const ShadowAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
8176
8282
|
onChange: _cache[11] || (_cache[11] = $event => paramsChanged('baseHeight')),
|
|
8177
8283
|
onClick: _cache[12] || (_cache[12] = $event => paramsChanged('baseHeight')),
|
|
8178
8284
|
step: 10,
|
|
8179
|
-
min:
|
|
8285
|
+
min: __props.minBaseHeight,
|
|
8286
|
+
max: __props.maxBaseHeight
|
|
8180
8287
|
}, null, 8
|
|
8181
8288
|
/* PROPS */
|
|
8182
|
-
, ["modelValue"])]),
|
|
8289
|
+
, ["modelValue", "min", "max"])]),
|
|
8183
8290
|
_: 1
|
|
8184
8291
|
/* STABLE */
|
|
8185
8292
|
|
|
@@ -8190,12 +8297,13 @@ const ShadowAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
8190
8297
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).baseHeight,
|
|
8191
8298
|
"onUpdate:modelValue": _cache[13] || (_cache[13] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).baseHeight = $event),
|
|
8192
8299
|
onChange: _cache[14] || (_cache[14] = $event => paramsChanged('baseHeight')),
|
|
8193
|
-
min:
|
|
8300
|
+
min: __props.minBaseHeight,
|
|
8301
|
+
max: __props.maxBaseHeight,
|
|
8194
8302
|
step: 10,
|
|
8195
8303
|
"controls-position": "right"
|
|
8196
8304
|
}, null, 8
|
|
8197
8305
|
/* PROPS */
|
|
8198
|
-
, ["modelValue"])]),
|
|
8306
|
+
, ["modelValue", "min", "max"])]),
|
|
8199
8307
|
_: 1
|
|
8200
8308
|
/* STABLE */
|
|
8201
8309
|
|
|
@@ -8231,10 +8339,11 @@ const ShadowAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
8231
8339
|
onChange: _cache[16] || (_cache[16] = $event => paramsChanged('width')),
|
|
8232
8340
|
onClick: _cache[17] || (_cache[17] = $event => paramsChanged('width')),
|
|
8233
8341
|
step: 1,
|
|
8234
|
-
min:
|
|
8342
|
+
min: __props.minWidth,
|
|
8343
|
+
max: __props.maxWidth
|
|
8235
8344
|
}, null, 8
|
|
8236
8345
|
/* PROPS */
|
|
8237
|
-
, ["modelValue"])]),
|
|
8346
|
+
, ["modelValue", "min", "max"])]),
|
|
8238
8347
|
_: 1
|
|
8239
8348
|
/* STABLE */
|
|
8240
8349
|
|
|
@@ -8245,12 +8354,13 @@ const ShadowAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
8245
8354
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).width,
|
|
8246
8355
|
"onUpdate:modelValue": _cache[18] || (_cache[18] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).width = $event),
|
|
8247
8356
|
onChange: _cache[19] || (_cache[19] = $event => paramsChanged('width')),
|
|
8248
|
-
min:
|
|
8357
|
+
min: __props.minWidth,
|
|
8358
|
+
max: __props.maxWidth,
|
|
8249
8359
|
step: 1,
|
|
8250
8360
|
"controls-position": "right"
|
|
8251
8361
|
}, null, 8
|
|
8252
8362
|
/* PROPS */
|
|
8253
|
-
, ["modelValue"])]),
|
|
8363
|
+
, ["modelValue", "min", "max"])]),
|
|
8254
8364
|
_: 1
|
|
8255
8365
|
/* STABLE */
|
|
8256
8366
|
|
|
@@ -8286,10 +8396,11 @@ const ShadowAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
8286
8396
|
onChange: _cache[21] || (_cache[21] = $event => paramsChanged('spacing')),
|
|
8287
8397
|
onClick: _cache[22] || (_cache[22] = $event => paramsChanged('spacing')),
|
|
8288
8398
|
step: 0.1,
|
|
8289
|
-
min:
|
|
8399
|
+
min: __props.minSpacing,
|
|
8400
|
+
max: __props.maxSpacing
|
|
8290
8401
|
}, null, 8
|
|
8291
8402
|
/* PROPS */
|
|
8292
|
-
, ["modelValue", "step"])]),
|
|
8403
|
+
, ["modelValue", "step", "min", "max"])]),
|
|
8293
8404
|
_: 1
|
|
8294
8405
|
/* STABLE */
|
|
8295
8406
|
|
|
@@ -8300,12 +8411,13 @@ const ShadowAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
8300
8411
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).spacing,
|
|
8301
8412
|
"onUpdate:modelValue": _cache[23] || (_cache[23] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).spacing = $event),
|
|
8302
8413
|
onChange: _cache[24] || (_cache[24] = $event => paramsChanged('spacing')),
|
|
8303
|
-
min:
|
|
8414
|
+
min: __props.minSpacing,
|
|
8415
|
+
max: __props.maxSpacing,
|
|
8304
8416
|
step: 0.1,
|
|
8305
8417
|
"controls-position": "right"
|
|
8306
8418
|
}, null, 8
|
|
8307
8419
|
/* PROPS */
|
|
8308
|
-
, ["modelValue", "step"])]),
|
|
8420
|
+
, ["modelValue", "min", "max", "step"])]),
|
|
8309
8421
|
_: 1
|
|
8310
8422
|
/* STABLE */
|
|
8311
8423
|
|
|
@@ -8340,11 +8452,11 @@ const ShadowAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
8340
8452
|
"onUpdate:modelValue": _cache[25] || (_cache[25] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).filterValue = $event),
|
|
8341
8453
|
onInput: _cache[26] || (_cache[26] = $event => paramsChanged('filterValue')),
|
|
8342
8454
|
step: 0.01,
|
|
8343
|
-
min:
|
|
8344
|
-
max:
|
|
8455
|
+
min: __props.minFilterValue,
|
|
8456
|
+
max: __props.maxFilterValue
|
|
8345
8457
|
}, null, 8
|
|
8346
8458
|
/* PROPS */
|
|
8347
|
-
, ["modelValue", "step"])]),
|
|
8459
|
+
, ["modelValue", "step", "min", "max"])]),
|
|
8348
8460
|
_: 1
|
|
8349
8461
|
/* STABLE */
|
|
8350
8462
|
|
|
@@ -8354,14 +8466,14 @@ const ShadowAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
8354
8466
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
|
|
8355
8467
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).filterValue,
|
|
8356
8468
|
"onUpdate:modelValue": _cache[27] || (_cache[27] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).filterValue = $event),
|
|
8357
|
-
min:
|
|
8358
|
-
max:
|
|
8469
|
+
min: __props.minFilterValue,
|
|
8470
|
+
max: __props.maxFilterValue,
|
|
8359
8471
|
step: 0.01,
|
|
8360
8472
|
onInput: _cache[28] || (_cache[28] = $event => paramsChanged('filterValue')),
|
|
8361
8473
|
"controls-position": "right"
|
|
8362
8474
|
}, null, 8
|
|
8363
8475
|
/* PROPS */
|
|
8364
|
-
, ["modelValue", "step"])]),
|
|
8476
|
+
, ["modelValue", "min", "max", "step"])]),
|
|
8365
8477
|
_: 1
|
|
8366
8478
|
/* STABLE */
|
|
8367
8479
|
|
|
@@ -8396,11 +8508,11 @@ const ShadowAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
8396
8508
|
"onUpdate:modelValue": _cache[29] || (_cache[29] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).alphaScale = $event),
|
|
8397
8509
|
onInput: _cache[30] || (_cache[30] = $event => paramsChanged('alphaScale')),
|
|
8398
8510
|
step: 0.1,
|
|
8399
|
-
min:
|
|
8400
|
-
max:
|
|
8511
|
+
min: __props.minAlphaScale,
|
|
8512
|
+
max: __props.maxAlphaScale
|
|
8401
8513
|
}, null, 8
|
|
8402
8514
|
/* PROPS */
|
|
8403
|
-
, ["modelValue", "step"])]),
|
|
8515
|
+
, ["modelValue", "step", "min", "max"])]),
|
|
8404
8516
|
_: 1
|
|
8405
8517
|
/* STABLE */
|
|
8406
8518
|
|
|
@@ -8410,14 +8522,14 @@ const ShadowAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
8410
8522
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
|
|
8411
8523
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).alphaScale,
|
|
8412
8524
|
"onUpdate:modelValue": _cache[31] || (_cache[31] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).alphaScale = $event),
|
|
8413
|
-
min:
|
|
8414
|
-
max:
|
|
8525
|
+
min: __props.minAlphaScale,
|
|
8526
|
+
max: __props.maxAlphaScale,
|
|
8415
8527
|
step: 0.1,
|
|
8416
8528
|
onInput: _cache[32] || (_cache[32] = $event => paramsChanged('alphaScale')),
|
|
8417
8529
|
"controls-position": "right"
|
|
8418
8530
|
}, null, 8
|
|
8419
8531
|
/* PROPS */
|
|
8420
|
-
, ["modelValue", "step"])]),
|
|
8532
|
+
, ["modelValue", "min", "max", "step"])]),
|
|
8421
8533
|
_: 1
|
|
8422
8534
|
/* STABLE */
|
|
8423
8535
|
|
|
@@ -8811,6 +8923,38 @@ const ProfileAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
8811
8923
|
};
|
|
8812
8924
|
/* harmony default export */ var ProfileAnalysisvue_type_script_setup_true_lang_js = (/*#__PURE__*/Object.assign(ProfileAnalysisvue_type_script_setup_true_lang_js_default_, {
|
|
8813
8925
|
props: {
|
|
8926
|
+
minPerspectiveAngle: {
|
|
8927
|
+
type: Number,
|
|
8928
|
+
default: 0
|
|
8929
|
+
},
|
|
8930
|
+
maxPerspectiveAngle: {
|
|
8931
|
+
type: Number,
|
|
8932
|
+
default: 90
|
|
8933
|
+
},
|
|
8934
|
+
minTargetAreaWidth: {
|
|
8935
|
+
type: Number,
|
|
8936
|
+
default: 0
|
|
8937
|
+
},
|
|
8938
|
+
maxTargetAreaWidth: {
|
|
8939
|
+
type: Number,
|
|
8940
|
+
default: 500
|
|
8941
|
+
},
|
|
8942
|
+
minTargetAreaHeight: {
|
|
8943
|
+
type: Number,
|
|
8944
|
+
default: 0
|
|
8945
|
+
},
|
|
8946
|
+
maxTargetAreaHeight: {
|
|
8947
|
+
type: Number,
|
|
8948
|
+
default: 500
|
|
8949
|
+
},
|
|
8950
|
+
minCameraHeight: {
|
|
8951
|
+
type: Number,
|
|
8952
|
+
default: 0
|
|
8953
|
+
},
|
|
8954
|
+
maxCameraHeight: {
|
|
8955
|
+
type: Number,
|
|
8956
|
+
default: 500
|
|
8957
|
+
},
|
|
8814
8958
|
// 设置参数
|
|
8815
8959
|
settingParams: {
|
|
8816
8960
|
type: Object
|
|
@@ -8956,12 +9100,12 @@ const ProfileAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
8956
9100
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).perspectiveAngle,
|
|
8957
9101
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).perspectiveAngle = $event),
|
|
8958
9102
|
step: 1,
|
|
8959
|
-
min:
|
|
8960
|
-
max:
|
|
9103
|
+
min: __props.minPerspectiveAngle,
|
|
9104
|
+
max: __props.maxPerspectiveAngle,
|
|
8961
9105
|
onInput: onChangePerspectiveAngle
|
|
8962
9106
|
}, null, 8
|
|
8963
9107
|
/* PROPS */
|
|
8964
|
-
, ["modelValue"])]),
|
|
9108
|
+
, ["modelValue", "min", "max"])]),
|
|
8965
9109
|
_: 1
|
|
8966
9110
|
/* STABLE */
|
|
8967
9111
|
|
|
@@ -8971,13 +9115,13 @@ const ProfileAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
8971
9115
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
|
|
8972
9116
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).perspectiveAngle,
|
|
8973
9117
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).perspectiveAngle = $event),
|
|
8974
|
-
min:
|
|
8975
|
-
max:
|
|
9118
|
+
min: __props.minPerspectiveAngle,
|
|
9119
|
+
max: __props.maxPerspectiveAngle,
|
|
8976
9120
|
step: 1,
|
|
8977
9121
|
"controls-position": "right"
|
|
8978
9122
|
}, null, 8
|
|
8979
9123
|
/* PROPS */
|
|
8980
|
-
, ["modelValue"])]),
|
|
9124
|
+
, ["modelValue", "min", "max"])]),
|
|
8981
9125
|
_: 1
|
|
8982
9126
|
/* STABLE */
|
|
8983
9127
|
|
|
@@ -9011,12 +9155,12 @@ const ProfileAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
9011
9155
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).targetAreaWidth,
|
|
9012
9156
|
"onUpdate:modelValue": _cache[2] || (_cache[2] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).targetAreaWidth = $event),
|
|
9013
9157
|
step: 1,
|
|
9014
|
-
min:
|
|
9015
|
-
max:
|
|
9158
|
+
min: __props.minTargetAreaWidth,
|
|
9159
|
+
max: __props.maxTargetAreaWidth,
|
|
9016
9160
|
onInput: onChangeTargetAreaWidth
|
|
9017
9161
|
}, null, 8
|
|
9018
9162
|
/* PROPS */
|
|
9019
|
-
, ["modelValue"])]),
|
|
9163
|
+
, ["modelValue", "min", "max"])]),
|
|
9020
9164
|
_: 1
|
|
9021
9165
|
/* STABLE */
|
|
9022
9166
|
|
|
@@ -9026,13 +9170,13 @@ const ProfileAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
9026
9170
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
|
|
9027
9171
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).targetAreaWidth,
|
|
9028
9172
|
"onUpdate:modelValue": _cache[3] || (_cache[3] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).targetAreaWidth = $event),
|
|
9029
|
-
min:
|
|
9173
|
+
min: __props.minTargetAreaWidth,
|
|
9030
9174
|
step: 1,
|
|
9031
|
-
max:
|
|
9175
|
+
max: __props.maxTargetAreaWidth,
|
|
9032
9176
|
"controls-position": "right"
|
|
9033
9177
|
}, null, 8
|
|
9034
9178
|
/* PROPS */
|
|
9035
|
-
, ["modelValue"])]),
|
|
9179
|
+
, ["modelValue", "min", "max"])]),
|
|
9036
9180
|
_: 1
|
|
9037
9181
|
/* STABLE */
|
|
9038
9182
|
|
|
@@ -9066,12 +9210,12 @@ const ProfileAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
9066
9210
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).targetAreaHeight,
|
|
9067
9211
|
"onUpdate:modelValue": _cache[4] || (_cache[4] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).targetAreaHeight = $event),
|
|
9068
9212
|
step: 1,
|
|
9069
|
-
min:
|
|
9070
|
-
max:
|
|
9213
|
+
min: __props.minTargetAreaHeight,
|
|
9214
|
+
max: __props.maxTargetAreaHeight,
|
|
9071
9215
|
onInput: onChangeTargetAreaHeight
|
|
9072
9216
|
}, null, 8
|
|
9073
9217
|
/* PROPS */
|
|
9074
|
-
, ["modelValue"])]),
|
|
9218
|
+
, ["modelValue", "min", "max"])]),
|
|
9075
9219
|
_: 1
|
|
9076
9220
|
/* STABLE */
|
|
9077
9221
|
|
|
@@ -9081,13 +9225,13 @@ const ProfileAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
9081
9225
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
|
|
9082
9226
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).targetAreaHeight,
|
|
9083
9227
|
"onUpdate:modelValue": _cache[5] || (_cache[5] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).targetAreaHeight = $event),
|
|
9084
|
-
min:
|
|
9228
|
+
min: __props.minTargetAreaHeight,
|
|
9085
9229
|
step: 1,
|
|
9086
|
-
max:
|
|
9230
|
+
max: __props.maxTargetAreaHeight,
|
|
9087
9231
|
"controls-position": "right"
|
|
9088
9232
|
}, null, 8
|
|
9089
9233
|
/* PROPS */
|
|
9090
|
-
, ["modelValue"])]),
|
|
9234
|
+
, ["modelValue", "min", "max"])]),
|
|
9091
9235
|
_: 1
|
|
9092
9236
|
/* STABLE */
|
|
9093
9237
|
|
|
@@ -9121,12 +9265,12 @@ const ProfileAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
9121
9265
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).cameraHeight,
|
|
9122
9266
|
"onUpdate:modelValue": _cache[6] || (_cache[6] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).cameraHeight = $event),
|
|
9123
9267
|
step: 1,
|
|
9124
|
-
min:
|
|
9125
|
-
max:
|
|
9268
|
+
min: __props.minCameraHeight,
|
|
9269
|
+
max: __props.maxCameraHeight,
|
|
9126
9270
|
onInput: onChangeCameraHeight
|
|
9127
9271
|
}, null, 8
|
|
9128
9272
|
/* PROPS */
|
|
9129
|
-
, ["modelValue"])]),
|
|
9273
|
+
, ["modelValue", "min", "max"])]),
|
|
9130
9274
|
_: 1
|
|
9131
9275
|
/* STABLE */
|
|
9132
9276
|
|
|
@@ -9136,13 +9280,13 @@ const ProfileAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
|
9136
9280
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
|
|
9137
9281
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).cameraHeight,
|
|
9138
9282
|
"onUpdate:modelValue": _cache[7] || (_cache[7] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).cameraHeight = $event),
|
|
9139
|
-
min:
|
|
9283
|
+
min: __props.minCameraHeight,
|
|
9140
9284
|
step: 1,
|
|
9141
|
-
max:
|
|
9285
|
+
max: __props.maxCameraHeight,
|
|
9142
9286
|
"controls-position": "right"
|
|
9143
9287
|
}, null, 8
|
|
9144
9288
|
/* PROPS */
|
|
9145
|
-
, ["modelValue"])]),
|
|
9289
|
+
, ["modelValue", "min", "max"])]),
|
|
9146
9290
|
_: 1
|
|
9147
9291
|
/* STABLE */
|
|
9148
9292
|
|