重新初始化提交
1
.env.production
Normal file
@ -0,0 +1 @@
|
|||||||
|
VUE_APP_API_BASE_URL=http://127.0.0.1:38090
|
||||||
44
.gitignore
vendored
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
<<<<<<< HEAD
|
||||||
|
# ---> Vue
|
||||||
|
# gitignore template for Vue.js projects
|
||||||
|
#
|
||||||
|
# Recommended template: Node.gitignore
|
||||||
|
|
||||||
|
# TODO: where does this rule come from?
|
||||||
|
docs/_book
|
||||||
|
|
||||||
|
# TODO: where does this rule come from?
|
||||||
|
test/
|
||||||
|
|
||||||
|
=======
|
||||||
|
# Logs
|
||||||
|
logs
|
||||||
|
*.log
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
pnpm-debug.log*
|
||||||
|
lerna-debug.log*
|
||||||
|
|
||||||
|
node_modules
|
||||||
|
.DS_Store
|
||||||
|
dist
|
||||||
|
dist-ssr
|
||||||
|
coverage
|
||||||
|
*.local
|
||||||
|
|
||||||
|
/cypress/videos/
|
||||||
|
/cypress/screenshots/
|
||||||
|
|
||||||
|
# Editor directories and files
|
||||||
|
.vscode/*
|
||||||
|
!.vscode/extensions.json
|
||||||
|
.idea
|
||||||
|
*.suo
|
||||||
|
*.ntvs*
|
||||||
|
*.njsproj
|
||||||
|
*.sln
|
||||||
|
*.sw?
|
||||||
|
|
||||||
|
*.tsbuildinfo
|
||||||
|
>>>>>>> cdbb40b (初始化提交:项目基础框架)
|
||||||
3
.vscode/extensions.json
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"recommendations": ["Vue.volar"]
|
||||||
|
}
|
||||||
35
README.md
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
<<<<<<< HEAD
|
||||||
|
# StationVR
|
||||||
|
|
||||||
|
神池南项目变电所VR
|
||||||
|
=======
|
||||||
|
# soms-vue
|
||||||
|
|
||||||
|
This template should help get you started developing with Vue 3 in Vite.
|
||||||
|
|
||||||
|
## Recommended IDE Setup
|
||||||
|
|
||||||
|
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).
|
||||||
|
|
||||||
|
## Customize configuration
|
||||||
|
|
||||||
|
See [Vite Configuration Reference](https://vitejs.dev/config/).
|
||||||
|
|
||||||
|
## Project Setup
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npm install
|
||||||
|
```
|
||||||
|
|
||||||
|
### Compile and Hot-Reload for Development
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npm run dev
|
||||||
|
```
|
||||||
|
|
||||||
|
### Compile and Minify for Production
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npm run build
|
||||||
|
```
|
||||||
|
>>>>>>> cdbb40b (初始化提交:项目基础框架)
|
||||||
1
StationVR
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 8139722aae87a37280c68db063e44d941bdf060e
|
||||||
13
index.html
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<link rel="icon" href="/favicon.ico" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>神池南变电站</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="app" style="padding: 0px"></div>
|
||||||
|
<script type="module" src="/src/main.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
10
jsconfig.json
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"paths": {
|
||||||
|
"@/*": ["./src/*"]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"exclude": ["node_modules", "dist"],
|
||||||
|
"noUnusedLocals": false,
|
||||||
|
"noUnusedParameters": false
|
||||||
|
}
|
||||||
8195
package-lock.json
generated
Normal file
30
package.json
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{
|
||||||
|
"name": "soms-vue",
|
||||||
|
"version": "0.0.0",
|
||||||
|
"private": true,
|
||||||
|
"type": "module",
|
||||||
|
"scripts": {
|
||||||
|
"dev": "vite",
|
||||||
|
"build": "vite build",
|
||||||
|
"preview": "vite preview"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@babylonjs/core": "^7.15.2",
|
||||||
|
"@babylonjs/gui": "^7.15.2",
|
||||||
|
"@babylonjs/inspector": "^7.15.2",
|
||||||
|
"axios": "^1.7.7",
|
||||||
|
"babylonjs": "^7.15.2",
|
||||||
|
"echarts": "^5.5.1",
|
||||||
|
"socket.io-client": "^4.8.1",
|
||||||
|
"svg-sprite-loader": "^6.0.11",
|
||||||
|
"vite": "^5.3.4",
|
||||||
|
"vue": "^3.4.29",
|
||||||
|
"vue-router": "^4.3.3"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@arco-design/web-vue": "^2.55.3",
|
||||||
|
"@vitejs/plugin-vue": "^5.0.5",
|
||||||
|
"@vitejs/plugin-vue-jsx": "^4.0.0",
|
||||||
|
"vite": "^5.3.1"
|
||||||
|
}
|
||||||
|
}
|
||||||
3
public/config.json
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"API_BASE_URL": "http://127.0.0.1:38090"
|
||||||
|
}
|
||||||
BIN
public/favicon.ico
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
17
src/App.vue
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<script setup>
|
||||||
|
import { RouterView } from 'vue-router'
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<RouterView />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
html,
|
||||||
|
body {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
BIN
src/SysAttachment/images/1.jpg
Normal file
|
After Width: | Height: | Size: 7.3 MiB |
BIN
src/SysAttachment/images/10.jpg
Normal file
|
After Width: | Height: | Size: 7.6 MiB |
BIN
src/SysAttachment/images/11.jpg
Normal file
|
After Width: | Height: | Size: 6.8 MiB |
BIN
src/SysAttachment/images/12.jpg
Normal file
|
After Width: | Height: | Size: 6.4 MiB |
BIN
src/SysAttachment/images/13.jpg
Normal file
|
After Width: | Height: | Size: 6.6 MiB |
BIN
src/SysAttachment/images/14.jpg
Normal file
|
After Width: | Height: | Size: 7.9 MiB |
BIN
src/SysAttachment/images/15.jpg
Normal file
|
After Width: | Height: | Size: 5.1 MiB |
BIN
src/SysAttachment/images/16.jpg
Normal file
|
After Width: | Height: | Size: 4.5 MiB |
BIN
src/SysAttachment/images/17.jpg
Normal file
|
After Width: | Height: | Size: 4.6 MiB |
BIN
src/SysAttachment/images/18.jpg
Normal file
|
After Width: | Height: | Size: 4.2 MiB |
BIN
src/SysAttachment/images/19.jpg
Normal file
|
After Width: | Height: | Size: 4.5 MiB |
BIN
src/SysAttachment/images/2.jpg
Normal file
|
After Width: | Height: | Size: 6.8 MiB |
BIN
src/SysAttachment/images/20.jpg
Normal file
|
After Width: | Height: | Size: 4.8 MiB |
BIN
src/SysAttachment/images/21.jpg
Normal file
|
After Width: | Height: | Size: 4.7 MiB |
BIN
src/SysAttachment/images/22.jpg
Normal file
|
After Width: | Height: | Size: 4.6 MiB |
BIN
src/SysAttachment/images/23.jpg
Normal file
|
After Width: | Height: | Size: 5.1 MiB |
BIN
src/SysAttachment/images/24.jpg
Normal file
|
After Width: | Height: | Size: 3.5 MiB |
BIN
src/SysAttachment/images/25.jpg
Normal file
|
After Width: | Height: | Size: 3.9 MiB |
BIN
src/SysAttachment/images/26.jpg
Normal file
|
After Width: | Height: | Size: 4.0 MiB |
BIN
src/SysAttachment/images/27.jpg
Normal file
|
After Width: | Height: | Size: 4.3 MiB |
BIN
src/SysAttachment/images/28.jpg
Normal file
|
After Width: | Height: | Size: 5.8 MiB |
BIN
src/SysAttachment/images/29.jpg
Normal file
|
After Width: | Height: | Size: 5.8 MiB |
BIN
src/SysAttachment/images/3.jpg
Normal file
|
After Width: | Height: | Size: 6.3 MiB |
BIN
src/SysAttachment/images/30.jpg
Normal file
|
After Width: | Height: | Size: 6.1 MiB |
BIN
src/SysAttachment/images/31.jpg
Normal file
|
After Width: | Height: | Size: 5.0 MiB |
BIN
src/SysAttachment/images/32.jpg
Normal file
|
After Width: | Height: | Size: 5.5 MiB |
BIN
src/SysAttachment/images/33.jpg
Normal file
|
After Width: | Height: | Size: 5.3 MiB |
BIN
src/SysAttachment/images/34.jpg
Normal file
|
After Width: | Height: | Size: 4.7 MiB |
BIN
src/SysAttachment/images/35.jpg
Normal file
|
After Width: | Height: | Size: 5.5 MiB |
BIN
src/SysAttachment/images/36.jpg
Normal file
|
After Width: | Height: | Size: 6.8 MiB |
BIN
src/SysAttachment/images/37.jpg
Normal file
|
After Width: | Height: | Size: 6.7 MiB |
BIN
src/SysAttachment/images/38.jpg
Normal file
|
After Width: | Height: | Size: 6.6 MiB |
BIN
src/SysAttachment/images/39.jpg
Normal file
|
After Width: | Height: | Size: 6.0 MiB |
BIN
src/SysAttachment/images/4.jpg
Normal file
|
After Width: | Height: | Size: 7.7 MiB |
BIN
src/SysAttachment/images/40.jpg
Normal file
|
After Width: | Height: | Size: 6.6 MiB |
BIN
src/SysAttachment/images/41.jpg
Normal file
|
After Width: | Height: | Size: 6.9 MiB |
BIN
src/SysAttachment/images/42.jpg
Normal file
|
After Width: | Height: | Size: 6.5 MiB |
BIN
src/SysAttachment/images/43.jpg
Normal file
|
After Width: | Height: | Size: 6.0 MiB |
BIN
src/SysAttachment/images/44.jpg
Normal file
|
After Width: | Height: | Size: 4.5 MiB |
BIN
src/SysAttachment/images/45.jpg
Normal file
|
After Width: | Height: | Size: 6.4 MiB |
BIN
src/SysAttachment/images/46.jpg
Normal file
|
After Width: | Height: | Size: 5.6 MiB |
BIN
src/SysAttachment/images/47.jpg
Normal file
|
After Width: | Height: | Size: 6.3 MiB |
BIN
src/SysAttachment/images/48.jpg
Normal file
|
After Width: | Height: | Size: 3.8 MiB |
BIN
src/SysAttachment/images/49.jpg
Normal file
|
After Width: | Height: | Size: 5.8 MiB |
BIN
src/SysAttachment/images/5.jpg
Normal file
|
After Width: | Height: | Size: 6.2 MiB |
BIN
src/SysAttachment/images/50.jpg
Normal file
|
After Width: | Height: | Size: 5.3 MiB |
BIN
src/SysAttachment/images/51.jpg
Normal file
|
After Width: | Height: | Size: 7.6 MiB |
BIN
src/SysAttachment/images/52.jpg
Normal file
|
After Width: | Height: | Size: 4.5 MiB |
BIN
src/SysAttachment/images/53.jpg
Normal file
|
After Width: | Height: | Size: 4.1 MiB |
BIN
src/SysAttachment/images/54.jpg
Normal file
|
After Width: | Height: | Size: 3.9 MiB |
BIN
src/SysAttachment/images/55.jpg
Normal file
|
After Width: | Height: | Size: 4.3 MiB |
BIN
src/SysAttachment/images/56.jpg
Normal file
|
After Width: | Height: | Size: 4.6 MiB |
BIN
src/SysAttachment/images/57.jpg
Normal file
|
After Width: | Height: | Size: 4.4 MiB |
BIN
src/SysAttachment/images/58.jpg
Normal file
|
After Width: | Height: | Size: 4.5 MiB |
BIN
src/SysAttachment/images/59.jpg
Normal file
|
After Width: | Height: | Size: 4.1 MiB |
BIN
src/SysAttachment/images/6.jpg
Normal file
|
After Width: | Height: | Size: 6.2 MiB |
BIN
src/SysAttachment/images/60.jpg
Normal file
|
After Width: | Height: | Size: 6.9 MiB |
BIN
src/SysAttachment/images/61.jpg
Normal file
|
After Width: | Height: | Size: 5.5 MiB |
BIN
src/SysAttachment/images/62.jpg
Normal file
|
After Width: | Height: | Size: 4.4 MiB |
BIN
src/SysAttachment/images/63.jpg
Normal file
|
After Width: | Height: | Size: 3.9 MiB |
BIN
src/SysAttachment/images/64.jpg
Normal file
|
After Width: | Height: | Size: 3.9 MiB |
BIN
src/SysAttachment/images/65.jpg
Normal file
|
After Width: | Height: | Size: 4.6 MiB |
BIN
src/SysAttachment/images/66.jpg
Normal file
|
After Width: | Height: | Size: 3.9 MiB |
BIN
src/SysAttachment/images/7.jpg
Normal file
|
After Width: | Height: | Size: 6.5 MiB |
BIN
src/SysAttachment/images/8.jpg
Normal file
|
After Width: | Height: | Size: 7.0 MiB |
BIN
src/SysAttachment/images/9.jpg
Normal file
|
After Width: | Height: | Size: 7.3 MiB |
86
src/assets/base.css
Normal file
@ -0,0 +1,86 @@
|
|||||||
|
/* color palette from <https://github.com/vuejs/theme> */
|
||||||
|
:root {
|
||||||
|
--vt-c-white: #ffffff;
|
||||||
|
--vt-c-white-soft: #f8f8f8;
|
||||||
|
--vt-c-white-mute: #f2f2f2;
|
||||||
|
|
||||||
|
--vt-c-black: #181818;
|
||||||
|
--vt-c-black-soft: #222222;
|
||||||
|
--vt-c-black-mute: #282828;
|
||||||
|
|
||||||
|
--vt-c-indigo: #2c3e50;
|
||||||
|
|
||||||
|
--vt-c-divider-light-1: rgba(60, 60, 60, 0.29);
|
||||||
|
--vt-c-divider-light-2: rgba(60, 60, 60, 0.12);
|
||||||
|
--vt-c-divider-dark-1: rgba(84, 84, 84, 0.65);
|
||||||
|
--vt-c-divider-dark-2: rgba(84, 84, 84, 0.48);
|
||||||
|
|
||||||
|
--vt-c-text-light-1: var(--vt-c-indigo);
|
||||||
|
--vt-c-text-light-2: rgba(60, 60, 60, 0.66);
|
||||||
|
--vt-c-text-dark-1: var(--vt-c-white);
|
||||||
|
--vt-c-text-dark-2: rgba(235, 235, 235, 0.64);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* semantic color variables for this project */
|
||||||
|
:root {
|
||||||
|
--color-background: var(--vt-c-white);
|
||||||
|
--color-background-soft: var(--vt-c-white-soft);
|
||||||
|
--color-background-mute: var(--vt-c-white-mute);
|
||||||
|
|
||||||
|
--color-border: var(--vt-c-divider-light-2);
|
||||||
|
--color-border-hover: var(--vt-c-divider-light-1);
|
||||||
|
|
||||||
|
--color-heading: var(--vt-c-text-light-1);
|
||||||
|
--color-text: var(--vt-c-text-light-1);
|
||||||
|
|
||||||
|
--section-gap: 160px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
:root {
|
||||||
|
--color-background: var(--vt-c-black);
|
||||||
|
--color-background-soft: var(--vt-c-black-soft);
|
||||||
|
--color-background-mute: var(--vt-c-black-mute);
|
||||||
|
|
||||||
|
--color-border: var(--vt-c-divider-dark-2);
|
||||||
|
--color-border-hover: var(--vt-c-divider-dark-1);
|
||||||
|
|
||||||
|
--color-heading: var(--vt-c-text-dark-1);
|
||||||
|
--color-text: var(--vt-c-text-dark-2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
*,
|
||||||
|
*::before,
|
||||||
|
*::after {
|
||||||
|
box-sizing: border-box;
|
||||||
|
margin: 0;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
min-height: 100vh;
|
||||||
|
color: var(--color-text);
|
||||||
|
background: var(--color-background);
|
||||||
|
transition:
|
||||||
|
color 0.5s,
|
||||||
|
background-color 0.5s;
|
||||||
|
line-height: 1.6;
|
||||||
|
font-family:
|
||||||
|
Inter,
|
||||||
|
-apple-system,
|
||||||
|
BlinkMacSystemFont,
|
||||||
|
'Segoe UI',
|
||||||
|
Roboto,
|
||||||
|
Oxygen,
|
||||||
|
Ubuntu,
|
||||||
|
Cantarell,
|
||||||
|
'Fira Sans',
|
||||||
|
'Droid Sans',
|
||||||
|
'Helvetica Neue',
|
||||||
|
sans-serif;
|
||||||
|
font-size: 15px;
|
||||||
|
text-rendering: optimizeLegibility;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
}
|
||||||
3179
src/assets/geo/china-geo.json
Normal file
BIN
src/assets/images/1.jpg
Normal file
|
After Width: | Height: | Size: 7.3 MiB |
BIN
src/assets/images/10.jpg
Normal file
|
After Width: | Height: | Size: 7.6 MiB |
BIN
src/assets/images/100.jpg
Normal file
|
After Width: | Height: | Size: 3.7 MiB |
BIN
src/assets/images/101.jpg
Normal file
|
After Width: | Height: | Size: 4.7 MiB |
BIN
src/assets/images/102.jpg
Normal file
|
After Width: | Height: | Size: 4.8 MiB |
BIN
src/assets/images/103.jpg
Normal file
|
After Width: | Height: | Size: 4.4 MiB |
BIN
src/assets/images/104.jpg
Normal file
|
After Width: | Height: | Size: 4.9 MiB |
BIN
src/assets/images/105.jpg
Normal file
|
After Width: | Height: | Size: 4.7 MiB |
BIN
src/assets/images/106.jpg
Normal file
|
After Width: | Height: | Size: 4.5 MiB |
BIN
src/assets/images/107.jpg
Normal file
|
After Width: | Height: | Size: 4.5 MiB |
BIN
src/assets/images/108.jpg
Normal file
|
After Width: | Height: | Size: 4.4 MiB |
BIN
src/assets/images/109.jpg
Normal file
|
After Width: | Height: | Size: 4.5 MiB |
BIN
src/assets/images/11.jpg
Normal file
|
After Width: | Height: | Size: 6.8 MiB |
BIN
src/assets/images/110.jpg
Normal file
|
After Width: | Height: | Size: 4.5 MiB |
BIN
src/assets/images/111.jpg
Normal file
|
After Width: | Height: | Size: 4.3 MiB |
BIN
src/assets/images/112.jpg
Normal file
|
After Width: | Height: | Size: 4.6 MiB |
BIN
src/assets/images/113.jpg
Normal file
|
After Width: | Height: | Size: 4.3 MiB |
BIN
src/assets/images/114.jpg
Normal file
|
After Width: | Height: | Size: 3.7 MiB |
BIN
src/assets/images/115.jpg
Normal file
|
After Width: | Height: | Size: 3.6 MiB |
BIN
src/assets/images/116.jpg
Normal file
|
After Width: | Height: | Size: 3.8 MiB |