@kq_npm/client3d_webgl_vue 4.5.29-beta → 4.5.31
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 +519 -263
- package/adddata/style/adddata.css +1 -1
- package/aspectanalysis/index.js +201 -123
- package/baseterraingallery/index.js +123 -94
- package/baseterraingallery/style/baseterraingallery.css +1 -1
- package/boxclip/index.js +442 -249
- package/clientPrint/index.js +20228 -7467
- package/clientPrint/style/clientPrint.css +1 -1
- package/comparemap/index.js +243 -213
- package/compass/index.js +68 -74
- package/excavatefillanalysis/index.js +225 -143
- package/fixedzoomin/index.js +82 -72
- package/fixedzoomout/index.js +80 -71
- package/flight/index.js +371 -257
- package/flight/style/flight.css +1 -1
- package/floodanalysis/index.js +347 -199
- package/geologicalbodyanalysis/index.js +260 -166
- package/gpuspatialquery/index.js +359 -198
- package/hawkeye/index.js +100 -131
- package/headertemp/index.js +25 -14
- package/heatmap3d/index.js +678 -366
- package/heatmap3d/style/heatmap3d.css +1 -1
- package/index.js +19746 -6806
- package/isolineanalysis/index.js +1202 -504
- package/light/index.js +494 -349
- package/limitheightanalysis/index.js +223 -159
- package/measure/index.js +353 -198
- package/modelFlat/index.js +204 -167
- package/modelexcavate/index.js +191 -130
- package/modelfilter/index.js +271 -179
- package/modelprofileanalysis/index.js +316 -206
- package/modelselect/index.js +147 -142
- package/package.json +1 -1
- package/particleeffect/index.js +403 -225
- package/planeclip/index.js +300 -198
- package/resetview/index.js +52 -66
- package/roller/index.js +372 -304
- package/scaneffect/index.js +537 -230
- package/sceneadvancedtoimage/index.js +358 -205
- package/sceneadvancedtoimage/style/sceneadvancedtoimage.css +1 -1
- package/sceneapp/index.js +20228 -7467
- package/sceneset/index.js +864 -350
- package/scenetohdimage/index.js +297 -159
- package/scenetohdimage/style/scenetohdimage.css +1 -1
- package/sceneview/index.js +20228 -7467
- package/sceneview/style/sceneview.css +1 -1
- package/screenshot/index.js +301 -257
- package/shadowanalysis/index.js +405 -217
- package/sightlineanalysis/index.js +271 -183
- package/sightlineanalysis/style/divpoint.css +1 -1
- package/skylineanalysis/index.js +308 -160
- package/slopeanalysis/index.js +397 -227
- package/slopeaspectanalysis/index.js +485 -259
- package/statusbar/index.js +65 -88
- package/style.css +1 -1
- package/terrainoperation/index.js +237 -176
- package/terrainprofileanalysis/index.js +138 -120
- package/typhoontrac/index.js +1004 -234
- package/typhoontrac/style/typhoontrac.css +1 -1
- package/underground/index.js +61 -70
- package/videofusion/index.js +488 -265
- package/videoproject/index.js +490 -271
- package/viewshedanalysis/index.js +255 -151
- package/weathereffect/index.js +317 -166
- package/windyslicing/index.js +2198 -0
- package/windyslicing/style/index.js +3 -0
- package/windyslicing/style/windyslicing.css +1 -0
- package/wireframesketch/index.js +142 -110
package/flight/index.js
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
if(typeof exports === 'object' && typeof module === 'object')
|
|
3
3
|
module.exports = factory(require("vue"), require("@kq_npm/client_common_vue/init.js"), require("@kq_npm/client_common_vue/_utils/gis-utils"), require("@kq_npm/client_common_vue/_utils/util"));
|
|
4
4
|
else if(typeof define === 'function' && define.amd)
|
|
5
|
-
define(["vue", "@kq_npm/client_common_vue/init.js", "@kq_npm/client_common_vue/_utils/gis-utils", "@kq_npm/client_common_vue/_utils/util"], factory);
|
|
6
|
-
else
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
5
|
+
define("@kq_npm/client3d_webgl_vue", ["vue", "@kq_npm/client_common_vue/init.js", "@kq_npm/client_common_vue/_utils/gis-utils", "@kq_npm/client_common_vue/_utils/util"], factory);
|
|
6
|
+
else if(typeof exports === 'object')
|
|
7
|
+
exports["@kq_npm/client3d_webgl_vue"] = factory(require("vue"), require("@kq_npm/client_common_vue/init.js"), require("@kq_npm/client_common_vue/_utils/gis-utils"), require("@kq_npm/client_common_vue/_utils/util"));
|
|
8
|
+
else
|
|
9
|
+
root["@kq_npm/client3d_webgl_vue"] = factory(root["Vue"], root["@kq_npm/client_common_vue/init.js"], root["@kq_npm/client_common_vue/_utils/gis-utils"], root["@kq_npm/client_common_vue/_utils/util"]);
|
|
10
10
|
})(this, function(__WEBPACK_EXTERNAL_MODULE__1895__, __WEBPACK_EXTERNAL_MODULE__7997__, __WEBPACK_EXTERNAL_MODULE__7135__, __WEBPACK_EXTERNAL_MODULE__3458__) {
|
|
11
11
|
return /******/ (function() { // webpackBootstrap
|
|
12
12
|
/******/ "use strict";
|
|
@@ -25,10 +25,12 @@ return /******/ (function() { // webpackBootstrap
|
|
|
25
25
|
*/
|
|
26
26
|
|
|
27
27
|
|
|
28
|
+
|
|
28
29
|
element_plus_dist_index_full_js__WEBPACK_IMPORTED_MODULE_0__.ElMessage.install = (Vue, opts) => {
|
|
29
30
|
_init__WEBPACK_IMPORTED_MODULE_1___default()(Vue, opts);
|
|
30
31
|
Vue.component("KqMessage", element_plus_dist_index_full_js__WEBPACK_IMPORTED_MODULE_0__.ElMessage);
|
|
31
32
|
};
|
|
33
|
+
|
|
32
34
|
/* harmony default export */ __webpack_exports__["Z"] = (element_plus_dist_index_full_js__WEBPACK_IMPORTED_MODULE_0__.ElMessage);
|
|
33
35
|
|
|
34
36
|
/***/ }),
|
|
@@ -39,7 +41,8 @@ element_plus_dist_index_full_js__WEBPACK_IMPORTED_MODULE_0__.ElMessage.install =
|
|
|
39
41
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
40
42
|
/* harmony export */ "Z": function() { return /* binding */ FlightViewModel; }
|
|
41
43
|
/* harmony export */ });
|
|
42
|
-
/* harmony import */ var _Users_zpc_Documents_KQGEOSpace_KQGISClientForVue_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
44
|
+
/* harmony import */ var _Users_zpc_Documents_KQGEOSpace_KQGISClientForVue_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(8270);
|
|
45
|
+
|
|
43
46
|
|
|
44
47
|
/*
|
|
45
48
|
* Copyright (C) 2019 KQ GEO Technologies Co., Ltd.
|
|
@@ -47,105 +50,107 @@ element_plus_dist_index_full_js__WEBPACK_IMPORTED_MODULE_0__.ElMessage.install =
|
|
|
47
50
|
*/
|
|
48
51
|
//飞行操作类
|
|
49
52
|
class FlightViewModel {
|
|
53
|
+
//飞行三维对象
|
|
50
54
|
//停止事件
|
|
51
|
-
|
|
52
55
|
constructor(viewer) {
|
|
53
56
|
(0,_Users_zpc_Documents_KQGEOSpace_KQGISClientForVue_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z)(this, "_animationPath", null);
|
|
54
|
-
|
|
57
|
+
|
|
55
58
|
(0,_Users_zpc_Documents_KQGEOSpace_KQGISClientForVue_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z)(this, "stopEvent", null);
|
|
59
|
+
|
|
56
60
|
this._animationPath = new Cesium.Kq3dAnimationPath(viewer);
|
|
57
61
|
this.stopEvent = this._animationPath.stoped;
|
|
58
|
-
}
|
|
62
|
+
} //播放动画导航路径
|
|
63
|
+
|
|
59
64
|
|
|
60
|
-
//播放动画导航路径
|
|
61
65
|
play() {
|
|
62
66
|
this._animationPath.play();
|
|
63
|
-
}
|
|
67
|
+
} //暂停动画导航路径
|
|
68
|
+
|
|
64
69
|
|
|
65
|
-
//暂停动画导航路径
|
|
66
70
|
pause() {
|
|
67
71
|
this._animationPath.pause();
|
|
68
|
-
}
|
|
72
|
+
} //停止动画导航路径
|
|
73
|
+
|
|
69
74
|
|
|
70
|
-
//停止动画导航路径
|
|
71
75
|
stop() {
|
|
72
76
|
this._animationPath.stop();
|
|
73
|
-
}
|
|
77
|
+
} //获取动画导航是否重复播放
|
|
78
|
+
|
|
74
79
|
|
|
75
|
-
//获取动画导航是否重复播放
|
|
76
80
|
getAutoRepeat() {
|
|
77
81
|
return this._animationPath.getAutoRepeat();
|
|
78
|
-
}
|
|
82
|
+
} //设置动画导航是否循环播放
|
|
83
|
+
|
|
79
84
|
|
|
80
|
-
//设置动画导航是否循环播放
|
|
81
85
|
setAutoRepeat(autoRepeat) {
|
|
82
86
|
this._animationPath.setAutoRepeat(autoRepeat);
|
|
83
|
-
}
|
|
87
|
+
} //将当前相机位置添加到动画导航路径中
|
|
88
|
+
|
|
84
89
|
|
|
85
|
-
//将当前相机位置添加到动画导航路径中
|
|
86
90
|
addKeyPointByCurrentView(duration) {
|
|
87
91
|
this._animationPath.addKeyPointByCurrentView(duration);
|
|
88
|
-
}
|
|
92
|
+
} //使用当前视角修改指定索引位置的路径节点
|
|
93
|
+
|
|
89
94
|
|
|
90
|
-
//使用当前视角修改指定索引位置的路径节点
|
|
91
95
|
modifyKeyPointByCurrentView(index, duration) {
|
|
92
96
|
this._animationPath.modifyKeyPointByCurrentView(index, duration);
|
|
93
|
-
}
|
|
97
|
+
} //获取指定索引位置处的路径节点
|
|
98
|
+
|
|
94
99
|
|
|
95
|
-
//获取指定索引位置处的路径节点
|
|
96
100
|
getKeyPoint(index) {
|
|
97
101
|
return this._animationPath.getKeyPoint(index);
|
|
98
|
-
}
|
|
102
|
+
} //获取指定索引位置的路径节点的耗时信息
|
|
103
|
+
|
|
99
104
|
|
|
100
|
-
//获取指定索引位置的路径节点的耗时信息
|
|
101
105
|
getKeyPointDur(index) {
|
|
102
106
|
return this._animationPath.getKeyPointDur(index);
|
|
103
|
-
}
|
|
107
|
+
} //修改指定索引位置的路径节点
|
|
108
|
+
|
|
104
109
|
|
|
105
|
-
//修改指定索引位置的路径节点
|
|
106
110
|
modifyKeyPoint(index, position, orientation, duration) {
|
|
107
111
|
this._animationPath.modifyKeyPoint(index, position, orientation, duration);
|
|
108
|
-
}
|
|
112
|
+
} //删除动画导航中指定索引位置的路径节点
|
|
113
|
+
|
|
109
114
|
|
|
110
|
-
//删除动画导航中指定索引位置的路径节点
|
|
111
115
|
deleteKeyPoint(index) {
|
|
112
116
|
this._animationPath.deleteKeyPoint(index);
|
|
113
|
-
}
|
|
117
|
+
} //获取动画导航所有的路径节点
|
|
118
|
+
|
|
114
119
|
|
|
115
|
-
//获取动画导航所有的路径节点
|
|
116
120
|
getAllKeyPoints() {
|
|
117
121
|
return this._animationPath.getAllKeyPoints();
|
|
118
|
-
}
|
|
122
|
+
} //清空动画导航所有路径节点
|
|
123
|
+
|
|
119
124
|
|
|
120
|
-
//清空动画导航所有路径节点
|
|
121
125
|
clearKeyPoints() {
|
|
122
126
|
this._animationPath.clearKeyPoints();
|
|
123
|
-
}
|
|
127
|
+
} //从xml字符串获取动画导航
|
|
128
|
+
|
|
124
129
|
|
|
125
|
-
//从xml字符串获取动画导航
|
|
126
130
|
fromXmlString(xmlString) {
|
|
127
131
|
this._animationPath.fromXmlString(xmlString);
|
|
128
|
-
}
|
|
132
|
+
} //动画导航转换成xml字符串
|
|
133
|
+
|
|
129
134
|
|
|
130
|
-
//动画导航转换成xml字符串
|
|
131
135
|
asXmlString() {
|
|
132
136
|
return this._animationPath.asXmlString();
|
|
133
|
-
}
|
|
137
|
+
} //从xml文件获取动画导航
|
|
138
|
+
|
|
134
139
|
|
|
135
|
-
//从xml文件获取动画导航
|
|
136
140
|
fromXmlFile(xmlFile) {
|
|
137
141
|
return this._animationPath.fromXmlFile(xmlFile);
|
|
138
|
-
}
|
|
142
|
+
} //动画导航导出为xml文件
|
|
143
|
+
|
|
139
144
|
|
|
140
|
-
//动画导航导出为xml文件
|
|
141
145
|
asXmlFile(xmlFileName) {
|
|
142
146
|
this._animationPath.asXmlFile(xmlFileName);
|
|
143
|
-
}
|
|
147
|
+
} //销毁
|
|
148
|
+
|
|
144
149
|
|
|
145
|
-
//销毁
|
|
146
150
|
destroy() {
|
|
147
151
|
this._animationPath = null;
|
|
148
152
|
}
|
|
153
|
+
|
|
149
154
|
}
|
|
150
155
|
|
|
151
156
|
/***/ }),
|
|
@@ -164,27 +169,6 @@ module.exports = require("@kq_npm/client_icons_vue");
|
|
|
164
169
|
|
|
165
170
|
/***/ }),
|
|
166
171
|
|
|
167
|
-
/***/ 2118:
|
|
168
|
-
/***/ (function(module) {
|
|
169
|
-
|
|
170
|
-
module.exports = require("core-js/modules/es.array.push.js");
|
|
171
|
-
|
|
172
|
-
/***/ }),
|
|
173
|
-
|
|
174
|
-
/***/ 8470:
|
|
175
|
-
/***/ (function(module) {
|
|
176
|
-
|
|
177
|
-
module.exports = require("core-js/modules/esnext.iterator.constructor.js");
|
|
178
|
-
|
|
179
|
-
/***/ }),
|
|
180
|
-
|
|
181
|
-
/***/ 1058:
|
|
182
|
-
/***/ (function(module) {
|
|
183
|
-
|
|
184
|
-
module.exports = require("core-js/modules/esnext.iterator.for-each.js");
|
|
185
|
-
|
|
186
|
-
/***/ }),
|
|
187
|
-
|
|
188
172
|
/***/ 9389:
|
|
189
173
|
/***/ (function(module) {
|
|
190
174
|
|
|
@@ -227,59 +211,27 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__1895__;
|
|
|
227
211
|
|
|
228
212
|
/***/ }),
|
|
229
213
|
|
|
230
|
-
/***/
|
|
214
|
+
/***/ 8270:
|
|
231
215
|
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
232
216
|
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
|
|
247
|
-
}, _typeof(o);
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
;// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/toPrimitive.js
|
|
251
|
-
|
|
252
|
-
function toPrimitive(t, r) {
|
|
253
|
-
if ("object" != _typeof(t) || !t) return t;
|
|
254
|
-
var e = t[Symbol.toPrimitive];
|
|
255
|
-
if (void 0 !== e) {
|
|
256
|
-
var i = e.call(t, r || "default");
|
|
257
|
-
if ("object" != _typeof(i)) return i;
|
|
258
|
-
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
217
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
218
|
+
/* harmony export */ "Z": function() { return /* binding */ _defineProperty; }
|
|
219
|
+
/* harmony export */ });
|
|
220
|
+
function _defineProperty(obj, key, value) {
|
|
221
|
+
if (key in obj) {
|
|
222
|
+
Object.defineProperty(obj, key, {
|
|
223
|
+
value: value,
|
|
224
|
+
enumerable: true,
|
|
225
|
+
configurable: true,
|
|
226
|
+
writable: true
|
|
227
|
+
});
|
|
228
|
+
} else {
|
|
229
|
+
obj[key] = value;
|
|
259
230
|
}
|
|
260
|
-
return ("string" === r ? String : Number)(t);
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
;// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/toPropertyKey.js
|
|
264
231
|
|
|
265
|
-
|
|
266
|
-
function toPropertyKey(t) {
|
|
267
|
-
var i = toPrimitive(t, "string");
|
|
268
|
-
return "symbol" == _typeof(i) ? i : i + "";
|
|
232
|
+
return obj;
|
|
269
233
|
}
|
|
270
234
|
|
|
271
|
-
;// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js
|
|
272
|
-
|
|
273
|
-
function _defineProperty(e, r, t) {
|
|
274
|
-
return (r = toPropertyKey(r)) in e ? Object.defineProperty(e, r, {
|
|
275
|
-
value: t,
|
|
276
|
-
enumerable: !0,
|
|
277
|
-
configurable: !0,
|
|
278
|
-
writable: !0
|
|
279
|
-
}) : e[r] = t, e;
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
|
|
283
235
|
/***/ })
|
|
284
236
|
|
|
285
237
|
/******/ });
|
|
@@ -362,12 +314,6 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
362
314
|
"default": function() { return /* reexport */ Flight; }
|
|
363
315
|
});
|
|
364
316
|
|
|
365
|
-
// EXTERNAL MODULE: external "core-js/modules/es.array.push.js"
|
|
366
|
-
var es_array_push_js_ = __webpack_require__(2118);
|
|
367
|
-
// EXTERNAL MODULE: external "core-js/modules/esnext.iterator.constructor.js"
|
|
368
|
-
var esnext_iterator_constructor_js_ = __webpack_require__(8470);
|
|
369
|
-
// EXTERNAL MODULE: external "core-js/modules/esnext.iterator.for-each.js"
|
|
370
|
-
var esnext_iterator_for_each_js_ = __webpack_require__(1058);
|
|
371
317
|
// EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
372
318
|
var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(1895);
|
|
373
319
|
// EXTERNAL MODULE: ./src/common/_ui/message/index.js
|
|
@@ -384,10 +330,7 @@ var FlightViewModel = __webpack_require__(5372);
|
|
|
384
330
|
var util_ = __webpack_require__(3458);
|
|
385
331
|
// EXTERNAL MODULE: external "vue-i18n/dist/vue-i18n.cjs.js"
|
|
386
332
|
var vue_i18n_cjs_js_ = __webpack_require__(7080);
|
|
387
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/flight/Flight.vue?vue&type=script&setup=true&lang=js
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
333
|
+
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/webgl/flight/Flight.vue?vue&type=script&setup=true&lang=js
|
|
391
334
|
|
|
392
335
|
const _hoisted_1 = {
|
|
393
336
|
class: "kq-flight3d-box"
|
|
@@ -448,6 +391,7 @@ const __default__ = {
|
|
|
448
391
|
deleteFlightPath: {
|
|
449
392
|
type: Function
|
|
450
393
|
},
|
|
394
|
+
|
|
451
395
|
/**
|
|
452
396
|
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
453
397
|
*/
|
|
@@ -477,6 +421,7 @@ const __default__ = {
|
|
|
477
421
|
default: true
|
|
478
422
|
}
|
|
479
423
|
},
|
|
424
|
+
|
|
480
425
|
setup(__props, {
|
|
481
426
|
expose: __expose
|
|
482
427
|
}) {
|
|
@@ -496,25 +441,22 @@ const __default__ = {
|
|
|
496
441
|
let viewer = null;
|
|
497
442
|
let pathPlayIndex = -1;
|
|
498
443
|
let dropDownPath = null;
|
|
499
|
-
let viewModel = null;
|
|
444
|
+
let viewModel = null; // 表格头样式
|
|
500
445
|
|
|
501
|
-
// 表格头样式
|
|
502
446
|
let headClass = args => {
|
|
503
447
|
return {
|
|
504
448
|
"background-color": "var(--kq-fill-color-light)",
|
|
505
449
|
color: "var(--kq-color-info)",
|
|
506
450
|
"font-size": "14px"
|
|
507
451
|
};
|
|
508
|
-
};
|
|
452
|
+
}; // 组件容器Ref
|
|
509
453
|
|
|
510
|
-
// 组件容器Ref
|
|
511
|
-
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
512
454
|
|
|
513
|
-
// 生成组件默认header
|
|
455
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
|
|
456
|
+
|
|
514
457
|
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
515
|
-
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
458
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(); // 国际化
|
|
516
459
|
|
|
517
|
-
// 国际化
|
|
518
460
|
let {
|
|
519
461
|
locale,
|
|
520
462
|
messages
|
|
@@ -545,9 +487,8 @@ const __default__ = {
|
|
|
545
487
|
pathList.forEach(path => {
|
|
546
488
|
path.isPlaying = false;
|
|
547
489
|
});
|
|
548
|
-
});
|
|
490
|
+
}); //加载外部数据
|
|
549
491
|
|
|
550
|
-
//加载外部数据
|
|
551
492
|
if (props.loadFlightPath) {
|
|
552
493
|
props.loadFlightPath(dataList => {
|
|
553
494
|
dataList = JSON.parse(JSON.stringify(dataList));
|
|
@@ -560,25 +501,24 @@ const __default__ = {
|
|
|
560
501
|
}
|
|
561
502
|
}
|
|
562
503
|
});
|
|
563
|
-
});
|
|
504
|
+
}); // 销毁
|
|
564
505
|
|
|
565
|
-
// 销毁
|
|
566
506
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onBeforeUnmount)(() => {
|
|
567
507
|
viewModel.stop();
|
|
568
508
|
document.removeEventListener("click", hideDropDownMenu);
|
|
569
509
|
});
|
|
570
|
-
|
|
571
510
|
/**
|
|
572
511
|
* @description 监听header生成
|
|
573
512
|
*/
|
|
513
|
+
|
|
574
514
|
const watchCreateHeaderTemp = () => {
|
|
575
515
|
if (props.showHeaderTemp) {
|
|
576
516
|
// 生成headerTemp
|
|
577
517
|
headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef, headerTempTitle);
|
|
578
518
|
}
|
|
579
|
-
};
|
|
519
|
+
}; //新建路径
|
|
520
|
+
|
|
580
521
|
|
|
581
|
-
//新建路径
|
|
582
522
|
function addPath() {
|
|
583
523
|
pathList.forEach(path => {
|
|
584
524
|
if (path.isPlaying) {
|
|
@@ -588,9 +528,9 @@ const __default__ = {
|
|
|
588
528
|
viewModel.clearKeyPoints();
|
|
589
529
|
isAdd.value = true;
|
|
590
530
|
pathPlayIndex = -1;
|
|
591
|
-
}
|
|
531
|
+
} //编辑路径
|
|
532
|
+
|
|
592
533
|
|
|
593
|
-
//编辑路径
|
|
594
534
|
function editPath() {
|
|
595
535
|
if (dropDownPath) {
|
|
596
536
|
addPath();
|
|
@@ -599,9 +539,9 @@ const __default__ = {
|
|
|
599
539
|
viewModel.fromXmlString(dropDownPath.xmlString);
|
|
600
540
|
convertAnimationPathKeys();
|
|
601
541
|
}
|
|
602
|
-
}
|
|
542
|
+
} //转换AnimationPath节点数据
|
|
543
|
+
|
|
603
544
|
|
|
604
|
-
//转换AnimationPath节点数据
|
|
605
545
|
function convertAnimationPathKeys() {
|
|
606
546
|
var keyPoints = viewModel.getAllKeyPoints();
|
|
607
547
|
keyPoints.forEach(key => {
|
|
@@ -615,61 +555,65 @@ const __default__ = {
|
|
|
615
555
|
};
|
|
616
556
|
tableData.push(data);
|
|
617
557
|
});
|
|
618
|
-
}
|
|
558
|
+
} //删除路径
|
|
559
|
+
|
|
619
560
|
|
|
620
|
-
//删除路径
|
|
621
561
|
function deletePath() {
|
|
622
562
|
if (dropDownPath) {
|
|
623
563
|
if (dropDownPath.index === pathPlayIndex) {
|
|
624
564
|
pathPlayIndex = -1;
|
|
625
565
|
}
|
|
626
|
-
|
|
627
|
-
// 外部删除数据
|
|
566
|
+
|
|
567
|
+
pathList.splice(dropDownPath.index, 1); // 外部删除数据
|
|
568
|
+
|
|
628
569
|
if (props.deleteFlightPath) {
|
|
629
570
|
props.deleteFlightPath(dropDownPath.guid);
|
|
630
571
|
}
|
|
631
572
|
}
|
|
632
|
-
}
|
|
573
|
+
} //路径播放
|
|
574
|
+
|
|
633
575
|
|
|
634
|
-
//路径播放
|
|
635
576
|
function play(item, index) {
|
|
636
577
|
if (index !== pathPlayIndex) {
|
|
637
578
|
viewModel.fromXmlString(item.xmlString);
|
|
638
579
|
pathPlayIndex = index;
|
|
639
580
|
}
|
|
581
|
+
|
|
640
582
|
viewModel.play();
|
|
641
|
-
item.isPlaying = true;
|
|
642
|
-
|
|
583
|
+
item.isPlaying = true; // 设置循环播放
|
|
584
|
+
|
|
643
585
|
viewModel.setAutoRepeat(item.isRepeat);
|
|
644
|
-
}
|
|
586
|
+
} //路径播放暂停
|
|
587
|
+
|
|
645
588
|
|
|
646
|
-
//路径播放暂停
|
|
647
589
|
function pause(item) {
|
|
648
590
|
item.isPlaying = false;
|
|
649
591
|
viewModel.pause();
|
|
650
|
-
}
|
|
592
|
+
} //路径播放停止
|
|
593
|
+
|
|
651
594
|
|
|
652
|
-
//路径播放停止
|
|
653
595
|
function stop(item) {
|
|
654
596
|
item.isPlaying = false;
|
|
655
597
|
viewModel.stop();
|
|
656
|
-
}
|
|
598
|
+
} //循环播放
|
|
599
|
+
|
|
657
600
|
|
|
658
|
-
//循环播放
|
|
659
601
|
function repeat(item) {
|
|
660
602
|
item.isRepeat = !item.isRepeat;
|
|
603
|
+
|
|
661
604
|
if (item.isPlaying) {
|
|
662
605
|
viewModel.setAutoRepeat(item.isRepeat);
|
|
663
606
|
}
|
|
664
|
-
}
|
|
607
|
+
} //显示更多功能菜单
|
|
608
|
+
|
|
665
609
|
|
|
666
|
-
//显示更多功能菜单
|
|
667
610
|
function showDropDownMenu(item, index) {
|
|
668
611
|
if (showMoreMenu.value === true && index === dropDownPath.index) {
|
|
669
612
|
showMoreMenu.value = false;
|
|
670
613
|
document.addEventListener("click", hideDropDownMenu);
|
|
671
614
|
return;
|
|
672
615
|
}
|
|
616
|
+
|
|
673
617
|
showMoreMenu.value = true;
|
|
674
618
|
let _menuDropdown = dropDownMenu.value.$el;
|
|
675
619
|
_menuDropdown.style.left = window.event.clientX - 70 + "px";
|
|
@@ -679,20 +623,21 @@ const __default__ = {
|
|
|
679
623
|
...item
|
|
680
624
|
};
|
|
681
625
|
document.addEventListener("click", hideDropDownMenu);
|
|
682
|
-
}
|
|
626
|
+
} //隐藏更多功能菜单
|
|
627
|
+
|
|
683
628
|
|
|
684
|
-
//隐藏更多功能菜单
|
|
685
629
|
function hideDropDownMenu() {
|
|
686
630
|
if (dropDownMenu.value) {
|
|
687
631
|
// 去除选中样式
|
|
688
632
|
let selectElement = dropDownMenu.value.$el.querySelector(".is-active");
|
|
689
633
|
if (selectElement) selectElement.classList.remove("is-active");
|
|
690
634
|
}
|
|
635
|
+
|
|
691
636
|
document.removeEventListener("click", hideDropDownMenu);
|
|
692
637
|
showMoreMenu.value = false;
|
|
693
|
-
}
|
|
638
|
+
} //添加关键帧
|
|
639
|
+
|
|
694
640
|
|
|
695
|
-
//添加关键帧
|
|
696
641
|
function addKey() {
|
|
697
642
|
var duration = 5;
|
|
698
643
|
var lonlat = viewer.getCurrentView();
|
|
@@ -705,9 +650,9 @@ const __default__ = {
|
|
|
705
650
|
};
|
|
706
651
|
tableData.push(data);
|
|
707
652
|
viewModel.addKeyPointByCurrentView(duration);
|
|
708
|
-
}
|
|
653
|
+
} //替换关键帧
|
|
654
|
+
|
|
709
655
|
|
|
710
|
-
//替换关键帧
|
|
711
656
|
function replaceKey(index, row) {
|
|
712
657
|
var lonlat = viewer.getCurrentView();
|
|
713
658
|
var positionArr = [lonlat.longitude.toFixed(4) * 1, lonlat.latitude.toFixed(4) * 1, lonlat.height.toFixed(2) * 1];
|
|
@@ -715,41 +660,43 @@ const __default__ = {
|
|
|
715
660
|
row.position = position;
|
|
716
661
|
row.positionArr = positionArr;
|
|
717
662
|
viewModel.modifyKeyPointByCurrentView(index, row.interval);
|
|
718
|
-
}
|
|
663
|
+
} //删除关键帧
|
|
664
|
+
|
|
719
665
|
|
|
720
|
-
//删除关键帧
|
|
721
666
|
function deleteKey(index) {
|
|
722
667
|
viewModel.deleteKeyPoint(index);
|
|
723
668
|
tableData.splice(index, 1);
|
|
724
|
-
}
|
|
669
|
+
} //预播放
|
|
670
|
+
|
|
725
671
|
|
|
726
|
-
//预播放
|
|
727
672
|
function prePlay() {
|
|
728
673
|
for (let index = 0; index < tableData.length; index++) {
|
|
729
674
|
var duration = tableData[index].interval;
|
|
730
675
|
var key = viewModel.getKeyPoint(index);
|
|
731
676
|
var dur = viewModel.getKeyPointDur(index);
|
|
677
|
+
|
|
732
678
|
if (dur !== duration) {
|
|
733
679
|
viewModel.modifyKeyPoint(index, key.position, key.orientation, duration);
|
|
734
680
|
}
|
|
735
681
|
}
|
|
682
|
+
|
|
736
683
|
isPrePlaying.value = true;
|
|
737
684
|
viewModel.play();
|
|
738
|
-
}
|
|
685
|
+
} //预播放暂停
|
|
686
|
+
|
|
739
687
|
|
|
740
|
-
//预播放暂停
|
|
741
688
|
function prePause() {
|
|
742
689
|
isPrePlaying.value = false;
|
|
743
690
|
viewModel.pause();
|
|
744
|
-
}
|
|
691
|
+
} //预播放停止
|
|
692
|
+
|
|
745
693
|
|
|
746
|
-
//预播放停止
|
|
747
694
|
function preStop() {
|
|
748
695
|
isPrePlaying.value = false;
|
|
749
696
|
viewModel.stop();
|
|
750
|
-
}
|
|
697
|
+
} //保存
|
|
698
|
+
|
|
751
699
|
|
|
752
|
-
//保存
|
|
753
700
|
function save() {
|
|
754
701
|
if (pathName.value === "") {
|
|
755
702
|
(0,message/* default */.Z)({
|
|
@@ -761,18 +708,21 @@ const __default__ = {
|
|
|
761
708
|
var duration = tableData[index].interval;
|
|
762
709
|
var key = viewModel.getKeyPoint(index);
|
|
763
710
|
var dur = viewModel.getKeyPointDur(index);
|
|
711
|
+
|
|
764
712
|
if (dur !== duration) {
|
|
765
713
|
viewModel.modifyKeyPoint(index, key.position, key.orientation, duration);
|
|
766
714
|
}
|
|
767
715
|
}
|
|
716
|
+
|
|
768
717
|
var xmlString = viewModel.asXmlString();
|
|
718
|
+
|
|
769
719
|
if (isEdit.value) {
|
|
770
720
|
//编辑路径
|
|
771
721
|
if (dropDownPath) {
|
|
772
722
|
var editPath = pathList[dropDownPath.index];
|
|
773
723
|
editPath.name = pathName.value;
|
|
774
|
-
editPath.xmlString = xmlString;
|
|
775
|
-
|
|
724
|
+
editPath.xmlString = xmlString; // 外部保存数据
|
|
725
|
+
|
|
776
726
|
if (props.saveFlightPath) {
|
|
777
727
|
props.saveFlightPath({
|
|
778
728
|
guid: editPath.guid,
|
|
@@ -789,8 +739,8 @@ const __default__ = {
|
|
|
789
739
|
xmlString: xmlString,
|
|
790
740
|
isPlaying: false
|
|
791
741
|
};
|
|
792
|
-
pathList.push(path);
|
|
793
|
-
|
|
742
|
+
pathList.push(path); // 外部保存数据
|
|
743
|
+
|
|
794
744
|
if (props.saveFlightPath) {
|
|
795
745
|
props.saveFlightPath({
|
|
796
746
|
guid: path.guid,
|
|
@@ -799,11 +749,12 @@ const __default__ = {
|
|
|
799
749
|
});
|
|
800
750
|
}
|
|
801
751
|
}
|
|
752
|
+
|
|
802
753
|
cancel();
|
|
803
754
|
}
|
|
804
|
-
}
|
|
755
|
+
} //取消
|
|
756
|
+
|
|
805
757
|
|
|
806
|
-
//取消
|
|
807
758
|
function cancel() {
|
|
808
759
|
preStop();
|
|
809
760
|
viewModel.clearKeyPoints();
|
|
@@ -811,9 +762,9 @@ const __default__ = {
|
|
|
811
762
|
isAdd.value = false;
|
|
812
763
|
pathName.value = "";
|
|
813
764
|
isEdit.value = false;
|
|
814
|
-
}
|
|
765
|
+
} //导入文件
|
|
766
|
+
|
|
815
767
|
|
|
816
|
-
//导入文件
|
|
817
768
|
function importFile(file) {
|
|
818
769
|
var name = file.name.split(".")[0];
|
|
819
770
|
viewModel.fromXmlFile(file.raw).then(() => {
|
|
@@ -824,9 +775,8 @@ const __default__ = {
|
|
|
824
775
|
xmlString: xmlString,
|
|
825
776
|
isPlaying: false
|
|
826
777
|
};
|
|
827
|
-
pathList.push(path);
|
|
778
|
+
pathList.push(path); // 外部保存数据
|
|
828
779
|
|
|
829
|
-
// 外部保存数据
|
|
830
780
|
if (props.saveFlightPath) {
|
|
831
781
|
props.saveFlightPath({
|
|
832
782
|
guid: path.guid,
|
|
@@ -835,15 +785,16 @@ const __default__ = {
|
|
|
835
785
|
});
|
|
836
786
|
}
|
|
837
787
|
});
|
|
838
|
-
}
|
|
788
|
+
} //导出文件
|
|
789
|
+
|
|
839
790
|
|
|
840
|
-
//导出文件
|
|
841
791
|
function exportFile() {
|
|
842
792
|
if (dropDownPath) {
|
|
843
793
|
viewModel.fromXmlString(dropDownPath.xmlString);
|
|
844
794
|
viewModel.asXmlFile(dropDownPath.name);
|
|
845
795
|
}
|
|
846
796
|
}
|
|
797
|
+
|
|
847
798
|
__expose({
|
|
848
799
|
convertAnimationPathKeys,
|
|
849
800
|
showDropDownMenu,
|
|
@@ -866,18 +817,30 @@ const __default__ = {
|
|
|
866
817
|
importFile,
|
|
867
818
|
exportFile
|
|
868
819
|
});
|
|
820
|
+
|
|
869
821
|
return (_ctx, _cache) => {
|
|
870
822
|
const _component_kq_icon = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-icon");
|
|
823
|
+
|
|
871
824
|
const _component_kq_button = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-button");
|
|
825
|
+
|
|
872
826
|
const _component_kq_upload = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-upload");
|
|
827
|
+
|
|
873
828
|
const _component_kq_menu_item = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-menu-item");
|
|
829
|
+
|
|
874
830
|
const _component_kq_menu = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-menu");
|
|
831
|
+
|
|
875
832
|
const _component_kq_input = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-input");
|
|
833
|
+
|
|
876
834
|
const _component_kq_form_item = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-form-item");
|
|
835
|
+
|
|
877
836
|
const _component_kq_table_column = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-table-column");
|
|
837
|
+
|
|
878
838
|
const _component_kq_input_number = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-input-number");
|
|
839
|
+
|
|
879
840
|
const _component_kq_table = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-table");
|
|
841
|
+
|
|
880
842
|
const _component_kq_divider = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-divider");
|
|
843
|
+
|
|
881
844
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
882
845
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq-flight3d", {
|
|
883
846
|
'kq-box-shadow': __props.showShadow
|
|
@@ -888,7 +851,9 @@ const __default__ = {
|
|
|
888
851
|
key: 0,
|
|
889
852
|
ref_key: "headerTempRef",
|
|
890
853
|
ref: headerTempRef
|
|
891
|
-
}, null, 512
|
|
854
|
+
}, null, 512
|
|
855
|
+
/* NEED_PATCH */
|
|
856
|
+
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [!(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isAdd) ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", _hoisted_2, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_3, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
892
857
|
onClick: addPath,
|
|
893
858
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).addPath
|
|
894
859
|
}, {
|
|
@@ -896,10 +861,16 @@ const __default__ = {
|
|
|
896
861
|
size: 24
|
|
897
862
|
}, {
|
|
898
863
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_.Plus))]),
|
|
899
|
-
_: 1
|
|
864
|
+
_: 1
|
|
865
|
+
/* STABLE */
|
|
866
|
+
|
|
900
867
|
})]),
|
|
901
|
-
_: 1
|
|
902
|
-
|
|
868
|
+
_: 1
|
|
869
|
+
/* STABLE */
|
|
870
|
+
|
|
871
|
+
}, 8
|
|
872
|
+
/* PROPS */
|
|
873
|
+
, ["title"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_upload, {
|
|
903
874
|
style: {
|
|
904
875
|
"margin-left": "4px"
|
|
905
876
|
},
|
|
@@ -915,12 +886,22 @@ const __default__ = {
|
|
|
915
886
|
size: 24
|
|
916
887
|
}, {
|
|
917
888
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(client_icons_vue_.IconUploadCloud))]),
|
|
918
|
-
_: 1
|
|
889
|
+
_: 1
|
|
890
|
+
/* STABLE */
|
|
891
|
+
|
|
919
892
|
})]),
|
|
920
|
-
_: 1
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
893
|
+
_: 1
|
|
894
|
+
/* STABLE */
|
|
895
|
+
|
|
896
|
+
}, 8
|
|
897
|
+
/* PROPS */
|
|
898
|
+
, ["title"])]),
|
|
899
|
+
_: 1
|
|
900
|
+
/* STABLE */
|
|
901
|
+
|
|
902
|
+
})]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_4, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).pathName), 1
|
|
903
|
+
/* TEXT */
|
|
904
|
+
), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_menu, {
|
|
924
905
|
class: "pathlist-ul"
|
|
925
906
|
}, {
|
|
926
907
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)(external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.Fragment, null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.renderList)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(pathList), (item, index) => {
|
|
@@ -928,7 +909,9 @@ const __default__ = {
|
|
|
928
909
|
index: index,
|
|
929
910
|
key: index
|
|
930
911
|
}, {
|
|
931
|
-
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)(item.name), 1
|
|
912
|
+
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)(item.name), 1
|
|
913
|
+
/* TEXT */
|
|
914
|
+
), item.isPlaying ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_icon, {
|
|
932
915
|
key: 0,
|
|
933
916
|
size: 16,
|
|
934
917
|
class: "menuIcon",
|
|
@@ -936,8 +919,12 @@ const __default__ = {
|
|
|
936
919
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).pause
|
|
937
920
|
}, {
|
|
938
921
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(client_icons_vue_.IconVideoPause))]),
|
|
939
|
-
_: 2
|
|
940
|
-
|
|
922
|
+
_: 2
|
|
923
|
+
/* DYNAMIC */
|
|
924
|
+
|
|
925
|
+
}, 1032
|
|
926
|
+
/* PROPS, DYNAMIC_SLOTS */
|
|
927
|
+
, ["onClick", "title"])) : ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_icon, {
|
|
941
928
|
key: 1,
|
|
942
929
|
size: 16,
|
|
943
930
|
class: "menuIcon",
|
|
@@ -945,36 +932,60 @@ const __default__ = {
|
|
|
945
932
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).play
|
|
946
933
|
}, {
|
|
947
934
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(client_icons_vue_.IconVideoPlay))]),
|
|
948
|
-
_: 2
|
|
949
|
-
|
|
935
|
+
_: 2
|
|
936
|
+
/* DYNAMIC */
|
|
937
|
+
|
|
938
|
+
}, 1032
|
|
939
|
+
/* PROPS, DYNAMIC_SLOTS */
|
|
940
|
+
, ["onClick", "title"])), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, {
|
|
950
941
|
size: 16,
|
|
951
942
|
class: "menuIcon",
|
|
952
943
|
onClick: $event => stop(item),
|
|
953
944
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).stop
|
|
954
945
|
}, {
|
|
955
946
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(client_icons_vue_.IconVideoStop))]),
|
|
956
|
-
_: 2
|
|
957
|
-
|
|
947
|
+
_: 2
|
|
948
|
+
/* DYNAMIC */
|
|
949
|
+
|
|
950
|
+
}, 1032
|
|
951
|
+
/* PROPS, DYNAMIC_SLOTS */
|
|
952
|
+
, ["onClick", "title"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, {
|
|
958
953
|
size: 16,
|
|
959
954
|
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(item.isRepeat ? 'kq-icon-light' : ''),
|
|
960
955
|
onClick: $event => repeat(item),
|
|
961
956
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).repeat
|
|
962
957
|
}, {
|
|
963
958
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(client_icons_vue_.IconVideoRepeat))]),
|
|
964
|
-
_: 2
|
|
965
|
-
|
|
959
|
+
_: 2
|
|
960
|
+
/* DYNAMIC */
|
|
961
|
+
|
|
962
|
+
}, 1032
|
|
963
|
+
/* PROPS, DYNAMIC_SLOTS */
|
|
964
|
+
, ["class", "onClick", "title"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, {
|
|
966
965
|
size: 16,
|
|
967
966
|
class: "menuIcon",
|
|
968
967
|
onClick: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => showDropDownMenu(item, index), ["prevent", "stop"]),
|
|
969
968
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).more
|
|
970
969
|
}, {
|
|
971
970
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_.More))]),
|
|
972
|
-
_: 2
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
971
|
+
_: 2
|
|
972
|
+
/* DYNAMIC */
|
|
973
|
+
|
|
974
|
+
}, 1032
|
|
975
|
+
/* PROPS, DYNAMIC_SLOTS */
|
|
976
|
+
, ["onClick", "title"])]),
|
|
977
|
+
_: 2
|
|
978
|
+
/* DYNAMIC */
|
|
979
|
+
|
|
980
|
+
}, 1032
|
|
981
|
+
/* PROPS, DYNAMIC_SLOTS */
|
|
982
|
+
, ["index"]);
|
|
983
|
+
}), 128
|
|
984
|
+
/* KEYED_FRAGMENT */
|
|
985
|
+
))]),
|
|
986
|
+
_: 1
|
|
987
|
+
/* STABLE */
|
|
988
|
+
|
|
978
989
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", null, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_menu, {
|
|
979
990
|
class: "dropdown-ul",
|
|
980
991
|
ref_key: "dropDownMenu",
|
|
@@ -988,9 +999,15 @@ const __default__ = {
|
|
|
988
999
|
size: 16
|
|
989
1000
|
}, {
|
|
990
1001
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_.Edit))]),
|
|
991
|
-
_: 1
|
|
992
|
-
|
|
993
|
-
|
|
1002
|
+
_: 1
|
|
1003
|
+
/* STABLE */
|
|
1004
|
+
|
|
1005
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).edit), 1
|
|
1006
|
+
/* TEXT */
|
|
1007
|
+
)]),
|
|
1008
|
+
_: 1
|
|
1009
|
+
/* STABLE */
|
|
1010
|
+
|
|
994
1011
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_menu_item, {
|
|
995
1012
|
index: "2",
|
|
996
1013
|
onClick: exportFile
|
|
@@ -999,9 +1016,15 @@ const __default__ = {
|
|
|
999
1016
|
size: 14
|
|
1000
1017
|
}, {
|
|
1001
1018
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(client_icons_vue_.IconExport))]),
|
|
1002
|
-
_: 1
|
|
1003
|
-
|
|
1004
|
-
|
|
1019
|
+
_: 1
|
|
1020
|
+
/* STABLE */
|
|
1021
|
+
|
|
1022
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).export), 1
|
|
1023
|
+
/* TEXT */
|
|
1024
|
+
)]),
|
|
1025
|
+
_: 1
|
|
1026
|
+
/* STABLE */
|
|
1027
|
+
|
|
1005
1028
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_menu_item, {
|
|
1006
1029
|
index: "3",
|
|
1007
1030
|
onClick: deletePath
|
|
@@ -1010,12 +1033,24 @@ const __default__ = {
|
|
|
1010
1033
|
size: 16
|
|
1011
1034
|
}, {
|
|
1012
1035
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_.Delete))]),
|
|
1013
|
-
_: 1
|
|
1014
|
-
|
|
1015
|
-
|
|
1036
|
+
_: 1
|
|
1037
|
+
/* STABLE */
|
|
1038
|
+
|
|
1039
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).delete), 1
|
|
1040
|
+
/* TEXT */
|
|
1041
|
+
)]),
|
|
1042
|
+
_: 1
|
|
1043
|
+
/* STABLE */
|
|
1044
|
+
|
|
1016
1045
|
})]),
|
|
1017
|
-
_: 1
|
|
1018
|
-
|
|
1046
|
+
_: 1
|
|
1047
|
+
/* STABLE */
|
|
1048
|
+
|
|
1049
|
+
}, 512
|
|
1050
|
+
/* NEED_PATCH */
|
|
1051
|
+
)], 512
|
|
1052
|
+
/* NEED_PATCH */
|
|
1053
|
+
), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(showMoreMenu)]])])) : ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", _hoisted_5, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_6, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
1019
1054
|
text: "",
|
|
1020
1055
|
onClick: cancel
|
|
1021
1056
|
}, {
|
|
@@ -1023,10 +1058,18 @@ const __default__ = {
|
|
|
1023
1058
|
size: 16
|
|
1024
1059
|
}, {
|
|
1025
1060
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_.ArrowLeft))]),
|
|
1026
|
-
_: 1
|
|
1061
|
+
_: 1
|
|
1062
|
+
/* STABLE */
|
|
1063
|
+
|
|
1027
1064
|
})]),
|
|
1028
|
-
_: 1
|
|
1029
|
-
|
|
1065
|
+
_: 1
|
|
1066
|
+
/* STABLE */
|
|
1067
|
+
|
|
1068
|
+
}), !(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isEdit) ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("span", _hoisted_7, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).addPath), 1
|
|
1069
|
+
/* TEXT */
|
|
1070
|
+
)) : ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("span", _hoisted_8, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).editPath), 1
|
|
1071
|
+
/* TEXT */
|
|
1072
|
+
))]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form_item, {
|
|
1030
1073
|
class: "kq-flight3d-item-name",
|
|
1031
1074
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).pathName
|
|
1032
1075
|
}, {
|
|
@@ -1034,9 +1077,15 @@ const __default__ = {
|
|
|
1034
1077
|
placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).enterPathName,
|
|
1035
1078
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(pathName),
|
|
1036
1079
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(pathName) ? pathName.value = $event : pathName = $event)
|
|
1037
|
-
}, null, 8
|
|
1038
|
-
|
|
1039
|
-
|
|
1080
|
+
}, null, 8
|
|
1081
|
+
/* PROPS */
|
|
1082
|
+
, ["placeholder", "modelValue"])]),
|
|
1083
|
+
_: 1
|
|
1084
|
+
/* STABLE */
|
|
1085
|
+
|
|
1086
|
+
}, 8
|
|
1087
|
+
/* PROPS */
|
|
1088
|
+
, ["label"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_table, {
|
|
1040
1089
|
border: "",
|
|
1041
1090
|
data: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(tableData),
|
|
1042
1091
|
"header-cell-style": (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headClass)
|
|
@@ -1046,11 +1095,15 @@ const __default__ = {
|
|
|
1046
1095
|
width: "50",
|
|
1047
1096
|
type: "index",
|
|
1048
1097
|
align: "center"
|
|
1049
|
-
}, null, 8
|
|
1098
|
+
}, null, 8
|
|
1099
|
+
/* PROPS */
|
|
1100
|
+
, ["label"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_table_column, {
|
|
1050
1101
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).position,
|
|
1051
1102
|
prop: "position",
|
|
1052
1103
|
align: "center"
|
|
1053
|
-
}, null, 8
|
|
1104
|
+
}, null, 8
|
|
1105
|
+
/* PROPS */
|
|
1106
|
+
, ["label"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_table_column, {
|
|
1054
1107
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).interval,
|
|
1055
1108
|
width: "100",
|
|
1056
1109
|
align: "center"
|
|
@@ -1063,9 +1116,15 @@ const __default__ = {
|
|
|
1063
1116
|
style: {
|
|
1064
1117
|
"width": "83px"
|
|
1065
1118
|
}
|
|
1066
|
-
}, null, 8
|
|
1067
|
-
|
|
1068
|
-
|
|
1119
|
+
}, null, 8
|
|
1120
|
+
/* PROPS */
|
|
1121
|
+
, ["modelValue", "onUpdate:modelValue"])]),
|
|
1122
|
+
_: 1
|
|
1123
|
+
/* STABLE */
|
|
1124
|
+
|
|
1125
|
+
}, 8
|
|
1126
|
+
/* PROPS */
|
|
1127
|
+
, ["label"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_table_column, {
|
|
1069
1128
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).operation,
|
|
1070
1129
|
width: "90",
|
|
1071
1130
|
align: "center"
|
|
@@ -1078,10 +1137,16 @@ const __default__ = {
|
|
|
1078
1137
|
size: 16
|
|
1079
1138
|
}, {
|
|
1080
1139
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(client_icons_vue_.IconReplace))]),
|
|
1081
|
-
_: 1
|
|
1140
|
+
_: 1
|
|
1141
|
+
/* STABLE */
|
|
1142
|
+
|
|
1082
1143
|
})]),
|
|
1083
|
-
_: 2
|
|
1084
|
-
|
|
1144
|
+
_: 2
|
|
1145
|
+
/* DYNAMIC */
|
|
1146
|
+
|
|
1147
|
+
}, 1032
|
|
1148
|
+
/* PROPS, DYNAMIC_SLOTS */
|
|
1149
|
+
, ["onClick", "title"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
1085
1150
|
onClick: $event => deleteKey(scope.$index),
|
|
1086
1151
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).delete
|
|
1087
1152
|
}, {
|
|
@@ -1089,14 +1154,28 @@ const __default__ = {
|
|
|
1089
1154
|
size: 16
|
|
1090
1155
|
}, {
|
|
1091
1156
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_.Delete))]),
|
|
1092
|
-
_: 1
|
|
1157
|
+
_: 1
|
|
1158
|
+
/* STABLE */
|
|
1159
|
+
|
|
1093
1160
|
})]),
|
|
1094
|
-
_: 2
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1161
|
+
_: 2
|
|
1162
|
+
/* DYNAMIC */
|
|
1163
|
+
|
|
1164
|
+
}, 1032
|
|
1165
|
+
/* PROPS, DYNAMIC_SLOTS */
|
|
1166
|
+
, ["onClick", "title"])]),
|
|
1167
|
+
_: 1
|
|
1168
|
+
/* STABLE */
|
|
1169
|
+
|
|
1170
|
+
}, 8
|
|
1171
|
+
/* PROPS */
|
|
1172
|
+
, ["label"])]),
|
|
1173
|
+
_: 1
|
|
1174
|
+
/* STABLE */
|
|
1175
|
+
|
|
1176
|
+
}, 8
|
|
1177
|
+
/* PROPS */
|
|
1178
|
+
, ["data", "header-cell-style"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
1100
1179
|
class: "kq-flight3d-btn-add",
|
|
1101
1180
|
onClick: addKey
|
|
1102
1181
|
}, {
|
|
@@ -1104,9 +1183,15 @@ const __default__ = {
|
|
|
1104
1183
|
size: 16
|
|
1105
1184
|
}, {
|
|
1106
1185
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_.Plus))]),
|
|
1107
|
-
_: 1
|
|
1108
|
-
|
|
1109
|
-
|
|
1186
|
+
_: 1
|
|
1187
|
+
/* STABLE */
|
|
1188
|
+
|
|
1189
|
+
}), (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).addkeyframe), 1
|
|
1190
|
+
/* TEXT */
|
|
1191
|
+
)]),
|
|
1192
|
+
_: 1
|
|
1193
|
+
/* STABLE */
|
|
1194
|
+
|
|
1110
1195
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form_item, {
|
|
1111
1196
|
class: "kq-flight3d-ybf",
|
|
1112
1197
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).prePlay
|
|
@@ -1118,38 +1203,65 @@ const __default__ = {
|
|
|
1118
1203
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).play
|
|
1119
1204
|
}, {
|
|
1120
1205
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(client_icons_vue_.IconVideoPlay))]),
|
|
1121
|
-
_: 1
|
|
1122
|
-
|
|
1206
|
+
_: 1
|
|
1207
|
+
/* STABLE */
|
|
1208
|
+
|
|
1209
|
+
}, 8
|
|
1210
|
+
/* PROPS */
|
|
1211
|
+
, ["title"])) : ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_icon, {
|
|
1123
1212
|
key: 1,
|
|
1124
1213
|
size: 32,
|
|
1125
1214
|
onClick: prePause,
|
|
1126
1215
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).pause
|
|
1127
1216
|
}, {
|
|
1128
1217
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(client_icons_vue_.IconVideoPause))]),
|
|
1129
|
-
_: 1
|
|
1130
|
-
|
|
1218
|
+
_: 1
|
|
1219
|
+
/* STABLE */
|
|
1220
|
+
|
|
1221
|
+
}, 8
|
|
1222
|
+
/* PROPS */
|
|
1223
|
+
, ["title"])), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, {
|
|
1131
1224
|
size: 32,
|
|
1132
1225
|
onClick: preStop,
|
|
1133
1226
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).stop
|
|
1134
1227
|
}, {
|
|
1135
1228
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(client_icons_vue_.IconVideoStop))]),
|
|
1136
|
-
_: 1
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1229
|
+
_: 1
|
|
1230
|
+
/* STABLE */
|
|
1231
|
+
|
|
1232
|
+
}, 8
|
|
1233
|
+
/* PROPS */
|
|
1234
|
+
, ["title"])])]),
|
|
1235
|
+
_: 1
|
|
1236
|
+
/* STABLE */
|
|
1237
|
+
|
|
1238
|
+
}, 8
|
|
1239
|
+
/* PROPS */
|
|
1240
|
+
, ["label"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_divider), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_9, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
1140
1241
|
type: "primary",
|
|
1141
1242
|
onClick: save
|
|
1142
1243
|
}, {
|
|
1143
|
-
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).save), 1
|
|
1144
|
-
|
|
1244
|
+
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).save), 1
|
|
1245
|
+
/* TEXT */
|
|
1246
|
+
)]),
|
|
1247
|
+
_: 1
|
|
1248
|
+
/* STABLE */
|
|
1249
|
+
|
|
1145
1250
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
1146
1251
|
onClick: cancel
|
|
1147
1252
|
}, {
|
|
1148
|
-
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).cancel), 1
|
|
1149
|
-
|
|
1150
|
-
|
|
1253
|
+
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).cancel), 1
|
|
1254
|
+
/* TEXT */
|
|
1255
|
+
)]),
|
|
1256
|
+
_: 1
|
|
1257
|
+
/* STABLE */
|
|
1258
|
+
|
|
1259
|
+
})])]))])], 2
|
|
1260
|
+
/* CLASS */
|
|
1261
|
+
);
|
|
1151
1262
|
};
|
|
1152
1263
|
}
|
|
1264
|
+
|
|
1153
1265
|
}));
|
|
1154
1266
|
;// CONCATENATED MODULE: ./src/webgl/flight/Flight.vue?vue&type=script&setup=true&lang=js
|
|
1155
1267
|
|
|
@@ -1171,11 +1283,13 @@ var init_js_default = /*#__PURE__*/__webpack_require__.n(init_js_);
|
|
|
1171
1283
|
|
|
1172
1284
|
|
|
1173
1285
|
|
|
1286
|
+
|
|
1174
1287
|
Flight.install = (Vue, opts) => {
|
|
1175
1288
|
init_js_default()(Vue, opts);
|
|
1176
1289
|
Vue.component(Flight.name, Flight);
|
|
1177
1290
|
};
|
|
1178
1291
|
|
|
1292
|
+
|
|
1179
1293
|
}();
|
|
1180
1294
|
/******/ return __webpack_exports__;
|
|
1181
1295
|
/******/ })()
|