Compare commits
42 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 119af564ba | |||
| 06f4b7a0e7 | |||
| e208fd7ffc | |||
| 880509a99b | |||
| 040aaab246 | |||
| b26483a99c | |||
| f45470185f | |||
| fb96226b49 | |||
| 8701a06f34 | |||
| 9fd348318e | |||
| 40376baa79 | |||
| bcf74e463c | |||
| f1f820cd80 | |||
| 3af08a5d0f | |||
| 59308dd898 | |||
| 12bd03da73 | |||
| bd6496443e | |||
| 087535587c | |||
| 88ca02ea23 | |||
| d06f5679b3 | |||
| ee119fb534 | |||
| 3a02236862 | |||
| 6b49de76e4 | |||
| d54897807f | |||
| 79d77d16c6 | |||
| 20afedd3d1 | |||
| 13a1b32d6d | |||
| d5a7397744 | |||
| 07e43a1611 | |||
| cc3cf9dae5 | |||
| 56f6be1998 | |||
| d34212f82a | |||
| 7b4cdd2b3c | |||
| 2c3ed5612a | |||
| 57784ab74d | |||
| 12960892ac | |||
| de9bf3d2b7 | |||
| 5274168aa0 | |||
| febbcb3241 | |||
| 94cd3f867d | |||
| 6ee935ccb6 | |||
| 321c3fce49 |
@ -5,7 +5,7 @@ VITE_APP_TITLE = 新能源场站智慧运维平台
|
||||
VITE_APP_ENV = 'development'
|
||||
|
||||
# 开发环境
|
||||
VITE_APP_BASE_API = 'http://192.168.110.210:18899'
|
||||
VITE_APP_BASE_API = 'http://192.168.110.149:18899'
|
||||
|
||||
# 应用访问路径 例如使用前缀 /admin/
|
||||
VITE_APP_CONTEXT_PATH = '/'
|
||||
@ -13,6 +13,8 @@ VITE_APP_CONTEXT_PATH = '/'
|
||||
# 监控地址
|
||||
VITE_APP_MONITOR_ADMIN = 'http://localhost:9090/admin/applications'
|
||||
|
||||
# 地图接口地址
|
||||
VITE_APP_MAP_API = 'http://192.168.110.2:3456'
|
||||
# SnailJob 控制台地址
|
||||
VITE_APP_SNAILJOB_ADMIN = 'http://localhost:8800/snail-job'
|
||||
|
||||
|
||||
@ -14,7 +14,7 @@ VITE_APP_MONITOR_ADMIN = '/admin/applications'
|
||||
VITE_APP_SNAILJOB_ADMIN = '/snail-job'
|
||||
|
||||
# 生产环境
|
||||
VITE_APP_BASE_API = '/prod-api'
|
||||
VITE_APP_BASE_API = 'http://xny.yj-3d.com:18899'
|
||||
|
||||
# 是否在打包时开启压缩,支持 gzip 和 brotli
|
||||
VITE_BUILD_COMPRESS = gzip
|
||||
|
||||
@ -5,10 +5,6 @@
|
||||
"ComputedRef": true,
|
||||
"DirectiveBinding": true,
|
||||
"EffectScope": true,
|
||||
"ElLoading": true,
|
||||
"ElMessage": true,
|
||||
"ElMessageBox": true,
|
||||
"ElNotification": true,
|
||||
"ExtractDefaultPropTypes": true,
|
||||
"ExtractPropTypes": true,
|
||||
"ExtractPublicPropTypes": true,
|
||||
@ -318,6 +314,10 @@
|
||||
"watchThrottled": true,
|
||||
"watchTriggerable": true,
|
||||
"watchWithFilter": true,
|
||||
"whenever": true
|
||||
"whenever": true,
|
||||
"ElMessage": true,
|
||||
"ElLoading": true,
|
||||
"ElMessageBox": true,
|
||||
"ElNotification": true
|
||||
}
|
||||
}
|
||||
|
||||
25
index.html
@ -209,6 +209,31 @@
|
||||
<div class="load_title">正在加载系统资源,请耐心等待</div>
|
||||
</div>
|
||||
</div>
|
||||
<script src="/webrtc/jquery-1.12.2.min.js"></script>
|
||||
<script src="/sdk/YJEarth.min.js"></script>
|
||||
<script type="module" src="/src/main.ts"></script>
|
||||
<script>
|
||||
// 调用ue必要的设置,需要一起复制
|
||||
'object' != typeof ue || 'object' != typeof ue.interface
|
||||
? ('object' != typeof ue && (ue = {}),
|
||||
(ue.interface = {}),
|
||||
(ue.interface.broadcast = function (e, t) {
|
||||
if ('string' == typeof e) {
|
||||
var o = [e, ''];
|
||||
void 0 !== t && (o[1] = t);
|
||||
var n = encodeURIComponent(JSON.stringify(o));
|
||||
'object' == typeof history && 'function' == typeof history.pushState
|
||||
? (history.pushState({}, '', '#' + n), history.pushState({}, '', '#' + encodeURIComponent('[]')))
|
||||
: ((document.location.hash = n), (document.location.hash = encodeURIComponent('[]')));
|
||||
}
|
||||
}))
|
||||
: (function (e) {
|
||||
(ue.interface = {}),
|
||||
(ue.interface.broadcast = function (t, o) {
|
||||
'string' == typeof t && (void 0 !== o ? e.broadcast(t, JSON.stringify(o)) : e.broadcast(t, ''));
|
||||
});
|
||||
})(ue.interface),
|
||||
(ue5 = ue.interface.broadcast);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -47,7 +47,8 @@
|
||||
"vue-json-pretty": "2.4.0",
|
||||
"vue-router": "4.5.0",
|
||||
"vue-types": "6.0.0",
|
||||
"vxe-table": "4.13.7"
|
||||
"vxe-table": "4.13.7",
|
||||
"mitt": "^3.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@iconify/json": "^2.2.276",
|
||||
|
||||
BIN
public/assets/demo/Sunny.png
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
public/assets/demo/Weather.png
Normal file
|
After Width: | Height: | Size: 9.2 KiB |
BIN
public/assets/demo/attendance.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
public/assets/demo/avatar.png
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
BIN
public/assets/demo/back.png
Normal file
|
After Width: | Height: | Size: 46 KiB |
BIN
public/assets/demo/back2.png
Normal file
|
After Width: | Height: | Size: 419 KiB |
BIN
public/assets/demo/back3.png
Normal file
|
After Width: | Height: | Size: 344 KiB |
BIN
public/assets/demo/back4.png
Normal file
|
After Width: | Height: | Size: 428 KiB |
BIN
public/assets/demo/beUnder.png
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
BIN
public/assets/demo/bigRain.png
Normal file
|
After Width: | Height: | Size: 7.3 KiB |
BIN
public/assets/demo/bigSnow.png
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
BIN
public/assets/demo/cloudy.png
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
BIN
public/assets/demo/contract.png
Normal file
|
After Width: | Height: | Size: 4.3 KiB |
BIN
public/assets/demo/cooperation.png
Normal file
|
After Width: | Height: | Size: 241 KiB |
BIN
public/assets/demo/czzl.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
public/assets/demo/dayImg.png
Normal file
|
After Width: | Height: | Size: 136 KiB |
BIN
public/assets/demo/fengche.gif
Normal file
|
After Width: | Height: | Size: 326 KiB |
BIN
public/assets/demo/fengli.png
Normal file
|
After Width: | Height: | Size: 1.1 MiB |
BIN
public/assets/demo/fengli1.png
Normal file
|
After Width: | Height: | Size: 1.1 MiB |
BIN
public/assets/demo/fengshu.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
public/assets/demo/fog.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
public/assets/demo/glsc.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
public/assets/demo/haze.png
Normal file
|
After Width: | Height: | Size: 6.9 KiB |
BIN
public/assets/demo/manyCloud.png
Normal file
|
After Width: | Height: | Size: 9.7 KiB |
BIN
public/assets/demo/nightSunny.png
Normal file
|
After Width: | Height: | Size: 5.1 KiB |
BIN
public/assets/demo/performance.png
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
BIN
public/assets/demo/photovoltaic.png
Normal file
|
After Width: | Height: | Size: 2.3 MiB |
BIN
public/assets/demo/photovoltaic1.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
public/assets/demo/project1.png
Normal file
|
After Width: | Height: | Size: 619 KiB |
BIN
public/assets/demo/project2.png
Normal file
|
After Width: | Height: | Size: 372 KiB |
BIN
public/assets/demo/project3.png
Normal file
|
After Width: | Height: | Size: 615 KiB |
BIN
public/assets/demo/project4.png
Normal file
|
After Width: | Height: | Size: 555 KiB |
BIN
public/assets/demo/project5.png
Normal file
|
After Width: | Height: | Size: 591 KiB |
BIN
public/assets/demo/project6.png
Normal file
|
After Width: | Height: | Size: 436 KiB |
BIN
public/assets/demo/qiangdu.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
public/assets/demo/rain.png
Normal file
|
After Width: | Height: | Size: 1014 B |
BIN
public/assets/demo/rain1.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
public/assets/demo/rainSnow.png
Normal file
|
After Width: | Height: | Size: 7.2 KiB |
BIN
public/assets/demo/rain_show.png
Normal file
|
After Width: | Height: | Size: 993 B |
BIN
public/assets/demo/riluo.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
public/assets/demo/sandstorm.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
public/assets/demo/sb1.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
public/assets/demo/sb2.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
public/assets/demo/sb3.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
public/assets/demo/sb4.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
public/assets/demo/sbi1.png
Normal file
|
After Width: | Height: | Size: 9.5 KiB |
BIN
public/assets/demo/sbi2.png
Normal file
|
After Width: | Height: | Size: 107 KiB |
12
public/assets/demo/section.svg
Normal file
@ -0,0 +1,12 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="15" height="35" viewBox="0 0 15 35" fill="none">
|
||||
<rect x="1" y="0" width="14" height="35" fill="url(#linear_fill_216_187)" fill-opacity="1">
|
||||
</rect>
|
||||
<rect x="0" y="0" width="4" height="35" fill="#1DD6FF" >
|
||||
</rect>
|
||||
<defs>
|
||||
<linearGradient id="linear_fill_216_187" x1="1" y1="17.5" x2="13.62772" y2="17.5" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#43E2CB" stop-opacity="0.4" />
|
||||
<stop offset="1" stop-color="#43E2CB" stop-opacity="0" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 580 B |
BIN
public/assets/demo/shidu.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
public/assets/demo/sjjk.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
public/assets/demo/smallRain.png
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
BIN
public/assets/demo/smallSnow.png
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
BIN
public/assets/demo/subcontracting.png
Normal file
|
After Width: | Height: | Size: 8.1 KiB |
BIN
public/assets/demo/sunnyBig.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
public/assets/demo/sunny_s.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
public/assets/demo/thunderstorm.png
Normal file
|
After Width: | Height: | Size: 8.4 KiB |
BIN
public/assets/demo/todayConstruction.png
Normal file
|
After Width: | Height: | Size: 3.9 KiB |
BIN
public/assets/demo/totalCapacity.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
public/assets/demo/typical.png
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
BIN
public/assets/demo/wcl.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
public/assets/demo/windPower1.png
Normal file
|
After Width: | Height: | Size: 8.3 KiB |
BIN
public/assets/demo/ycl.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
public/assets/demo/yin.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
public/assets/demo/zgjxx.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
public/assets/demo/zzcl.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
public/assets/icon/MeasureAngle.png
Normal file
|
After Width: | Height: | Size: 348 B |
BIN
public/assets/icon/MeasureAzimuth.png
Normal file
|
After Width: | Height: | Size: 339 B |
BIN
public/assets/icon/PolyhedronObject.png
Normal file
|
After Width: | Height: | Size: 281 B |
BIN
public/assets/icon/annotation.png
Normal file
|
After Width: | Height: | Size: 238 B |
BIN
public/assets/icon/annotationAggregation.png
Normal file
|
After Width: | Height: | Size: 457 B |
BIN
public/assets/icon/areaMeasure.png
Normal file
|
After Width: | Height: | Size: 257 B |
BIN
public/assets/icon/attackArrow.png
Normal file
|
After Width: | Height: | Size: 339 B |
BIN
public/assets/icon/bim.png
Normal file
|
After Width: | Height: | Size: 906 B |
BIN
public/assets/icon/box.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
public/assets/icon/circle.png
Normal file
|
After Width: | Height: | Size: 327 B |
BIN
public/assets/icon/circleKen.png
Normal file
|
After Width: | Height: | Size: 796 B |
BIN
public/assets/icon/circleStatistics.png
Normal file
|
After Width: | Height: | Size: 428 B |
BIN
public/assets/icon/clear.png
Normal file
|
After Width: | Height: | Size: 412 B |
BIN
public/assets/icon/clearAnalysis.png
Normal file
|
After Width: | Height: | Size: 412 B |
BIN
public/assets/icon/clearGraffiti.png
Normal file
|
After Width: | Height: | Size: 597 B |
BIN
public/assets/icon/clearRoute.png
Normal file
|
After Width: | Height: | Size: 604 B |
BIN
public/assets/icon/clearTilesetClipping.png
Normal file
|
After Width: | Height: | Size: 626 B |
BIN
public/assets/icon/contour.png
Normal file
|
After Width: | Height: | Size: 460 B |
BIN
public/assets/icon/coorLocation.png
Normal file
|
After Width: | Height: | Size: 522 B |
BIN
public/assets/icon/coorMeasure.png
Normal file
|
After Width: | Height: | Size: 433 B |
BIN
public/assets/icon/curve.png
Normal file
|
After Width: | Height: | Size: 325 B |
BIN
public/assets/icon/cutFill.png
Normal file
|
After Width: | Height: | Size: 384 B |
BIN
public/assets/icon/cylinder.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
public/assets/icon/czml.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
public/assets/icon/diffuseScan.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
public/assets/icon/diffuseScan2.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
public/assets/icon/distanceMeasure.png
Normal file
|
After Width: | Height: | Size: 435 B |
BIN
public/assets/icon/ellipse.png
Normal file
|
After Width: | Height: | Size: 279 B |
BIN
public/assets/icon/ellipsoid.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
public/assets/icon/entityWall.png
Normal file
|
After Width: | Height: | Size: 193 B |