Commit 275e6bfd by licheng

feat: 卫星轨道与信息显示

parent 6665bfb8
...@@ -15,6 +15,7 @@ import topLevelAwait from 'vite-plugin-top-level-await' ...@@ -15,6 +15,7 @@ import topLevelAwait from 'vite-plugin-top-level-await'
import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite' import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite'
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons-ng' import { createSvgIconsPlugin } from 'vite-plugin-svg-icons-ng'
import UnoCSS from 'unocss/vite' import UnoCSS from 'unocss/vite'
import Cesium from 'vite-plugin-cesium'
export function createVitePlugins() { export function createVitePlugins() {
const root = process.cwd() const root = process.cwd()
...@@ -31,6 +32,7 @@ export function createVitePlugins() { ...@@ -31,6 +32,7 @@ export function createVitePlugins() {
progress(), progress(),
PurgeIcons(), PurgeIcons(),
ElementPlus({}), ElementPlus({}),
Cesium(),
AutoImport({ AutoImport({
include: [ include: [
/\.[tj]sx?$/, // .ts, .tsx, .js, .jsx /\.[tj]sx?$/, // .ts, .tsx, .js, .jsx
......
...@@ -40,6 +40,7 @@ ...@@ -40,6 +40,7 @@
"benz-amr-recorder": "^1.1.5", "benz-amr-recorder": "^1.1.5",
"bpmn-js-token-simulation": "^0.36.0", "bpmn-js-token-simulation": "^0.36.0",
"camunda-bpmn-moddle": "^7.0.1", "camunda-bpmn-moddle": "^7.0.1",
"cesium": "^1.132.0",
"cropperjs": "^1.6.1", "cropperjs": "^1.6.1",
"crypto-js": "^4.2.0", "crypto-js": "^4.2.0",
"dayjs": "^1.11.10", "dayjs": "^1.11.10",
...@@ -64,11 +65,13 @@ ...@@ -64,11 +65,13 @@
"pinia-plugin-persistedstate": "^3.2.1", "pinia-plugin-persistedstate": "^3.2.1",
"qrcode": "^1.5.3", "qrcode": "^1.5.3",
"qs": "^6.12.0", "qs": "^6.12.0",
"satellite.js": "^6.0.1",
"sortablejs": "^1.15.3", "sortablejs": "^1.15.3",
"steady-xml": "^0.1.0", "steady-xml": "^0.1.0",
"url": "^0.11.3", "url": "^0.11.3",
"v3-jsoneditor": "^0.0.6", "v3-jsoneditor": "^0.0.6",
"video.js": "^7.21.5", "video.js": "^7.21.5",
"vite-plugin-cesium": "^1.2.23",
"vue": "3.5.12", "vue": "3.5.12",
"vue-dompurify-html": "^4.1.4", "vue-dompurify-html": "^4.1.4",
"vue-i18n": "9.10.2", "vue-i18n": "9.10.2",
......
...@@ -68,7 +68,7 @@ const remainingRouter: AppRouteRecordRaw[] = [ ...@@ -68,7 +68,7 @@ const remainingRouter: AppRouteRecordRaw[] = [
children: [ children: [
{ {
path: 'index', path: 'index',
component: () => import('@/views/Home/Index.vue'), component: () => import('@/views/Home/Index2.vue'),
name: 'Index', name: 'Index',
meta: { meta: {
title: t('router.home'), title: t('router.home'),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment