@kq_npm/client3d_webgl_vue 1.0.7-beta → 1.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 +74 -61
- package/{fixedzoomin3d → fixedzoomin}/index.js +12 -12
- package/{fixedzoomout3d → fixedzoomout}/index.js +12 -12
- package/flight/index.js +21 -8
- package/flight/style/flight.css +1 -1
- package/index.js +204 -114
- package/measure/style/measure.css +1 -1
- package/modelselect/index.js +12 -2
- package/package.json +1 -1
- package/scenceview/index.js +65 -11
- package/scenceview/style/scenceview.css +1 -1
- package/style.css +1 -1
package/adddata/index.js
CHANGED
|
@@ -909,36 +909,37 @@ const __default__ = {
|
|
|
909
909
|
gis_utils_namespaceObject.utils.getWebMap(null, scenceView => {
|
|
910
910
|
if (scenceView) {
|
|
911
911
|
language.value = scenceView._language;
|
|
912
|
-
dataSourceTypeList.value = [{
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
}, {
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
}, {
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
},
|
|
931
|
-
|
|
932
|
-
name: language.value.Cesium3DTilesFile,
|
|
933
|
-
namePlaceholder: language.value.unnamedLayer,
|
|
934
|
-
urlPlaceholder: language.value.format + ':http://<host>:<port>/xxx/<servername>/tileset.json',
|
|
935
|
-
description: language.value.imagerty3DTilesFiledescription
|
|
936
|
-
}, {
|
|
912
|
+
dataSourceTypeList.value = [// {
|
|
913
|
+
// type: 'kq3dimageryfile',
|
|
914
|
+
// name: language.value.ImagertyTileFile,
|
|
915
|
+
// namePlaceholder: language.value.unnamedLayer,
|
|
916
|
+
// urlPlaceholder: language.value.format +':http://<host>:<port>/xxx/<servername>/info.xml',
|
|
917
|
+
// description: language.value.imagertyTileFiledescription
|
|
918
|
+
// }, {
|
|
919
|
+
// type: 'obterrain',
|
|
920
|
+
// name: language.value.ObTerrainTileFile,
|
|
921
|
+
// namePlaceholder: language.value.unnamedLayer,
|
|
922
|
+
// urlPlaceholder: language.value.format +':http://<host>:<port>/xxx/<servername>/info.xml',
|
|
923
|
+
// description: language.value.imagertyObTerrainTileFiledescription
|
|
924
|
+
// }, {
|
|
925
|
+
// type: 'stkterrain',
|
|
926
|
+
// name: language.value.StkTerrainTileFile,
|
|
927
|
+
// namePlaceholder: language.value.unnamedLayer,
|
|
928
|
+
// urlPlaceholder: language.value.format +':http://<host>:<port>/xxx/<foldername>/',
|
|
929
|
+
// description: language.value.imagertyStkTerrainTileFiledescription
|
|
930
|
+
// },
|
|
931
|
+
{
|
|
937
932
|
type: 'kqgis3dserver',
|
|
938
933
|
name: language.value.KQGIS3DServer,
|
|
939
934
|
namePlaceholder: language.value.unnamedLayer,
|
|
940
935
|
urlPlaceholder: language.value.format + ':http://<host>:<port>/kqgis/rest/services/<servername>/realspace',
|
|
941
936
|
description: language.value.imagerty3DServerdescription
|
|
937
|
+
}, {
|
|
938
|
+
type: 'kqgismapserver',
|
|
939
|
+
name: language.value.KQGISMapServer,
|
|
940
|
+
namePlaceholder: language.value.unnamedLayer,
|
|
941
|
+
urlPlaceholder: language.value.format + ':http://<host>:<port>/kqgis/rest/services/<servername>/map',
|
|
942
|
+
description: language.value.imagertyMapServerdescription
|
|
942
943
|
}, {
|
|
943
944
|
type: 'kqgisimageserver',
|
|
944
945
|
name: language.value.KQGISImageServer,
|
|
@@ -946,11 +947,17 @@ const __default__ = {
|
|
|
946
947
|
urlPlaceholder: language.value.format + ':http://<host>:<port>/kqgis/rest/services/<servername>/image',
|
|
947
948
|
description: language.value.imagertyImageServerdescription
|
|
948
949
|
}, {
|
|
949
|
-
type: '
|
|
950
|
-
name: language.value.
|
|
950
|
+
type: 'kqgisdataflowserver',
|
|
951
|
+
name: language.value.KQGISDataflowServer + '(未实现)',
|
|
951
952
|
namePlaceholder: language.value.unnamedLayer,
|
|
952
|
-
urlPlaceholder: language.value.format + ':http://<host>:<port>/kqgis/rest/services/<servername>/
|
|
953
|
-
description: language.value.
|
|
953
|
+
urlPlaceholder: language.value.format + ':http://<host>:<port>/kqgis/rest/services/<servername>/dataflow',
|
|
954
|
+
description: language.value.imagertyDataflowServerdescription
|
|
955
|
+
}, {
|
|
956
|
+
type: 'kqgistileserver',
|
|
957
|
+
name: language.value.KQGISTileServer + '(未实现)',
|
|
958
|
+
namePlaceholder: language.value.unnamedLayer,
|
|
959
|
+
urlPlaceholder: language.value.format + ':http://<host>:<port>/kqgis/rest/services/<servername>/tile',
|
|
960
|
+
description: language.value.imagertyTileServerdescription
|
|
954
961
|
}, {
|
|
955
962
|
type: 'arcgismapserver',
|
|
956
963
|
name: language.value.ArcGISMapServer,
|
|
@@ -969,40 +976,46 @@ const __default__ = {
|
|
|
969
976
|
namePlaceholder: language.value.unnamedLayer,
|
|
970
977
|
urlPlaceholder: language.value.format + ':http://<host>:<port>/kqgis/rest/services/<servername>/map/wmts',
|
|
971
978
|
description: language.value.imagertyOGCWMTSdescription
|
|
972
|
-
},
|
|
973
|
-
/*{
|
|
974
|
-
type: 'wfs',
|
|
975
|
-
name: language.value.OGCWFS,
|
|
976
|
-
namePlaceholder: language.value.wfsLayer,
|
|
977
|
-
urlPlaceholder: language.value.format +':http://<host>:<port>/ArcGIS/rest/services/<servername>/wfs',
|
|
978
|
-
description: language.value.imagertyOGCWFSdescription
|
|
979
|
-
}, {
|
|
980
|
-
type: 'mvt',
|
|
981
|
-
name: language.value.MVT,
|
|
982
|
-
namePlaceholder: language.value.unnamedLayer,
|
|
983
|
-
urlPlaceholder: language.value.format +':http://<host>:<port>/mvt/tiles/{z}/{x}/{y}.mvt',
|
|
984
|
-
stylePlaceholder: language.value.format +':http://<host>:<port>/mvt/style.json',
|
|
985
|
-
description: language.value.imagertyMVTdescription
|
|
986
|
-
}, */
|
|
987
|
-
{
|
|
988
|
-
type: 'geojson',
|
|
989
|
-
name: language.value.GeoJson,
|
|
990
|
-
namePlaceholder: language.value.unnamedLayer,
|
|
991
|
-
urlPlaceholder: language.value.format + ': http://<host>:<port>/xxx/<servername>/xxx.geojson',
|
|
992
|
-
description: language.value.imagertyGeoJsondescription
|
|
993
|
-
}, {
|
|
994
|
-
type: 'kml',
|
|
995
|
-
name: language.value.KML,
|
|
996
|
-
namePlaceholder: language.value.unnamedLayer,
|
|
997
|
-
urlPlaceholder: language.value.format + ': http://<host>:<port>/xxx/<servername>/xxx.kml',
|
|
998
|
-
description: language.value.imagertyKMLdescription
|
|
999
979
|
}, {
|
|
1000
|
-
type: '
|
|
1001
|
-
name: language.value.
|
|
980
|
+
type: '3dtiles',
|
|
981
|
+
name: language.value.Cesium3DTilesFile,
|
|
1002
982
|
namePlaceholder: language.value.unnamedLayer,
|
|
1003
|
-
urlPlaceholder: language.value.format + ':
|
|
1004
|
-
description: language.value.
|
|
1005
|
-
}
|
|
983
|
+
urlPlaceholder: language.value.format + ':http://<host>:<port>/tileset.json',
|
|
984
|
+
description: language.value.imagerty3DTilesFiledescription
|
|
985
|
+
}
|
|
986
|
+
/*, {
|
|
987
|
+
type: 'wfs',
|
|
988
|
+
name: language.value.OGCWFS,
|
|
989
|
+
namePlaceholder: language.value.wfsLayer,
|
|
990
|
+
urlPlaceholder: language.value.format +':http://<host>:<port>/ArcGIS/rest/services/<servername>/wfs',
|
|
991
|
+
description: language.value.imagertyOGCWFSdescription
|
|
992
|
+
}, {
|
|
993
|
+
type: 'mvt',
|
|
994
|
+
name: language.value.MVT,
|
|
995
|
+
namePlaceholder: language.value.unnamedLayer,
|
|
996
|
+
urlPlaceholder: language.value.format +':http://<host>:<port>/mvt/tiles/{z}/{x}/{y}.mvt',
|
|
997
|
+
stylePlaceholder: language.value.format +':http://<host>:<port>/mvt/style.json',
|
|
998
|
+
description: language.value.imagertyMVTdescription
|
|
999
|
+
}, {
|
|
1000
|
+
type: 'geojson',
|
|
1001
|
+
name: language.value.GeoJson,
|
|
1002
|
+
namePlaceholder: language.value.unnamedLayer,
|
|
1003
|
+
urlPlaceholder: language.value.format +': http://<host>:<port>/xxx/<servername>/xxx.geojson',
|
|
1004
|
+
description: language.value.imagertyGeoJsondescription
|
|
1005
|
+
}, {
|
|
1006
|
+
type: 'kml',
|
|
1007
|
+
name: language.value.KML,
|
|
1008
|
+
namePlaceholder: language.value.unnamedLayer,
|
|
1009
|
+
urlPlaceholder: language.value.format +': http://<host>:<port>/xxx/<servername>/xxx.kml',
|
|
1010
|
+
description: language.value.imagertyKMLdescription
|
|
1011
|
+
}, {
|
|
1012
|
+
type: 'czml',
|
|
1013
|
+
name: language.value.CZML,
|
|
1014
|
+
namePlaceholder: language.value.unnamedLayer,
|
|
1015
|
+
urlPlaceholder: language.value.format +': http://<host>:<port>/xxx/<servername>/xxx.czml',
|
|
1016
|
+
description: language.value.imagertyCZMLdescription
|
|
1017
|
+
}*/
|
|
1018
|
+
];
|
|
1006
1019
|
dataSourceType.value = dataSourceTypeList.value[0];
|
|
1007
1020
|
let options = {
|
|
1008
1021
|
billboardImage: const_image_namespaceObject.BILLBOARD_IMAGE_URL
|
|
@@ -51,8 +51,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
51
51
|
|
|
52
52
|
// EXPORTS
|
|
53
53
|
__webpack_require__.d(__webpack_exports__, {
|
|
54
|
-
"
|
|
55
|
-
"default": function() { return /* reexport */
|
|
54
|
+
"FixedZoominViewModel": function() { return /* reexport */ FixedZoomin3dViewModel; },
|
|
55
|
+
"default": function() { return /* reexport */ FixedZoomin; }
|
|
56
56
|
});
|
|
57
57
|
|
|
58
58
|
;// CONCATENATED MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
@@ -74,7 +74,7 @@ function _defineProperty(obj, key, value) {
|
|
|
74
74
|
|
|
75
75
|
return obj;
|
|
76
76
|
}
|
|
77
|
-
;// CONCATENATED MODULE: ./src/webgl/
|
|
77
|
+
;// CONCATENATED MODULE: ./src/webgl/fixedzoomin/FixedZoominViewModel.js
|
|
78
78
|
|
|
79
79
|
// 三维固定缩放逻辑
|
|
80
80
|
class FixedZoomin3dViewModel {
|
|
@@ -143,7 +143,7 @@ class FixedZoomin3dViewModel {
|
|
|
143
143
|
}
|
|
144
144
|
;// CONCATENATED MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
145
145
|
var gis_utils_namespaceObject = require("@kq_npm/client_common_vue/_utils/gis-utils");
|
|
146
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/
|
|
146
|
+
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/fixedzoomin/FixedZoomin.vue?vue&type=script&setup=true&lang=js
|
|
147
147
|
|
|
148
148
|
|
|
149
149
|
|
|
@@ -153,7 +153,7 @@ var gis_utils_namespaceObject = require("@kq_npm/client_common_vue/_utils/gis-ut
|
|
|
153
153
|
const __default__ = {
|
|
154
154
|
name: "Kq3dFixedZoomin3d"
|
|
155
155
|
};
|
|
156
|
-
/* harmony default export */ var
|
|
156
|
+
/* harmony default export */ var FixedZoominvue_type_script_setup_true_lang_js = (/*#__PURE__*/Object.assign(__default__, {
|
|
157
157
|
props: {
|
|
158
158
|
// 按钮图标大小
|
|
159
159
|
iconSize: {
|
|
@@ -218,26 +218,26 @@ const __default__ = {
|
|
|
218
218
|
}
|
|
219
219
|
|
|
220
220
|
}));
|
|
221
|
-
;// CONCATENATED MODULE: ./src/webgl/
|
|
221
|
+
;// CONCATENATED MODULE: ./src/webgl/fixedzoomin/FixedZoomin.vue?vue&type=script&setup=true&lang=js
|
|
222
222
|
|
|
223
|
-
;// CONCATENATED MODULE: ./src/webgl/
|
|
223
|
+
;// CONCATENATED MODULE: ./src/webgl/fixedzoomin/FixedZoomin.vue
|
|
224
224
|
|
|
225
225
|
|
|
226
226
|
|
|
227
|
-
const __exports__ =
|
|
227
|
+
const __exports__ = FixedZoominvue_type_script_setup_true_lang_js;
|
|
228
228
|
|
|
229
|
-
/* harmony default export */ var
|
|
229
|
+
/* harmony default export */ var FixedZoomin = (__exports__);
|
|
230
230
|
;// CONCATENATED MODULE: external "@kq_npm/client_common_vue/init.js"
|
|
231
231
|
var init_js_namespaceObject = require("@kq_npm/client_common_vue/init.js");
|
|
232
232
|
var init_js_default = /*#__PURE__*/__webpack_require__.n(init_js_namespaceObject);
|
|
233
|
-
;// CONCATENATED MODULE: ./src/webgl/
|
|
233
|
+
;// CONCATENATED MODULE: ./src/webgl/fixedzoomin/index.js
|
|
234
234
|
|
|
235
235
|
|
|
236
236
|
|
|
237
237
|
|
|
238
|
-
|
|
238
|
+
FixedZoomin.install = (Vue, opts) => {
|
|
239
239
|
init_js_default()(Vue, opts);
|
|
240
|
-
Vue.component(
|
|
240
|
+
Vue.component(FixedZoomin.name, FixedZoomin);
|
|
241
241
|
};
|
|
242
242
|
|
|
243
243
|
|
|
@@ -51,8 +51,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
51
51
|
|
|
52
52
|
// EXPORTS
|
|
53
53
|
__webpack_require__.d(__webpack_exports__, {
|
|
54
|
-
"
|
|
55
|
-
"default": function() { return /* reexport */
|
|
54
|
+
"FixedZoomoutViewModel": function() { return /* reexport */ FixedZoomout3dViewModel; },
|
|
55
|
+
"default": function() { return /* reexport */ FixedZoomout; }
|
|
56
56
|
});
|
|
57
57
|
|
|
58
58
|
;// CONCATENATED MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
@@ -74,7 +74,7 @@ function _defineProperty(obj, key, value) {
|
|
|
74
74
|
|
|
75
75
|
return obj;
|
|
76
76
|
}
|
|
77
|
-
;// CONCATENATED MODULE: ./src/webgl/
|
|
77
|
+
;// CONCATENATED MODULE: ./src/webgl/fixedzoomout/FixedZoomoutViewModel.js
|
|
78
78
|
|
|
79
79
|
// 三维固定缩放逻辑
|
|
80
80
|
class FixedZoomout3dViewModel {
|
|
@@ -143,7 +143,7 @@ class FixedZoomout3dViewModel {
|
|
|
143
143
|
}
|
|
144
144
|
;// CONCATENATED MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
145
145
|
var gis_utils_namespaceObject = require("@kq_npm/client_common_vue/_utils/gis-utils");
|
|
146
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/
|
|
146
|
+
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/fixedzoomout/FixedZoomout.vue?vue&type=script&setup=true&lang=js
|
|
147
147
|
|
|
148
148
|
|
|
149
149
|
|
|
@@ -153,7 +153,7 @@ var gis_utils_namespaceObject = require("@kq_npm/client_common_vue/_utils/gis-ut
|
|
|
153
153
|
const __default__ = {
|
|
154
154
|
name: "Kq3dFixedZoomout3d"
|
|
155
155
|
};
|
|
156
|
-
/* harmony default export */ var
|
|
156
|
+
/* harmony default export */ var FixedZoomoutvue_type_script_setup_true_lang_js = (/*#__PURE__*/Object.assign(__default__, {
|
|
157
157
|
props: {
|
|
158
158
|
// 按钮图标大小
|
|
159
159
|
iconSize: {
|
|
@@ -218,26 +218,26 @@ const __default__ = {
|
|
|
218
218
|
}
|
|
219
219
|
|
|
220
220
|
}));
|
|
221
|
-
;// CONCATENATED MODULE: ./src/webgl/
|
|
221
|
+
;// CONCATENATED MODULE: ./src/webgl/fixedzoomout/FixedZoomout.vue?vue&type=script&setup=true&lang=js
|
|
222
222
|
|
|
223
|
-
;// CONCATENATED MODULE: ./src/webgl/
|
|
223
|
+
;// CONCATENATED MODULE: ./src/webgl/fixedzoomout/FixedZoomout.vue
|
|
224
224
|
|
|
225
225
|
|
|
226
226
|
|
|
227
|
-
const __exports__ =
|
|
227
|
+
const __exports__ = FixedZoomoutvue_type_script_setup_true_lang_js;
|
|
228
228
|
|
|
229
|
-
/* harmony default export */ var
|
|
229
|
+
/* harmony default export */ var FixedZoomout = (__exports__);
|
|
230
230
|
;// CONCATENATED MODULE: external "@kq_npm/client_common_vue/init.js"
|
|
231
231
|
var init_js_namespaceObject = require("@kq_npm/client_common_vue/init.js");
|
|
232
232
|
var init_js_default = /*#__PURE__*/__webpack_require__.n(init_js_namespaceObject);
|
|
233
|
-
;// CONCATENATED MODULE: ./src/webgl/
|
|
233
|
+
;// CONCATENATED MODULE: ./src/webgl/fixedzoomout/index.js
|
|
234
234
|
|
|
235
235
|
|
|
236
236
|
|
|
237
237
|
|
|
238
|
-
|
|
238
|
+
FixedZoomout.install = (Vue, opts) => {
|
|
239
239
|
init_js_default()(Vue, opts);
|
|
240
|
-
Vue.component(
|
|
240
|
+
Vue.component(FixedZoomout.name, FixedZoomout);
|
|
241
241
|
};
|
|
242
242
|
|
|
243
243
|
|
package/flight/index.js
CHANGED
|
@@ -260,7 +260,16 @@ const __default__ = {
|
|
|
260
260
|
let viewer = null;
|
|
261
261
|
let pathPlayIndex = -1;
|
|
262
262
|
let dropDownPath = null;
|
|
263
|
-
let viewModel = null;
|
|
263
|
+
let viewModel = null; // 表格头样式
|
|
264
|
+
|
|
265
|
+
let headClass = args => {
|
|
266
|
+
return {
|
|
267
|
+
"background-color": "var(--kq-fill-color-light)",
|
|
268
|
+
color: "var(--kq-color-info)",
|
|
269
|
+
"font-size": "14px"
|
|
270
|
+
};
|
|
271
|
+
};
|
|
272
|
+
|
|
264
273
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.onMounted)(() => {
|
|
265
274
|
gis_utils_namespaceObject.utils.getWebMap(null, scenceView => {
|
|
266
275
|
if (scenceView) {
|
|
@@ -589,7 +598,7 @@ const __default__ = {
|
|
|
589
598
|
/* PROPS */
|
|
590
599
|
, ["title"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_upload, {
|
|
591
600
|
style: {
|
|
592
|
-
"margin-left": "
|
|
601
|
+
"margin-left": "4px"
|
|
593
602
|
},
|
|
594
603
|
"on-change": importFile,
|
|
595
604
|
"auto-upload": false,
|
|
@@ -684,7 +693,7 @@ const __default__ = {
|
|
|
684
693
|
onClick: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withModifiers)($event => showDropDownMenu(item, index), ["prevent", "stop"]),
|
|
685
694
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).more
|
|
686
695
|
}, {
|
|
687
|
-
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)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(icons_vue_namespaceObject.
|
|
696
|
+
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)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(icons_vue_namespaceObject.More))]),
|
|
688
697
|
_: 2
|
|
689
698
|
/* DYNAMIC */
|
|
690
699
|
|
|
@@ -804,7 +813,8 @@ const __default__ = {
|
|
|
804
813
|
/* PROPS */
|
|
805
814
|
, ["label"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_table, {
|
|
806
815
|
border: "",
|
|
807
|
-
data: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(tableData)
|
|
816
|
+
data: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(tableData),
|
|
817
|
+
"header-cell-style": (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(headClass)
|
|
808
818
|
}, {
|
|
809
819
|
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_table_column, {
|
|
810
820
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).no,
|
|
@@ -815,12 +825,14 @@ const __default__ = {
|
|
|
815
825
|
/* PROPS */
|
|
816
826
|
, ["label"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_table_column, {
|
|
817
827
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).position,
|
|
818
|
-
prop: "position"
|
|
828
|
+
prop: "position",
|
|
829
|
+
align: "center"
|
|
819
830
|
}, null, 8
|
|
820
831
|
/* PROPS */
|
|
821
832
|
, ["label"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_table_column, {
|
|
822
833
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).interval,
|
|
823
|
-
width: "100"
|
|
834
|
+
width: "100",
|
|
835
|
+
align: "center"
|
|
824
836
|
}, {
|
|
825
837
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(scope => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
|
|
826
838
|
modelValue: scope.row.interval,
|
|
@@ -840,7 +852,8 @@ const __default__ = {
|
|
|
840
852
|
/* PROPS */
|
|
841
853
|
, ["label"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_table_column, {
|
|
842
854
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).operation,
|
|
843
|
-
width: "90"
|
|
855
|
+
width: "90",
|
|
856
|
+
align: "center"
|
|
844
857
|
}, {
|
|
845
858
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(scope => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_button, {
|
|
846
859
|
onClick: $event => replaceKey(scope.$index, scope.row),
|
|
@@ -888,7 +901,7 @@ const __default__ = {
|
|
|
888
901
|
|
|
889
902
|
}, 8
|
|
890
903
|
/* PROPS */
|
|
891
|
-
, ["data"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_button, {
|
|
904
|
+
, ["data", "header-cell-style"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_button, {
|
|
892
905
|
class: "kq-flight3d-btn-add",
|
|
893
906
|
onClick: addKey
|
|
894
907
|
}, {
|
package/flight/style/flight.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
:root{--kq-box-padding:16px;--kq-header-bg-color:var(--kq-color-primary);--kq-header-border-color:var(--kq-color-primary)}.kq-flight3d{z-index:999;width:466px;border-radius:var(--kq-border-radius-base);padding:16px;pointer-events:auto;cursor:default;background-color:var(--kq-bg-color)}.kq-flight3d p{margin:0}.kq-flight3d .kq-flight3d-btns{display:-webkit-box;display:-ms-flexbox;display:flex}.kq-flight3d .kq-flight3d-btns .kq-button{width:48px;height:48px;margin-right:12px}.kq-flight3d .kq-flight3d-btns .kq-button .kq-icon{color:var(--kq-color-primary)}.kq-flight3d .pathlist-ul{color:var(--kq-text-color-regular);height:100%;margin-top:0;margin-bottom:0;border-right:none}.kq-flight3d .pathlist-ul .kq-icon path{fill:var(--kq-text-color-regular)}.kq-flight3d .pathlist-ul li{position:relative;height:32px;line-height:32px;list-style-type:none;border-bottom:var(--kq-border-width) var(--kq-border-style) var(--kq-border-color);padding
|
|
1
|
+
:root{--kq-box-padding:16px;--kq-header-bg-color:var(--kq-color-primary);--kq-header-border-color:var(--kq-color-primary)}.kq-flight3d{z-index:999;width:466px;border-radius:var(--kq-border-radius-base);padding:16px;pointer-events:auto;cursor:default;background-color:var(--kq-bg-color)}.kq-flight3d p{margin:0}.kq-flight3d .kq-flight3d-btns{display:-webkit-box;display:-ms-flexbox;display:flex}.kq-flight3d .kq-flight3d-btns .kq-button{width:48px;height:48px;margin-right:12px}.kq-flight3d .kq-flight3d-btns .kq-button .kq-icon{color:var(--kq-color-primary)}.kq-flight3d .pathlist-ul{color:var(--kq-text-color-regular);height:100%;margin-top:0;margin-bottom:0;border-right:none}.kq-flight3d .pathlist-ul .kq-icon path{fill:var(--kq-text-color-regular)}.kq-flight3d .pathlist-ul li{position:relative;height:32px;line-height:32px;list-style-type:none;border-bottom:var(--kq-border-width) var(--kq-border-style) var(--kq-border-color);padding:0!important}.kq-flight3d .pathlist-ul li span{text-indent:8px;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;width:100%}.kq-flight3d .pathlist-ul li:hover .menuIcon{display:block}.kq-flight3d .pathlist-ul li .menuIcon{display:none}.kq-flight3d .dropdown-ul{width:84px;background-color:var(--kq-bg-color);-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:var(--kq-box-shadow);box-shadow:var(--kq-box-shadow);text-align:center;position:fixed;z-index:9999999;border-right:none;padding:8px 0}.kq-flight3d .dropdown-ul .kq-icon path{fill:var(--kq-text-color-regular)}.kq-flight3d .dropdown-ul li{height:30px;padding-left:12px!important}.kq-flight3d .kq-flight3d-list-title{line-height:24px;margin:8px 0;text-align:center}.kq-flight3d .kq-flight3d-add-title,.kq-flight3d .kq-flight3d-list-title{color:var(--kq-text-color-primary);background:var(--kq-fill-color-light);font-size:16px;padding:12px 16px;font-weight:700}.kq-flight3d .kq-flight3d-add-title .kq-button{height:22px;padding:0 12px 0 0}.kq-flight3d .kq-flight3d-add-title .kq-icon path{fill:var(--kq-text-color-regular)}.kq-flight3d .kq-flight3d-item-name{color:var(--kq-text-color-regular);margin:8px 0}.kq-flight3d .kq-table .cell{padding:0 8px}.kq-flight3d .kq-table .kq-button{width:32px;height:32px}.kq-flight3d .kq-table .kq-button+.kq-button{margin-left:8px}.kq-flight3d .kq-table .kq-icon path{fill:var(--kq-text-color-regular)}.kq-flight3d .kq-flight3d-btn-add{margin:8px 0;width:100%;color:var(--kq-color-primary)}.kq-flight3d .kq-flight3d-btn-add .kq-icon{margin-right:10px}.kq-flight3d .kq-flight3d-btn-add .kq-icon path{fill:var(--kq-text-color-regular)}.kq-flight3d .kq-flight3d-ybf{color:var(--kq-text-color-regular);background:var(--kq-fill-color-light);font-size:14px;line-height:32px;padding:12px 16px;margin-bottom:8px!important}.kq-flight3d .kq-flight3d-ybf .kq-form-item__content{height:32px}.kq-flight3d .kq-flight3d-ybf .kq-form-item__content div{width:100%;text-align:center}.kq-flight3d .kq-flight3d-ybf .kq-icon{margin:0 12px;cursor:pointer}.kq-flight3d .kq-flight3d-ybf .kq-icon path{fill:var(--kq-text-color-regular)}.kq-flight3d .kq-divider{margin:0 0 16px}
|