first commit
21
.editorconfig
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# 告诉EditorConfig插件,这是根文件,不用继续往上查找
|
||||||
|
root = true
|
||||||
|
|
||||||
|
# 匹配全部文件
|
||||||
|
[*]
|
||||||
|
# 缩进风格,可选space、tab
|
||||||
|
indent_style = space
|
||||||
|
# 缩进的空格数
|
||||||
|
indent_size = 2
|
||||||
|
# 设置字符集
|
||||||
|
charset = utf-8
|
||||||
|
# 结尾换行符,可选lf、cr、crlf
|
||||||
|
end_of_line = lf
|
||||||
|
# 在文件结尾插入新行
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
# 删除一行中的前后空格
|
||||||
|
insert_final_newline = true
|
||||||
|
|
||||||
|
[*.md]
|
||||||
|
insert_final_newline = false
|
||||||
|
trim_trailing_whitespace = false
|
39
.env.development
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
# 页面标题
|
||||||
|
VITE_APP_TITLE = 煤科建管平台
|
||||||
|
|
||||||
|
# 开发环境配置
|
||||||
|
VITE_APP_ENV = 'development'
|
||||||
|
|
||||||
|
# 开发环境
|
||||||
|
VITE_APP_BASE_API = 'http://192.168.110.180:8899'
|
||||||
|
|
||||||
|
# 无人机接口地址
|
||||||
|
|
||||||
|
VITE_APP_BASE_DRONE_API = 'http://58.17.134.85:9512'
|
||||||
|
|
||||||
|
# 应用访问路径 例如使用前缀 /admin/
|
||||||
|
VITE_APP_CONTEXT_PATH = '/'
|
||||||
|
|
||||||
|
# 监控地址
|
||||||
|
VITE_APP_MONITOR_ADMIN = 'http://localhost:9090/admin/applications'
|
||||||
|
|
||||||
|
# SnailJob 控制台地址
|
||||||
|
VITE_APP_SNAILJOB_ADMIN = 'http://localhost:8800/snail-job'
|
||||||
|
|
||||||
|
VITE_APP_PORT = 7788
|
||||||
|
|
||||||
|
# 接口加密功能开关(如需关闭 后端也必须对应关闭)
|
||||||
|
VITE_APP_ENCRYPT = true
|
||||||
|
# 接口加密传输 RSA 公钥与后端解密私钥对应 如更换需前后端一同更换
|
||||||
|
VITE_APP_RSA_PUBLIC_KEY = 'MFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAKoR8mX0rGKLqzcWmOzbfj64K8ZIgOdHnzkXSOVOZbFu/TJhZ7rFAN+eaGkl3C4buccQd/EjEsj9ir7ijT7h96MCAwEAAQ=='
|
||||||
|
# 接口响应解密 RSA 私钥与后端加密公钥对应 如更换需前后端一同更换
|
||||||
|
VITE_APP_RSA_PRIVATE_KEY = 'MIIBVAIBADANBgkqhkiG9w0BAQEFAASCAT4wggE6AgEAAkEAmc3CuPiGL/LcIIm7zryCEIbl1SPzBkr75E2VMtxegyZ1lYRD+7TZGAPkvIsBcaMs6Nsy0L78n2qh+lIZMpLH8wIDAQABAkEAk82Mhz0tlv6IVCyIcw/s3f0E+WLmtPFyR9/WtV3Y5aaejUkU60JpX4m5xNR2VaqOLTZAYjW8Wy0aXr3zYIhhQQIhAMfqR9oFdYw1J9SsNc+CrhugAvKTi0+BF6VoL6psWhvbAiEAxPPNTmrkmrXwdm/pQQu3UOQmc2vCZ5tiKpW10CgJi8kCIFGkL6utxw93Ncj4exE/gPLvKcT+1Emnoox+O9kRXss5AiAMtYLJDaLEzPrAWcZeeSgSIzbL+ecokmFKSDDcRske6QIgSMkHedwND1olF8vlKsJUGK3BcdtM8w4Xq7BpSBwsloE='
|
||||||
|
|
||||||
|
# 客户端id
|
||||||
|
VITE_APP_CLIENT_ID = 'e5cd7e4891bf95d1d19206ce24a7b32e'
|
||||||
|
|
||||||
|
# websocket 开关 默认使用sse推送
|
||||||
|
VITE_APP_WEBSOCKET = false
|
||||||
|
|
||||||
|
# sse 开关
|
||||||
|
VITE_APP_SSE = true
|
38
.env.production
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
# 页面标题
|
||||||
|
VITE_APP_TITLE = 煤科建管平台
|
||||||
|
|
||||||
|
# 生产环境配置
|
||||||
|
VITE_APP_ENV = 'production'
|
||||||
|
|
||||||
|
# 应用访问路径 例如使用前缀 /admin/
|
||||||
|
VITE_APP_CONTEXT_PATH = '/'
|
||||||
|
|
||||||
|
# 监控地址
|
||||||
|
VITE_APP_MONITOR_ADMIN = '/admin/applications'
|
||||||
|
|
||||||
|
# SnailJob 控制台地址
|
||||||
|
VITE_APP_SNAILJOB_ADMIN = '/snail-job'
|
||||||
|
|
||||||
|
# 生产环境
|
||||||
|
VITE_APP_BASE_API = 'http://58.17.134.85:8899'
|
||||||
|
|
||||||
|
# 是否在打包时开启压缩,支持 gzip 和 brotli
|
||||||
|
VITE_BUILD_COMPRESS = gzip
|
||||||
|
|
||||||
|
VITE_APP_PORT = 8081
|
||||||
|
|
||||||
|
# 接口加密功能开关(如需关闭 后端也必须对应关闭)
|
||||||
|
VITE_APP_ENCRYPT = true
|
||||||
|
# 接口加密传输 RSA 公钥与后端解密私钥对应 如更换需前后端一同更换
|
||||||
|
VITE_APP_RSA_PUBLIC_KEY = 'MFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAKoR8mX0rGKLqzcWmOzbfj64K8ZIgOdHnzkXSOVOZbFu/TJhZ7rFAN+eaGkl3C4buccQd/EjEsj9ir7ijT7h96MCAwEAAQ=='
|
||||||
|
# 接口响应解密 RSA 私钥与后端加密公钥对应 如更换需前后端一同更换
|
||||||
|
VITE_APP_RSA_PRIVATE_KEY = 'MIIBVAIBADANBgkqhkiG9w0BAQEFAASCAT4wggE6AgEAAkEAmc3CuPiGL/LcIIm7zryCEIbl1SPzBkr75E2VMtxegyZ1lYRD+7TZGAPkvIsBcaMs6Nsy0L78n2qh+lIZMpLH8wIDAQABAkEAk82Mhz0tlv6IVCyIcw/s3f0E+WLmtPFyR9/WtV3Y5aaejUkU60JpX4m5xNR2VaqOLTZAYjW8Wy0aXr3zYIhhQQIhAMfqR9oFdYw1J9SsNc+CrhugAvKTi0+BF6VoL6psWhvbAiEAxPPNTmrkmrXwdm/pQQu3UOQmc2vCZ5tiKpW10CgJi8kCIFGkL6utxw93Ncj4exE/gPLvKcT+1Emnoox+O9kRXss5AiAMtYLJDaLEzPrAWcZeeSgSIzbL+ecokmFKSDDcRske6QIgSMkHedwND1olF8vlKsJUGK3BcdtM8w4Xq7BpSBwsloE='
|
||||||
|
|
||||||
|
# 客户端id
|
||||||
|
VITE_APP_CLIENT_ID = 'e5cd7e4891bf95d1d19206ce24a7b32e'
|
||||||
|
|
||||||
|
# websocket 开关 默认使用sse推送
|
||||||
|
VITE_APP_WEBSOCKET = false
|
||||||
|
|
||||||
|
# sse 开关
|
||||||
|
VITE_APP_SSE = true
|
312
.eslintrc-auto-import.json
Normal file
@ -0,0 +1,312 @@
|
|||||||
|
{
|
||||||
|
"globals": {
|
||||||
|
"ComponentInternalInstance": true,
|
||||||
|
"TransferKey": true,
|
||||||
|
"ElFormRules": true,
|
||||||
|
"CheckboxValueType": true,
|
||||||
|
"PropType": true,
|
||||||
|
"DateModelType": true,
|
||||||
|
"UploadFile": true,
|
||||||
|
"ElFormInstance": true,
|
||||||
|
"ElTableInstance": true,
|
||||||
|
"ElTreeInstance": true,
|
||||||
|
"ElTreeSelectInstance": true,
|
||||||
|
"ElSelectInstance": true,
|
||||||
|
"ElUploadInstance": true,
|
||||||
|
"ElCardInstance": true,
|
||||||
|
"ElDialogInstance": true,
|
||||||
|
"ElInputInstance": true,
|
||||||
|
"ElInputNumberInstance": true,
|
||||||
|
"ElRadioInstance": true,
|
||||||
|
"ElRadioGroupInstance": true,
|
||||||
|
"ElRadioButtonInstance": true,
|
||||||
|
"ElCheckboxInstance": true,
|
||||||
|
"ElCheckboxGroupInstance": true,
|
||||||
|
"ElSwitchInstance": true,
|
||||||
|
"ElDatePickerInstance": true,
|
||||||
|
"ElTimePickerInstance": true,
|
||||||
|
"ElTimeSelectInstance": true,
|
||||||
|
"ElScrollbarInstance": true,
|
||||||
|
"ElCascaderInstance": true,
|
||||||
|
"ElColorPickerInstance": true,
|
||||||
|
"ElRateInstance": true,
|
||||||
|
"ElSliderInstance": true,
|
||||||
|
"useRouter": true,
|
||||||
|
"useRoute": true,
|
||||||
|
"EffectScope": true,
|
||||||
|
"ElTable": true,
|
||||||
|
"ElSelect": true,
|
||||||
|
"ElUpload": true,
|
||||||
|
"ElForm": true,
|
||||||
|
"ElTree": true,
|
||||||
|
"ElMessage": true,
|
||||||
|
"ElMessageBox": true,
|
||||||
|
"asyncComputed": true,
|
||||||
|
"autoResetRef": true,
|
||||||
|
"computed": true,
|
||||||
|
"computedAsync": true,
|
||||||
|
"computedEager": true,
|
||||||
|
"computedInject": true,
|
||||||
|
"computedWithControl": true,
|
||||||
|
"controlledComputed": true,
|
||||||
|
"controlledRef": true,
|
||||||
|
"createApp": true,
|
||||||
|
"createEventHook": true,
|
||||||
|
"createGlobalState": true,
|
||||||
|
"createInjectionState": true,
|
||||||
|
"createReactiveFn": true,
|
||||||
|
"createSharedComposable": true,
|
||||||
|
"createUnrefFn": true,
|
||||||
|
"customRef": true,
|
||||||
|
"debouncedRef": true,
|
||||||
|
"debouncedWatch": true,
|
||||||
|
"defineAsyncComponent": true,
|
||||||
|
"defineComponent": true,
|
||||||
|
"eagerComputed": true,
|
||||||
|
"effectScope": true,
|
||||||
|
"extendRef": true,
|
||||||
|
"getCurrentInstance": true,
|
||||||
|
"getCurrentScope": true,
|
||||||
|
"h": true,
|
||||||
|
"ignorableWatch": true,
|
||||||
|
"inject": true,
|
||||||
|
"isDefined": true,
|
||||||
|
"isProxy": true,
|
||||||
|
"isReactive": true,
|
||||||
|
"isReadonly": true,
|
||||||
|
"isRef": true,
|
||||||
|
"makeDestructurable": true,
|
||||||
|
"markRaw": true,
|
||||||
|
"nextTick": true,
|
||||||
|
"onActivated": true,
|
||||||
|
"onBeforeMount": true,
|
||||||
|
"onBeforeUnmount": true,
|
||||||
|
"onBeforeUpdate": true,
|
||||||
|
"onClickOutside": true,
|
||||||
|
"onDeactivated": true,
|
||||||
|
"onErrorCaptured": true,
|
||||||
|
"onKeyStroke": true,
|
||||||
|
"onLongPress": true,
|
||||||
|
"onMounted": true,
|
||||||
|
"onRenderTracked": true,
|
||||||
|
"onRenderTriggered": true,
|
||||||
|
"onScopeDispose": true,
|
||||||
|
"onServerPrefetch": true,
|
||||||
|
"onStartTyping": true,
|
||||||
|
"onUnmounted": true,
|
||||||
|
"onUpdated": true,
|
||||||
|
"pausableWatch": true,
|
||||||
|
"provide": true,
|
||||||
|
"reactify": true,
|
||||||
|
"reactifyObject": true,
|
||||||
|
"reactive": true,
|
||||||
|
"reactiveComputed": true,
|
||||||
|
"reactiveOmit": true,
|
||||||
|
"reactivePick": true,
|
||||||
|
"readonly": true,
|
||||||
|
"ref": true,
|
||||||
|
"refAutoReset": true,
|
||||||
|
"refDebounced": true,
|
||||||
|
"refDefault": true,
|
||||||
|
"refThrottled": true,
|
||||||
|
"refWithControl": true,
|
||||||
|
"resolveComponent": true,
|
||||||
|
"resolveDirective": true,
|
||||||
|
"resolveRef": true,
|
||||||
|
"resolveUnref": true,
|
||||||
|
"shallowReactive": true,
|
||||||
|
"shallowReadonly": true,
|
||||||
|
"shallowRef": true,
|
||||||
|
"syncRef": true,
|
||||||
|
"syncRefs": true,
|
||||||
|
"templateRef": true,
|
||||||
|
"throttledRef": true,
|
||||||
|
"throttledWatch": true,
|
||||||
|
"toRaw": true,
|
||||||
|
"toReactive": true,
|
||||||
|
"toRef": true,
|
||||||
|
"toRefs": true,
|
||||||
|
"triggerRef": true,
|
||||||
|
"tryOnBeforeMount": true,
|
||||||
|
"tryOnBeforeUnmount": true,
|
||||||
|
"tryOnMounted": true,
|
||||||
|
"tryOnScopeDispose": true,
|
||||||
|
"tryOnUnmounted": true,
|
||||||
|
"unref": true,
|
||||||
|
"unrefElement": true,
|
||||||
|
"until": true,
|
||||||
|
"useActiveElement": true,
|
||||||
|
"useArrayEvery": true,
|
||||||
|
"useArrayFilter": true,
|
||||||
|
"useArrayFind": true,
|
||||||
|
"useArrayFindIndex": true,
|
||||||
|
"useArrayFindLast": true,
|
||||||
|
"useArrayJoin": true,
|
||||||
|
"useArrayMap": true,
|
||||||
|
"useArrayReduce": true,
|
||||||
|
"useArraySome": true,
|
||||||
|
"useArrayUnique": true,
|
||||||
|
"useAsyncQueue": true,
|
||||||
|
"useAsyncState": true,
|
||||||
|
"useAttrs": true,
|
||||||
|
"useBase64": true,
|
||||||
|
"useBattery": true,
|
||||||
|
"useBluetooth": true,
|
||||||
|
"useBreakpoints": true,
|
||||||
|
"useBroadcastChannel": true,
|
||||||
|
"useBrowserLocation": true,
|
||||||
|
"useCached": true,
|
||||||
|
"useClipboard": true,
|
||||||
|
"useCloned": true,
|
||||||
|
"useColorMode": true,
|
||||||
|
"useConfirmDialog": true,
|
||||||
|
"useCounter": true,
|
||||||
|
"useCssModule": true,
|
||||||
|
"useCssVar": true,
|
||||||
|
"useCssVars": true,
|
||||||
|
"useCurrentElement": true,
|
||||||
|
"useCycleList": true,
|
||||||
|
"useDark": true,
|
||||||
|
"useDateFormat": true,
|
||||||
|
"useDebounce": true,
|
||||||
|
"useDebounceFn": true,
|
||||||
|
"useDebouncedRefHistory": true,
|
||||||
|
"useDeviceMotion": true,
|
||||||
|
"useDeviceOrientation": true,
|
||||||
|
"useDevicePixelRatio": true,
|
||||||
|
"useDevicesList": true,
|
||||||
|
"useDisplayMedia": true,
|
||||||
|
"useDocumentVisibility": true,
|
||||||
|
"useDraggable": true,
|
||||||
|
"useDropZone": true,
|
||||||
|
"useElementBounding": true,
|
||||||
|
"useElementByPoint": true,
|
||||||
|
"useElementHover": true,
|
||||||
|
"useElementSize": true,
|
||||||
|
"useElementVisibility": true,
|
||||||
|
"useEventBus": true,
|
||||||
|
"useEventListener": true,
|
||||||
|
"useEventSource": true,
|
||||||
|
"useEyeDropper": true,
|
||||||
|
"useFavicon": true,
|
||||||
|
"useFetch": true,
|
||||||
|
"useFileDialog": true,
|
||||||
|
"useFileSystemAccess": true,
|
||||||
|
"useFocus": true,
|
||||||
|
"useFocusWithin": true,
|
||||||
|
"useFps": true,
|
||||||
|
"useFullscreen": true,
|
||||||
|
"useGamepad": true,
|
||||||
|
"useGeolocation": true,
|
||||||
|
"useIdle": true,
|
||||||
|
"useImage": true,
|
||||||
|
"useInfiniteScroll": true,
|
||||||
|
"useIntersectionObserver": true,
|
||||||
|
"useInterval": true,
|
||||||
|
"useIntervalFn": true,
|
||||||
|
"useKeyModifier": true,
|
||||||
|
"useLastChanged": true,
|
||||||
|
"useLocalStorage": true,
|
||||||
|
"useMagicKeys": true,
|
||||||
|
"useManualRefHistory": true,
|
||||||
|
"useMediaControls": true,
|
||||||
|
"useMediaQuery": true,
|
||||||
|
"useMemoize": true,
|
||||||
|
"useMemory": true,
|
||||||
|
"useMounted": true,
|
||||||
|
"useMouse": true,
|
||||||
|
"useMouseInElement": true,
|
||||||
|
"useMousePressed": true,
|
||||||
|
"useMutationObserver": true,
|
||||||
|
"useNavigatorLanguage": true,
|
||||||
|
"useNetwork": true,
|
||||||
|
"useNow": true,
|
||||||
|
"useObjectUrl": true,
|
||||||
|
"useOffsetPagination": true,
|
||||||
|
"useOnline": true,
|
||||||
|
"usePageLeave": true,
|
||||||
|
"useParallax": true,
|
||||||
|
"usePermission": true,
|
||||||
|
"usePointer": true,
|
||||||
|
"usePointerLock": true,
|
||||||
|
"usePointerSwipe": true,
|
||||||
|
"usePreferredColorScheme": true,
|
||||||
|
"usePreferredContrast": true,
|
||||||
|
"usePreferredDark": true,
|
||||||
|
"usePreferredLanguages": true,
|
||||||
|
"usePreferredReducedMotion": true,
|
||||||
|
"usePrevious": true,
|
||||||
|
"useRafFn": true,
|
||||||
|
"useRefHistory": true,
|
||||||
|
"useResizeObserver": true,
|
||||||
|
"useScreenOrientation": true,
|
||||||
|
"useScreenSafeArea": true,
|
||||||
|
"useScriptTag": true,
|
||||||
|
"useScroll": true,
|
||||||
|
"useScrollLock": true,
|
||||||
|
"useSessionStorage": true,
|
||||||
|
"useShare": true,
|
||||||
|
"useSlots": true,
|
||||||
|
"useSorted": true,
|
||||||
|
"useSpeechRecognition": true,
|
||||||
|
"useSpeechSynthesis": true,
|
||||||
|
"useStepper": true,
|
||||||
|
"useStorage": true,
|
||||||
|
"useStorageAsync": true,
|
||||||
|
"useStyleTag": true,
|
||||||
|
"useSupported": true,
|
||||||
|
"useSwipe": true,
|
||||||
|
"useTemplateRefsList": true,
|
||||||
|
"useTextDirection": true,
|
||||||
|
"useTextSelection": true,
|
||||||
|
"useTextareaAutosize": true,
|
||||||
|
"useThrottle": true,
|
||||||
|
"useThrottleFn": true,
|
||||||
|
"useThrottledRefHistory": true,
|
||||||
|
"useTimeAgo": true,
|
||||||
|
"useTimeout": true,
|
||||||
|
"useTimeoutFn": true,
|
||||||
|
"useTimeoutPoll": true,
|
||||||
|
"useTimestamp": true,
|
||||||
|
"useTitle": true,
|
||||||
|
"useToNumber": true,
|
||||||
|
"useToString": true,
|
||||||
|
"useToggle": true,
|
||||||
|
"useTransition": true,
|
||||||
|
"useUrlSearchParams": true,
|
||||||
|
"useUserMedia": true,
|
||||||
|
"useVModel": true,
|
||||||
|
"useVModels": true,
|
||||||
|
"useVibrate": true,
|
||||||
|
"useVirtualList": true,
|
||||||
|
"useWakeLock": true,
|
||||||
|
"useWebNotification": true,
|
||||||
|
"useWebSocket": true,
|
||||||
|
"useWebWorker": true,
|
||||||
|
"useWebWorkerFn": true,
|
||||||
|
"useWindowFocus": true,
|
||||||
|
"useWindowScroll": true,
|
||||||
|
"useWindowSize": true,
|
||||||
|
"watch": true,
|
||||||
|
"watchArray": true,
|
||||||
|
"watchAtMost": true,
|
||||||
|
"watchDebounced": true,
|
||||||
|
"watchEffect": true,
|
||||||
|
"watchIgnorable": true,
|
||||||
|
"watchOnce": true,
|
||||||
|
"watchPausable": true,
|
||||||
|
"watchPostEffect": true,
|
||||||
|
"watchSyncEffect": true,
|
||||||
|
"watchThrottled": true,
|
||||||
|
"watchTriggerable": true,
|
||||||
|
"watchWithFilter": true,
|
||||||
|
"whenever": true,
|
||||||
|
"ImportOption": true,
|
||||||
|
"TreeType": true,
|
||||||
|
"FieldOption": true,
|
||||||
|
"PageData": true,
|
||||||
|
"storeToRefs": true,
|
||||||
|
"DictDataOption": true,
|
||||||
|
"UploadOption": true
|
||||||
|
}
|
||||||
|
}
|
34
.gitignore
vendored
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
.DS_Store
|
||||||
|
.history
|
||||||
|
node_modules/
|
||||||
|
public/image/
|
||||||
|
dist/
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
**/*.log
|
||||||
|
# 忽略所有 .tif 文件
|
||||||
|
*.tif
|
||||||
|
*.zip
|
||||||
|
|
||||||
|
|
||||||
|
tests/**/coverage/
|
||||||
|
tests/e2e/reports
|
||||||
|
selenium-debug.log
|
||||||
|
|
||||||
|
# Editor directories and files
|
||||||
|
.idea
|
||||||
|
.vscode
|
||||||
|
*.suo
|
||||||
|
*.ntvs*
|
||||||
|
*.njsproj
|
||||||
|
*.sln
|
||||||
|
*.local
|
||||||
|
|
||||||
|
package-lock.json
|
||||||
|
yarn.lock
|
||||||
|
pnpm-lock.yaml
|
||||||
|
|
||||||
|
# 编译生成的文件
|
||||||
|
auto-imports.d.ts
|
||||||
|
components.d.ts
|
9
.prettierignore
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
/dist/*
|
||||||
|
.local
|
||||||
|
.output.js
|
||||||
|
/node_modules/**
|
||||||
|
|
||||||
|
**/*.svg
|
||||||
|
**/*.sh
|
||||||
|
|
||||||
|
/public/*
|
20
.prettierrc
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"printWidth": 150,
|
||||||
|
"tabWidth": 2,
|
||||||
|
"useTabs": false,
|
||||||
|
"semi": true,
|
||||||
|
"singleQuote": true,
|
||||||
|
"quoteProps": "preserve",
|
||||||
|
"jsxSingleQuote": false,
|
||||||
|
"bracketSameLine": false,
|
||||||
|
"trailingComma": "none",
|
||||||
|
"bracketSpacing": true,
|
||||||
|
"embeddedLanguageFormatting": "auto",
|
||||||
|
"arrowParens": "always",
|
||||||
|
"requirePragma": false,
|
||||||
|
"insertPragma": false,
|
||||||
|
"proseWrap": "preserve",
|
||||||
|
"htmlWhitespaceSensitivity": "css",
|
||||||
|
"vueIndentScriptAndStyle": false,
|
||||||
|
"endOfLine": "auto"
|
||||||
|
}
|
20
LICENSE
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2019 RuoYi-Vue-Plus
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||||
|
this software and associated documentation files (the "Software"), to deal in
|
||||||
|
the Software without restriction, including without limitation the rights to
|
||||||
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||||
|
the Software, and to permit persons to whom the Software is furnished to do so,
|
||||||
|
subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||||
|
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||||
|
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||||
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||||
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
76
README.md
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
## 平台简介
|
||||||
|
|
||||||
|
- 本仓库为前端技术栈 [Vue3](https://v3.cn.vuejs.org) + [TS](https://www.typescriptlang.org/) + [Element Plus](https://element-plus.org/zh-CN) + [Vite](https://cn.vitejs.dev) 版本。
|
||||||
|
- 成员项目: 基于 vben5(ant-design-vue) 的前端项目 [ruoyi-plus-vben5](https://gitee.com/dapppp/ruoyi-plus-vben5)
|
||||||
|
- 配套后端代码仓库地址
|
||||||
|
- [RuoYi-Vue-Plus 5.X(注意版本号)](https://gitee.com/dromara/RuoYi-Vue-Plus)
|
||||||
|
- [RuoYi-Cloud-Plus 2.X(注意版本号)](https://gitee.com/dromara/RuoYi-Cloud-Plus)
|
||||||
|
|
||||||
|
## 前端运行
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# 克隆项目
|
||||||
|
git clone https://gitee.com/JavaLionLi/plus-ui.git
|
||||||
|
|
||||||
|
# 安装依赖
|
||||||
|
npm install --registry=https://registry.npmmirror.com
|
||||||
|
|
||||||
|
# 启动服务
|
||||||
|
npm run dev
|
||||||
|
|
||||||
|
# 构建生产环境
|
||||||
|
npm run build:prod
|
||||||
|
|
||||||
|
# 前端访问地址 http://localhost:80
|
||||||
|
```
|
||||||
|
|
||||||
|
## 本框架与RuoYi的业务差异
|
||||||
|
|
||||||
|
| 业务 | 功能说明 | 本框架 | RuoYi |
|
||||||
|
| ------------ | ------------------------------------------------------------- | ------ | ----------------------------- |
|
||||||
|
| 租户管理 | 系统内租户的管理 如:租户套餐、过期时间、用户数量、企业信息等 | 支持 | 无 |
|
||||||
|
| 租户套餐管理 | 系统内租户所能使用的套餐管理 如:套餐内所包含的菜单等 | 支持 | 无 |
|
||||||
|
| 用户管理 | 用户的管理配置 如:新增用户、分配用户所属部门、角色、岗位等 | 支持 | 支持 |
|
||||||
|
| 部门管理 | 配置系统组织机构(公司、部门、小组) 树结构展现支持数据权限 | 支持 | 支持 |
|
||||||
|
| 岗位管理 | 配置系统用户所属担任职务 | 支持 | 支持 |
|
||||||
|
| 菜单管理 | 配置系统菜单、操作权限、按钮权限标识等 | 支持 | 支持 |
|
||||||
|
| 角色管理 | 角色菜单权限分配、设置角色按机构进行数据范围权限划分 | 支持 | 支持 |
|
||||||
|
| 字典管理 | 对系统中经常使用的一些较为固定的数据进行维护 | 支持 | 支持 |
|
||||||
|
| 参数管理 | 对系统动态配置常用参数 | 支持 | 支持 |
|
||||||
|
| 通知公告 | 系统通知公告信息发布维护 | 支持 | 支持 |
|
||||||
|
| 操作日志 | 系统正常操作日志记录和查询 系统异常信息日志记录和查询 | 支持 | 支持 |
|
||||||
|
| 登录日志 | 系统登录日志记录查询包含登录异常 | 支持 | 支持 |
|
||||||
|
| 文件管理 | 系统文件展示、上传、下载、删除等管理 | 支持 | 无 |
|
||||||
|
| 文件配置管理 | 系统文件上传、下载所需要的配置信息动态添加、修改、删除等管理 | 支持 | 无 |
|
||||||
|
| 在线用户管理 | 已登录系统的在线用户信息监控与强制踢出操作 | 支持 | 支持 |
|
||||||
|
| 定时任务 | 运行报表、任务管理(添加、修改、删除)、日志管理、执行器管理等 | 支持 | 仅支持任务与日志管理 |
|
||||||
|
| 代码生成 | 多数据源前后端代码的生成(java、html、xml、sql)支持CRUD下载 | 支持 | 仅支持单数据源 |
|
||||||
|
| 系统接口 | 根据业务代码自动生成相关的api接口文档 | 支持 | 支持 |
|
||||||
|
| 服务监控 | 监视集群系统CPU、内存、磁盘、堆栈、在线日志、Spring相关配置等 | 支持 | 仅支持单机CPU、内存、磁盘监控 |
|
||||||
|
| 缓存监控 | 对系统的缓存信息查询,命令统计等。 | 支持 | 支持 |
|
||||||
|
| 在线构建器 | 拖动表单元素生成相应的HTML代码。 | 支持 | 支持 |
|
||||||
|
| 使用案例 | 系统的一些功能案例 | 支持 | 不支持 |
|
||||||
|
|
||||||
|
## 演示图例
|
||||||
|
|
||||||
|
| | |
|
||||||
|
| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- |
|
||||||
|
|  |  |
|
||||||
|
|  |  |
|
||||||
|
|  |  |
|
||||||
|
|  |  |
|
||||||
|
|  |  |
|
||||||
|
|  |  |
|
||||||
|
|  |  |
|
||||||
|
|  |  |
|
||||||
|
|  |  |
|
||||||
|
|  |  |
|
||||||
|
|  |  |
|
||||||
|
|  |  |
|
||||||
|
|  |  |
|
||||||
|
|  |  |
|
||||||
|
|  |  |
|
||||||
|
|  |  |
|
||||||
|
|  |  |
|
||||||
|
|  |  |
|
||||||
|
|  |  |
|
12
bin/build.bat
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
@echo off
|
||||||
|
echo.
|
||||||
|
echo [<5B><>Ϣ] <20><><EFBFBD><EFBFBD>Web<65><62><EFBFBD>̣<EFBFBD><CCA3><EFBFBD><EFBFBD><EFBFBD>dist<73>ļ<EFBFBD><C4BC><EFBFBD>
|
||||||
|
echo.
|
||||||
|
|
||||||
|
%~d0
|
||||||
|
cd %~dp0
|
||||||
|
|
||||||
|
cd ..
|
||||||
|
yarn build:prod
|
||||||
|
|
||||||
|
pause
|
12
bin/package.bat
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
@echo off
|
||||||
|
echo.
|
||||||
|
echo [<5B><>Ϣ] <20><>װWeb<65><62><EFBFBD>̣<EFBFBD><CCA3><EFBFBD><EFBFBD><EFBFBD>node_modules<65>ļ<EFBFBD><C4BC><EFBFBD>
|
||||||
|
echo.
|
||||||
|
|
||||||
|
%~d0
|
||||||
|
cd %~dp0
|
||||||
|
|
||||||
|
cd ..
|
||||||
|
yarn --registry=https://registry.npmmirror.com
|
||||||
|
|
||||||
|
pause
|
12
bin/run-web.bat
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
@echo off
|
||||||
|
echo.
|
||||||
|
echo [<5B><>Ϣ] ʹ<><CAB9> Vite <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Web <20><><EFBFBD>̡<EFBFBD>
|
||||||
|
echo.
|
||||||
|
|
||||||
|
%~d0
|
||||||
|
cd %~dp0
|
||||||
|
|
||||||
|
cd ..
|
||||||
|
yarn dev
|
||||||
|
|
||||||
|
pause
|
86
eslint.config.js
Normal file
@ -0,0 +1,86 @@
|
|||||||
|
import globals from 'globals';
|
||||||
|
import pluginJs from '@eslint/js';
|
||||||
|
import tseslint from 'typescript-eslint';
|
||||||
|
import pluginVue from 'eslint-plugin-vue';
|
||||||
|
import { readFile } from 'node:fs/promises';
|
||||||
|
import prettier from 'eslint-plugin-prettier';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* https://blog.csdn.net/sayUonly/article/details/123482912
|
||||||
|
* 自动导入的配置
|
||||||
|
*/
|
||||||
|
const autoImportFile = new URL('./.eslintrc-auto-import.json', import.meta.url);
|
||||||
|
const autoImportGlobals = JSON.parse(await readFile(autoImportFile, 'utf8'));
|
||||||
|
|
||||||
|
/** @type {import('eslint').Linter.Config[]} */
|
||||||
|
export default [
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* 不需要.eslintignore文件 而是在这里配置
|
||||||
|
*/
|
||||||
|
ignores: [
|
||||||
|
'*.sh',
|
||||||
|
'node_modules',
|
||||||
|
'*.md',
|
||||||
|
'*.woff',
|
||||||
|
'*.ttf',
|
||||||
|
'.vscode',
|
||||||
|
'.idea',
|
||||||
|
'dist',
|
||||||
|
'/public',
|
||||||
|
'/docs',
|
||||||
|
'.husky',
|
||||||
|
'.local',
|
||||||
|
'/bin',
|
||||||
|
'.eslintrc.cjs',
|
||||||
|
'prettier.config.js',
|
||||||
|
'src/assets',
|
||||||
|
'tailwind.config.js'
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{ files: ['**/*.{js,mjs,cjs,ts,vue}'] },
|
||||||
|
{
|
||||||
|
languageOptions: {
|
||||||
|
globals: globals.browser
|
||||||
|
}
|
||||||
|
},
|
||||||
|
pluginJs.configs.recommended,
|
||||||
|
...tseslint.configs.recommended,
|
||||||
|
...pluginVue.configs['flat/essential'],
|
||||||
|
{
|
||||||
|
files: ['**/*.vue'],
|
||||||
|
languageOptions: {
|
||||||
|
parserOptions: {
|
||||||
|
parser: tseslint.parser
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
languageOptions: {
|
||||||
|
globals: {
|
||||||
|
// 自动导入的配置 undef
|
||||||
|
...autoImportGlobals.globals,
|
||||||
|
DialogOption: 'readonly',
|
||||||
|
LayoutSetting: 'readonly'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
plugins: { prettier },
|
||||||
|
rules: {
|
||||||
|
'@typescript-eslint/no-empty-function': 'off',
|
||||||
|
'@typescript-eslint/no-explicit-any': 'off',
|
||||||
|
'@typescript-eslint/no-unused-vars': 'off',
|
||||||
|
'@typescript-eslint/no-this-alias': 'off',
|
||||||
|
|
||||||
|
// vue
|
||||||
|
'vue/multi-word-component-names': 'off',
|
||||||
|
'vue/valid-define-props': 'off',
|
||||||
|
'vue/no-v-model-argument': 'off',
|
||||||
|
'prefer-rest-params': 'off',
|
||||||
|
// prettier
|
||||||
|
'prettier/prettier': 'error',
|
||||||
|
// 允许使用空Object类型 {}
|
||||||
|
'@typescript-eslint/no-empty-object-type': 'off',
|
||||||
|
'@typescript-eslint/no-unused-expressions': 'off'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
];
|
242
html/ie.html
Normal file
223
index.html
Normal file
@ -0,0 +1,223 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
||||||
|
<meta name="renderer" content="webkit" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0" />
|
||||||
|
<link rel="icon" href="/favicon.ico" />
|
||||||
|
<title>煤科建管平台</title>
|
||||||
|
<!--[if lt IE 11
|
||||||
|
]><script>
|
||||||
|
window.location.href = '/html/ie.html';
|
||||||
|
</script><!
|
||||||
|
[endif]-->
|
||||||
|
<style>
|
||||||
|
html,
|
||||||
|
body,
|
||||||
|
#app {
|
||||||
|
height: 100%;
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chromeframe {
|
||||||
|
margin: 0.2em 0;
|
||||||
|
background: #ccc;
|
||||||
|
color: #000;
|
||||||
|
padding: 0.2em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#loader-wrapper {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
z-index: 999999;
|
||||||
|
}
|
||||||
|
|
||||||
|
#loader {
|
||||||
|
display: block;
|
||||||
|
position: relative;
|
||||||
|
left: 50%;
|
||||||
|
top: 50%;
|
||||||
|
width: 150px;
|
||||||
|
height: 150px;
|
||||||
|
margin: -75px 0 0 -75px;
|
||||||
|
border-radius: 50%;
|
||||||
|
border: 3px solid transparent;
|
||||||
|
border-top-color: #fff;
|
||||||
|
-webkit-animation: spin 2s linear infinite;
|
||||||
|
-ms-animation: spin 2s linear infinite;
|
||||||
|
-moz-animation: spin 2s linear infinite;
|
||||||
|
-o-animation: spin 2s linear infinite;
|
||||||
|
animation: spin 2s linear infinite;
|
||||||
|
z-index: 1001;
|
||||||
|
}
|
||||||
|
|
||||||
|
#loader:before {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: 5px;
|
||||||
|
left: 5px;
|
||||||
|
right: 5px;
|
||||||
|
bottom: 5px;
|
||||||
|
border-radius: 50%;
|
||||||
|
border: 3px solid transparent;
|
||||||
|
border-top-color: #fff;
|
||||||
|
-webkit-animation: spin 3s linear infinite;
|
||||||
|
-moz-animation: spin 3s linear infinite;
|
||||||
|
-o-animation: spin 3s linear infinite;
|
||||||
|
-ms-animation: spin 3s linear infinite;
|
||||||
|
animation: spin 3s linear infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
#loader:after {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: 15px;
|
||||||
|
left: 15px;
|
||||||
|
right: 15px;
|
||||||
|
bottom: 15px;
|
||||||
|
border-radius: 50%;
|
||||||
|
border: 3px solid transparent;
|
||||||
|
border-top-color: #fff;
|
||||||
|
-moz-animation: spin 1.5s linear infinite;
|
||||||
|
-o-animation: spin 1.5s linear infinite;
|
||||||
|
-ms-animation: spin 1.5s linear infinite;
|
||||||
|
-webkit-animation: spin 1.5s linear infinite;
|
||||||
|
animation: spin 1.5s linear infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes spin {
|
||||||
|
0% {
|
||||||
|
-webkit-transform: rotate(0deg);
|
||||||
|
-ms-transform: rotate(0deg);
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
100% {
|
||||||
|
-webkit-transform: rotate(360deg);
|
||||||
|
-ms-transform: rotate(360deg);
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes spin {
|
||||||
|
0% {
|
||||||
|
-webkit-transform: rotate(0deg);
|
||||||
|
-ms-transform: rotate(0deg);
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
100% {
|
||||||
|
-webkit-transform: rotate(360deg);
|
||||||
|
-ms-transform: rotate(360deg);
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#loader-wrapper .loader-section {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
width: 51%;
|
||||||
|
height: 100%;
|
||||||
|
background: #7171c6;
|
||||||
|
z-index: 1000;
|
||||||
|
-webkit-transform: translateX(0);
|
||||||
|
-ms-transform: translateX(0);
|
||||||
|
transform: translateX(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
#loader-wrapper .loader-section.section-left {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#loader-wrapper .loader-section.section-right {
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loaded #loader-wrapper .loader-section.section-left {
|
||||||
|
-webkit-transform: translateX(-100%);
|
||||||
|
-ms-transform: translateX(-100%);
|
||||||
|
transform: translateX(-100%);
|
||||||
|
-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
||||||
|
transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.loaded #loader-wrapper .loader-section.section-right {
|
||||||
|
-webkit-transform: translateX(100%);
|
||||||
|
-ms-transform: translateX(100%);
|
||||||
|
transform: translateX(100%);
|
||||||
|
-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
||||||
|
transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.loaded #loader {
|
||||||
|
opacity: 0;
|
||||||
|
-webkit-transition: all 0.3s ease-out;
|
||||||
|
transition: all 0.3s ease-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loaded #loader-wrapper {
|
||||||
|
visibility: hidden;
|
||||||
|
-webkit-transform: translateY(-100%);
|
||||||
|
-ms-transform: translateY(-100%);
|
||||||
|
transform: translateY(-100%);
|
||||||
|
-webkit-transition: all 0.3s 1s ease-out;
|
||||||
|
transition: all 0.3s 1s ease-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.no-js #loader-wrapper {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.no-js h1 {
|
||||||
|
color: #222222;
|
||||||
|
}
|
||||||
|
|
||||||
|
#loader-wrapper .load_title {
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
color: #fff;
|
||||||
|
font-size: 19px;
|
||||||
|
width: 100%;
|
||||||
|
text-align: center;
|
||||||
|
z-index: 9999999999999;
|
||||||
|
position: absolute;
|
||||||
|
top: 60%;
|
||||||
|
opacity: 1;
|
||||||
|
line-height: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#loader-wrapper .load_title span {
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: italic;
|
||||||
|
font-size: 13px;
|
||||||
|
color: #fff;
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div id="app">
|
||||||
|
<div id="loader-wrapper">
|
||||||
|
<div id="loader"></div>
|
||||||
|
<div class="loader-section section-left"></div>
|
||||||
|
<div class="loader-section section-right"></div>
|
||||||
|
<div class="load_title">正在加载系统资源,请耐心等待</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="http://58.17.134.85:7363/changxieoffice/web-apps/apps/api/documents/api.js"></script>
|
||||||
|
<script src="/js/html-docx.js"></script>
|
||||||
|
<script src="/webrtc/adapter-7.4.0.min.js"></script>
|
||||||
|
<script src="/webrtc/jquery-1.12.2.min.js"></script>
|
||||||
|
<script src="/webrtc/srs.sdk.js"></script>
|
||||||
|
|
||||||
|
<script src="/sdk/YJEarth.min.js"></script>
|
||||||
|
<script src="/js/reconnecting-websocket.js"></script>
|
||||||
|
<script type="module" src="/src/main.ts"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
110
package.json
Normal file
@ -0,0 +1,110 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://json.schemastore.org/tsconfig",
|
||||||
|
"name": "ruoyi-vue-plus",
|
||||||
|
"version": "5.3.0",
|
||||||
|
"description": "RuoYi-Vue-Plus多租户管理系统",
|
||||||
|
"author": "LionLi",
|
||||||
|
"license": "MIT",
|
||||||
|
"type": "module",
|
||||||
|
"scripts": {
|
||||||
|
"dev": "vite serve --mode development",
|
||||||
|
"build:prod": "vite build --mode production",
|
||||||
|
"build:dev": "vite build --mode development",
|
||||||
|
"preview": "vite preview",
|
||||||
|
"lint:eslint": "eslint",
|
||||||
|
"lint:eslint:fix": "eslint --fix",
|
||||||
|
"prettier": "prettier --write .",
|
||||||
|
"copy-cesium": "cpy './public/sdk/Cesium/{Workers,Assets,Widgets}' ./public/Cesium --flat --parents"
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://gitee.com/JavaLionLi/plus-ui.git"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@amap/amap-jsapi-loader": "^1.0.1",
|
||||||
|
"@element-plus/icons-vue": "2.3.1",
|
||||||
|
"@highlightjs/vue-plugin": "2.1.0",
|
||||||
|
"@turf/turf": "^7.2.0",
|
||||||
|
"@vueup/vue-quill": "1.2.0",
|
||||||
|
"@vueuse/core": "11.3.0",
|
||||||
|
"animate.css": "4.1.1",
|
||||||
|
"await-to-js": "3.0.0",
|
||||||
|
"axios": "1.7.8",
|
||||||
|
"crypto-js": "4.2.0",
|
||||||
|
"diagram-js": "12.3.0",
|
||||||
|
"didi": "9.0.2",
|
||||||
|
"echarts": "5.5.0",
|
||||||
|
"element-plus": "2.8.8",
|
||||||
|
"esbuild": "^0.25.0",
|
||||||
|
"ezuikit-js": "^8.1.10",
|
||||||
|
"file-saver": "^2.0.5",
|
||||||
|
"fuse.js": "7.0.0",
|
||||||
|
"gcoord": "^1.0.7",
|
||||||
|
"geotiff": "^2.1.3",
|
||||||
|
"highlight.js": "11.9.0",
|
||||||
|
"image-conversion": "2.1.1",
|
||||||
|
"js-cookie": "3.0.5",
|
||||||
|
"js-md5": "^0.8.3",
|
||||||
|
"jsencrypt": "3.3.2",
|
||||||
|
"jszip": "^3.10.1",
|
||||||
|
"leaflet": "^1.9.4",
|
||||||
|
"lodash": "^4.17.21",
|
||||||
|
"md5": "^2.3.0",
|
||||||
|
"mitt": "^3.0.1",
|
||||||
|
"nprogress": "0.2.0",
|
||||||
|
"ol": "^10.5.0",
|
||||||
|
"pinia": "2.2.6",
|
||||||
|
"proj4": "^2.19.3",
|
||||||
|
"proj4leaflet": "^1.0.2",
|
||||||
|
"screenfull": "6.0.2",
|
||||||
|
"spark-md5": "^3.0.2",
|
||||||
|
"vue": "3.5.13",
|
||||||
|
"vue-cropper": "1.1.1",
|
||||||
|
"vue-i18n": "10.0.5",
|
||||||
|
"vue-json-pretty": "2.4.0",
|
||||||
|
"vue-print-nb": "^1.7.5",
|
||||||
|
"vue-router": "4.4.5",
|
||||||
|
"vue-types": "5.1.3",
|
||||||
|
"vue3-print-nb": "^0.1.4",
|
||||||
|
"vue3-scroll-seamless": "^1.0.6",
|
||||||
|
"vxe-table": "4.5.22"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@eslint/js": "9.15.0",
|
||||||
|
"@iconify/json": "2.2.276",
|
||||||
|
"@types/crypto-js": "4.2.2",
|
||||||
|
"@types/file-saver": "2.0.7",
|
||||||
|
"@types/js-cookie": "3.0.6",
|
||||||
|
"@types/node": "18.18.2",
|
||||||
|
"@types/nprogress": "0.2.3",
|
||||||
|
"@types/proj4": "^2.5.6",
|
||||||
|
"@unocss/preset-attributify": "0.64.1",
|
||||||
|
"@unocss/preset-icons": "0.64.1",
|
||||||
|
"@unocss/preset-uno": "0.64.1",
|
||||||
|
"@vitejs/plugin-vue": "5.0.4",
|
||||||
|
"@vue/compiler-sfc": "3.4.23",
|
||||||
|
"autoprefixer": "10.4.18",
|
||||||
|
"cpy": "^11.1.0",
|
||||||
|
"eslint": "9.15.0",
|
||||||
|
"eslint-plugin-prettier": "^5.2.1",
|
||||||
|
"eslint-plugin-vue": "9.31.0",
|
||||||
|
"fast-glob": "3.3.2",
|
||||||
|
"globals": "15.12.0",
|
||||||
|
"postcss": "8.4.36",
|
||||||
|
"postcss-px-to-viewport": "^1.1.1",
|
||||||
|
"prettier": "3.2.5",
|
||||||
|
"sass": "1.72.0",
|
||||||
|
"typescript": "5.7.2",
|
||||||
|
"typescript-eslint": "8.16.0",
|
||||||
|
"unocss": "0.64.1",
|
||||||
|
"unplugin-auto-import": "0.17.5",
|
||||||
|
"unplugin-icons": "0.18.5",
|
||||||
|
"unplugin-vue-components": "0.26.0",
|
||||||
|
"unplugin-vue-setup-extend-plus": "1.0.1",
|
||||||
|
"vite": "5.4.11",
|
||||||
|
"vite-plugin-compression": "0.5.1",
|
||||||
|
"vite-plugin-svg-icons": "2.0.1",
|
||||||
|
"vitest": "1.5.0",
|
||||||
|
"vue-tsc": "2.0.13"
|
||||||
|
}
|
||||||
|
}
|
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_0.json
Normal file
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_1.json
Normal file
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_10.json
Normal file
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_11.json
Normal file
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_12.json
Normal file
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_13.json
Normal file
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_14.json
Normal file
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_15.json
Normal file
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_16.json
Normal file
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_17.json
Normal file
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_18.json
Normal file
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_19.json
Normal file
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_2.json
Normal file
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_20.json
Normal file
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_21.json
Normal file
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_22.json
Normal file
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_23.json
Normal file
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_24.json
Normal file
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_25.json
Normal file
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_26.json
Normal file
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_27.json
Normal file
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_3.json
Normal file
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_4.json
Normal file
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_5.json
Normal file
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_6.json
Normal file
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_7.json
Normal file
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_8.json
Normal file
1
public/Cesium/Assets/IAU2006_XYS/IAU2006_XYS_9.json
Normal file
BIN
public/Cesium/Assets/Images/bing_maps_credit.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
public/Cesium/Assets/Images/cesium_credit.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
public/Cesium/Assets/Images/google_earth_credit.png
Normal file
After Width: | Height: | Size: 7.5 KiB |
BIN
public/Cesium/Assets/Images/ion-credit.png
Normal file
After Width: | Height: | Size: 5.9 KiB |
BIN
public/Cesium/Assets/Textures/LensFlare/DirtMask.jpg
Normal file
After Width: | Height: | Size: 111 KiB |
BIN
public/Cesium/Assets/Textures/LensFlare/StarBurst.jpg
Normal file
After Width: | Height: | Size: 191 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/0/0/0.jpg
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/0/1/0.jpg
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/1/0/0.jpg
Normal file
After Width: | Height: | Size: 7.1 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/1/0/1.jpg
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/1/1/0.jpg
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/1/1/1.jpg
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/1/2/0.jpg
Normal file
After Width: | Height: | Size: 9.4 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/1/2/1.jpg
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/1/3/0.jpg
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/1/3/1.jpg
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/0/0.jpg
Normal file
After Width: | Height: | Size: 8.0 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/0/1.jpg
Normal file
After Width: | Height: | Size: 9.1 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/0/2.jpg
Normal file
After Width: | Height: | Size: 7.7 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/0/3.jpg
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/1/0.jpg
Normal file
After Width: | Height: | Size: 7.7 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/1/1.jpg
Normal file
After Width: | Height: | Size: 6.7 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/1/2.jpg
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/1/3.jpg
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/2/0.jpg
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/2/1.jpg
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/2/2.jpg
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/2/3.jpg
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/3/0.jpg
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/3/1.jpg
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/3/2.jpg
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/3/3.jpg
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/4/0.jpg
Normal file
After Width: | Height: | Size: 8.3 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/4/1.jpg
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/4/2.jpg
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/4/3.jpg
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/5/0.jpg
Normal file
After Width: | Height: | Size: 7.4 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/5/1.jpg
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/5/2.jpg
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/5/3.jpg
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/6/0.jpg
Normal file
After Width: | Height: | Size: 6.5 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/6/1.jpg
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/6/2.jpg
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/6/3.jpg
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/7/0.jpg
Normal file
After Width: | Height: | Size: 8.8 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/7/1.jpg
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/7/2.jpg
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
public/Cesium/Assets/Textures/NaturalEarthII/2/7/3.jpg
Normal file
After Width: | Height: | Size: 12 KiB |
@ -0,0 +1,14 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<TileMap version="1.0.0" tilemapservice="http://tms.osgeo.org/1.0.0">
|
||||||
|
<Title>NE2_HR_LC_SR_W_DR_recolored.tif</Title>
|
||||||
|
<Abstract></Abstract>
|
||||||
|
<SRS>EPSG:4326</SRS>
|
||||||
|
<BoundingBox miny="-90.00000000000000" minx="-180.00000000000000" maxy="90.00000000000000" maxx="180.00000000000000"/>
|
||||||
|
<Origin y="-90.00000000000000" x="-180.00000000000000"/>
|
||||||
|
<TileFormat width="256" height="256" mime-type="image/jpg" extension="jpg"/>
|
||||||
|
<TileSets profile="geodetic">
|
||||||
|
<TileSet href="0" units-per-pixel="0.70312500000000" order="0"/>
|
||||||
|
<TileSet href="1" units-per-pixel="0.35156250000000" order="1"/>
|
||||||
|
<TileSet href="2" units-per-pixel="0.17578125000000" order="2"/>
|
||||||
|
</TileSets>
|
||||||
|
</TileMap>
|
BIN
public/Cesium/Assets/Textures/SkyBox/tycho2t3_80_mx.jpg
Normal file
After Width: | Height: | Size: 116 KiB |
BIN
public/Cesium/Assets/Textures/SkyBox/tycho2t3_80_my.jpg
Normal file
After Width: | Height: | Size: 149 KiB |
BIN
public/Cesium/Assets/Textures/SkyBox/tycho2t3_80_mz.jpg
Normal file
After Width: | Height: | Size: 164 KiB |
BIN
public/Cesium/Assets/Textures/SkyBox/tycho2t3_80_px.jpg
Normal file
After Width: | Height: | Size: 120 KiB |
BIN
public/Cesium/Assets/Textures/SkyBox/tycho2t3_80_py.jpg
Normal file
After Width: | Height: | Size: 149 KiB |
BIN
public/Cesium/Assets/Textures/SkyBox/tycho2t3_80_pz.jpg
Normal file
After Width: | Height: | Size: 149 KiB |
BIN
public/Cesium/Assets/Textures/maki/airfield.png
Normal file
After Width: | Height: | Size: 1.2 KiB |