增加rtmp播放

This commit is contained in:
zh
2025-11-17 17:09:02 +08:00
parent 2c83d29ce6
commit 1e1725bf82
20 changed files with 3529 additions and 5896 deletions

View File

@ -95,9 +95,9 @@ nsis:
!addincludedir "D:\project\4.0qianduan\4.0\build" !addincludedir "D:\project\4.0qianduan\4.0\build"
!include "D:\project\4.0qianduan\4.0\installer.nsh" !include "D:\project\4.0qianduan\4.0\installer.nsh"
!include "C:\Users\MSI\AppData\Local\Temp\t-Ih3kq8\1-messages.nsh"
!include "C:\Users\MSI\AppData\Local\Temp\t-Ih3kq8\0-messages.nsh"
!addplugindir /x86-unicode "C:\Users\MSI\AppData\Local\electron-builder\Cache\nsis\nsis-resources-3.4.1\plugins\x86-unicode" !addplugindir /x86-unicode "C:\Users\MSI\AppData\Local\electron-builder\Cache\nsis\nsis-resources-3.4.1\plugins\x86-unicode"
!include "C:\Users\MSI\AppData\Local\Temp\t-BpPLoH\1-messages.nsh"
!include "C:\Users\MSI\AppData\Local\Temp\t-BpPLoH\0-messages.nsh"
Var newStartMenuLink Var newStartMenuLink
Var oldStartMenuLink Var oldStartMenuLink

5548
dist/electron/main.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -86,8 +86,8 @@ export default {
"1300", "1300",
"-y", "-y",
"730", "730",
"-rtsp_transport", // "-rtsp_transport",
"tcp", // "tcp",
obj.url, obj.url,
], ],
{ {
@ -99,6 +99,9 @@ export default {
console.log("out"); console.log("out");
console.log(err); console.log(err);
e.sender.send("openFFPlayOut", err); e.sender.send("openFFPlayOut", err);
if(obj.id) {
e.sender.send("openFFPlayOut_"+obj.id, err, obj.id);
}
}); });
/* .on("stdout", function(err, m) { /* .on("stdout", function(err, m) {

View File

@ -141,7 +141,7 @@ export default {
break break
}*/ }*/
let menusHeight = this.menuList.length * 65 + "px"; let menusHeight = this.menuList.length * 65 + "px";
let height = this.menuList.length * 65 + 30 + "px"; let height = this.menuList.length * 65 + 40 + "px";
$(".leftBox")[0].style.height = height; $(".leftBox")[0].style.height = height;
$(".left .menus")[0].style.height = menusHeight; $(".left .menus")[0].style.height = menusHeight;
@ -268,7 +268,7 @@ export default {
/* bottom: 10vh; /* bottom: 10vh;
padding: 35px 10px 15px 0;*/ padding: 35px 10px 15px 0;*/
height: 350px; height: 350px;
margin-top: 20px; margin-top: 25px;
//align-self: center; //align-self: center;
padding: 0 8px 0 5px; padding: 0 8px 0 5px;

View File

@ -1461,7 +1461,7 @@ const secondMenuFun = {
window.clicknum = 0; window.clicknum = 0;
let host = new URL(getIP()).host; let host = new URL(getIP()).host;
let routePlanning = new YJ.Obj.RoutePlanning(window.Earth1, { let routePlanning = new YJ.Obj.RoutePlanning(window.Earth1, {
gps: true, gps: false,
host, host,
}); });
routePlanning.Dialog.queryCallBack = async (v) => { routePlanning.Dialog.queryCallBack = async (v) => {

View File

@ -74,6 +74,11 @@ function leftClick(nodes) {
? node.detail.attribute.vr.content ? node.detail.attribute.vr.content
: [] : []
: [], : [],
rtmp: node.detail.attribute
? node.detail.attribute.rtmp
? node.detail.attribute.rtmp.content
: []
: [],
goods: node.detail.attribute goods: node.detail.attribute
? node.detail.attribute.goods ? node.detail.attribute.goods
? node.detail.attribute.goods.content ? node.detail.attribute.goods.content
@ -100,6 +105,7 @@ function leftClick(nodes) {
!node.detail.richTextContent && !node.detail.richTextContent &&
(!info.hrefs || !info.hrefs.length) && (!info.hrefs || !info.hrefs.length) &&
(!info.vr || !info.vr.length) && (!info.vr || !info.vr.length) &&
(!info.rtmp || !info.rtmp.length) &&
(!info.goods || !info.goods.length) && (!info.goods || !info.goods.length) &&
(!info.camera || !info.camera.length) (!info.camera || !info.camera.length)
) { ) {
@ -183,6 +189,41 @@ function leftClick(nodes) {
} }
//if (info.type == "vr") //if (info.type == "vr")
} }
if (info.rtmp && info.rtmp.length) {
let isExistent = false
let isNoExistent = false
for(let i=0;i<info.rtmp.length;i++) {
if(!window._winMap.has(info.rtmp[i].id)) {
isNoExistent = true
window._winMap.set(info.rtmp[i].id, info.rtmp[i].id);
$root_home.$sendElectronChanel("openFFPlay", {
id: info.rtmp[i].id,
url: info.rtmp[i].url,
name: info.rtmp[i].name,
});
$root_home.$recvElectronChanel(
"openFFPlayOut_"+info.rtmp[i].id,
(e, err, id) => {
if (err) {
$root_home.$message.error("视频流错误,打开失败!");
}
if(id) {
window._winMap.delete(id);
}
}
);
}
else {
isExistent = true
}
}
if(isNoExistent) {
$root_home.$message.success("视频流打开中请稍后");
}
if(isExistent) {
$root_home.$message.info("视频已打开");
}
}
} }
} }
} }

View File

@ -220,7 +220,7 @@
</div> </div>
</el-tab-pane> </el-tab-pane>
<!-- 头部设置 --> <!-- 头部设置 -->
<!-- <el-tab-pane :label="$t('headerTitles.Header.title')" class="headerTab"> <el-tab-pane :label="$t('headerTitles.Header.title')" class="headerTab">
<el-dialog :visible.sync="headerAddDialogVisible" :modal="false" :title="$t('headerTitles.Header.add')" <el-dialog :visible.sync="headerAddDialogVisible" :modal="false" :title="$t('headerTitles.Header.add')"
width="100%" style="width: 680px; height: 420px;" center :before-close="headerAddClose"> width="100%" style="width: 680px; height: 420px;" center :before-close="headerAddClose">
<div style="display: flex;align-items: center;margin: 10px 0;"> <div style="display: flex;align-items: center;margin: 10px 0;">
@ -297,7 +297,7 @@
:page-size="paginationHeader.pageSize" layout="total, sizes, prev, pager, next, jumper" :page-size="paginationHeader.pageSize" layout="total, sizes, prev, pager, next, jumper"
:total="paginationHeader.total"/> :total="paginationHeader.total"/>
</div> </div>
</el-tab-pane> --> </el-tab-pane>
<!-- 卫星状态 --> <!-- 卫星状态 -->
<!-- <el-tab-pane :label="$t('headerTitles.Satellite')"> <!-- <el-tab-pane :label="$t('headerTitles.Satellite')">
<div class="auth_info custom_scroll_bar content_h"> <div class="auth_info custom_scroll_bar content_h">

View File

@ -0,0 +1,19 @@
<svg xmlns="http://www.w3.org/2000/svg" width="110" height="615" viewBox="0 0 110 615">
<defs>
<style>
.cls-1, .cls-2 {
fill-rule: evenodd;
}
.cls-1 {
opacity: 0.5;
}
.cls-2 {
fill: aqua;
}
</style>
</defs>
<path id="bg" class="cls-1" d="M5.777,1h96.477l7.111,27.415V588.474L103.234,610.7H4.972L0,588.474V28.415Z"/>
<path id="形状_1" data-name="形状 1" class="cls-2" d="M27.359,610.951H5l-5-22.7V26.932l0.019-.088L5.811,0.572H30.528V2.235H7.152L1.668,27.112V588.07l4.675,21.217H27.359v1.664Zm77.643,0H82.645v-1.664h21.016l4.674-21.217V27.112L102.851,2.235H79.475V0.572h24.718L110,26.932V588.25l-0.019.089Zm-4.107-6.332H77.307v-1.331H99.761L104,588.216V27.185L98.924,6.643H10.679L6.006,27.185V561.959H4.671V27.185H4.688L9.617,5.313H99.9l5.432,21.872-0.008,561.193ZM33.472,0h1.891L33.981,2.734H32.074Zm4.29,0h1.891L38.271,2.734H36.364Zm4.29,0h1.892L42.561,2.734H40.654Zm4.29,0h1.892L46.852,2.734H44.944Zm4.29,0h1.891L51.142,2.734H49.234Zm4.29,0h1.892L55.432,2.734H53.525Zm4.29,0H61.1L59.722,2.734H57.815ZM63.5,0h1.891L64.012,2.734H62.1Zm4.29,0h1.891L68.3,2.734H66.395Zm4.29,0h1.892L72.592,2.734H70.685Zm4.29,0h1.892L76.882,2.734H74.975ZM48.862,16V15.9H38.812V11.647h9.95V16h0.1v0h0.1v-4.55H38.613V16.1H48.961V16h-0.1ZM81.5,16V15.9H71.451V11.647H81.4V16h0.1v0h0.1v-4.55H71.251V16.1H81.6V16H81.5Zm-21.759.254H49.592V11.294H59.741v4.958Zm10.879,0H60.472V11.294H70.62v4.958Zm21.759,0H82.23V11.294H92.379v4.958ZM20.3,29.308A10.544,10.544,0,1,1,30.873,18.764,10.57,10.57,0,0,1,20.3,29.308Zm0-20.138a9.595,9.595,0,1,0,9.621,9.595A9.619,9.619,0,0,0,20.3,9.17Zm0,16.44a6.845,6.845,0,1,1,6.864-6.845A6.862,6.862,0,0,1,20.3,25.609Zm0-13.216a6.371,6.371,0,1,0,6.388,6.371A6.387,6.387,0,0,0,20.3,12.394Zm4.263,4.852a2.736,2.736,0,1,1-2.736-2.729A2.733,2.733,0,0,1,24.563,17.245Zm-5.68,7.149a1.649,1.649,0,1,1,1.654-1.65A1.654,1.654,0,0,1,18.884,24.394Zm0-2.824a1.175,1.175,0,1,0,1.178,1.175A1.178,1.178,0,0,0,18.884,21.57ZM16.608,604.192a7.5,7.5,0,1,1,7.519-7.5A7.517,7.517,0,0,1,16.608,604.192Zm0-14.321a6.823,6.823,0,1,0,6.842,6.823A6.841,6.841,0,0,0,16.608,589.871Zm0,11.691a4.868,4.868,0,1,1,4.881-4.868A4.881,4.881,0,0,1,16.608,601.562Zm0-9.4a4.531,4.531,0,1,0,4.543,4.53A4.542,4.542,0,0,0,16.608,592.164Zm3.032,3.45a1.946,1.946,0,1,1-1.946-1.941A1.944,1.944,0,0,1,19.64,595.614ZM15.6,600.7a1.173,1.173,0,1,1,1.176-1.173A1.176,1.176,0,0,1,15.6,600.7Zm0-2.009a0.836,0.836,0,1,0,.838.836A0.838,0.838,0,0,0,15.6,598.689ZM10.619,586.03h2.238l3.552-3.382,3.868,3.382H22.6L16.408,580.6Zm5.79-9.49-5.79,5.425h2.238l3.552-3.381,3.868,3.381H22.6l-6.189-5.425m0-4.065-5.79,5.426h2.238l3.552-3.382,3.868,3.382H22.6l-6.189-5.426m0-4.064-5.79,5.426h2.238l3.552-3.383,3.868,3.383H22.6l-6.189-5.426m0-4.065-5.79,5.426h2.238l3.552-3.382,3.868,3.382H22.6l-6.189-5.426m12.586,42.485v1.5l2.278,1.952-2.277,2.165V614l3.654-3.719Zm3.475,0v1.5l2.278,1.952-2.278,2.165V614l3.654-3.719Zm3.475,0v1.5l2.277,1.952-2.277,2.165V614l3.654-3.719Zm3.475,0v1.5l2.277,1.952-2.277,2.165V614l3.654-3.719Zm3.474,0v1.5l2.277,1.952-2.277,2.165V614l3.654-3.719Zm3.475,0v1.5l2.278,1.952-2.278,2.165V614l3.654-3.719Zm3.475,0v1.5l2.277,1.952-2.277,2.165V614l3.654-3.719Zm3.475,0v1.5l2.277,1.952-2.277,2.165V614l3.654-3.719Zm3.475,0v1.5l2.277,1.952-2.277,2.165V614l3.654-3.719Zm3.475,0v1.5l2.277,1.952-2.277,2.165V614l3.654-3.719Zm3.475,0v1.5l2.277,1.952-2.277,2.165V614l3.654-3.719Zm3.474,0v1.5l2.277,1.952-2.277,2.165V614l3.654-3.719Zm3.475,0v1.5l2.277,1.952-2.277,2.165V614l3.654-3.719Zm3.475,0v1.5l2.278,1.952-2.278,2.165V614l3.654-3.719Zm3.475,0v1.5l2.278,1.952-2.278,2.165V614l3.654-3.719Z"/>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -249,7 +249,7 @@
</template> </template>
<template v-else> --> <template v-else> -->
<div id="goodSearchEchart"></div> <div id="goodSearchEchart"></div>
<!-- <div style="height: 60px;position: relative;"> <div style="height: 60px;position: relative;">
<el-button class="export-btn" style=" <el-button class="export-btn" style="
background: rgba(var(--color-sdk-base-rgb), 0.2); background: rgba(var(--color-sdk-base-rgb), 0.2);
border: 1px solid rgba(var(--color-sdk-base-rgb), 0.5); border: 1px solid rgba(var(--color-sdk-base-rgb), 0.5);
@ -258,7 +258,7 @@
right: 20px; right: 20px;
bottom: 20px; bottom: 20px;
">导出Excel</el-button> ">导出Excel</el-button>
</div> --> </div>
<!-- </template> --> <!-- </template> -->
</div> </div>
</div> </div>

File diff suppressed because one or more lines are too long

View File

@ -426,7 +426,8 @@
} }
.YJ-custom-base-dialog>.content .attribute .attribute-content-link .link_add_btn, .YJ-custom-base-dialog>.content .attribute .attribute-content-link .link_add_btn,
.YJ-custom-base-dialog>.content .attribute .attribute-content-vr .vr_add_btn { .YJ-custom-base-dialog>.content .attribute .attribute-content-vr .vr_add_btn,
.YJ-custom-base-dialog>.content .attribute .attribute-content-rtmp .rtmp_add_btn {
display: inline-block; display: inline-block;
width: 20px; width: 20px;
height: 20px; height: 20px;
@ -438,12 +439,14 @@
} }
.YJ-custom-base-dialog>.content .attribute .attribute-content-link .link_add, .YJ-custom-base-dialog>.content .attribute .attribute-content-link .link_add,
.YJ-custom-base-dialog>.content .attribute .attribute-content-vr .vr_add { .YJ-custom-base-dialog>.content .attribute .attribute-content-vr .vr_add,
.YJ-custom-base-dialog>.content .attribute .attribute-content-rtmp .rtmp_add {
padding-right: 30px; padding-right: 30px;
} }
.YJ-custom-base-dialog>.content .attribute .attribute-content-link .tr .td:last-child button:first-child, .YJ-custom-base-dialog>.content .attribute .attribute-content-link .tr .td:last-child button:first-child,
.YJ-custom-base-dialog>.content .attribute .attribute-content-vr .tr .td:last-child button:first-child { .YJ-custom-base-dialog>.content .attribute .attribute-content-vr .tr .td:last-child button:first-child,
.YJ-custom-base-dialog>.content .attribute .attribute-content-rtmp .tr .td:last-child button:first-child {
margin-right: 5px; margin-right: 5px;
} }
@ -477,9 +480,6 @@
border-top: none; border-top: none;
} }
.YJ-custom-base-dialog>.content .attribute-content-link .table .tr,
.YJ-custom-base-dialog>.content .attribute-content-vr .table .tr {}
.YJ-custom-base-dialog>.content .table .table-empty { .YJ-custom-base-dialog>.content .table .table-empty {
display: flex; display: flex;
align-items: center; align-items: center;
@ -535,7 +535,8 @@
} }
.YJ-custom-base-dialog>.content .attribute-content-link .table .table-body, .YJ-custom-base-dialog>.content .attribute-content-link .table .table-body,
.YJ-custom-base-dialog>.content .attribute-content-vr .table .table-body { .YJ-custom-base-dialog>.content .attribute-content-vr .table .table-body,
.YJ-custom-base-dialog>.content .attribute-content-rtmp .table .table-body {
max-height: 172px; max-height: 172px;
} }
@ -578,7 +579,9 @@
.YJ-custom-base-dialog>.content .attribute-content-link .table .tr .th:nth-child(1), .YJ-custom-base-dialog>.content .attribute-content-link .table .tr .th:nth-child(1),
.YJ-custom-base-dialog>.content .attribute-content-link .table .tr .td:nth-child(1), .YJ-custom-base-dialog>.content .attribute-content-link .table .tr .td:nth-child(1),
.YJ-custom-base-dialog>.content .attribute-content-vr .table .tr .th:nth-child(1), .YJ-custom-base-dialog>.content .attribute-content-vr .table .tr .th:nth-child(1),
.YJ-custom-base-dialog>.content .attribute-content-vr .table .tr .td:nth-child(1) { .YJ-custom-base-dialog>.content .attribute-content-vr .table .tr .td:nth-child(1),
.YJ-custom-base-dialog>.content .attribute-content-rtmp .table .tr .th:nth-child(1),
.YJ-custom-base-dialog>.content .attribute-content-rtmp .table .tr .td:nth-child(1) {
width: 164px; width: 164px;
flex: 0 0 164px; flex: 0 0 164px;
} }
@ -586,7 +589,9 @@
.YJ-custom-base-dialog>.content .attribute-content-link .table .tr .th:nth-child(2), .YJ-custom-base-dialog>.content .attribute-content-link .table .tr .th:nth-child(2),
.YJ-custom-base-dialog>.content .attribute-content-link .table .tr .td:nth-child(2), .YJ-custom-base-dialog>.content .attribute-content-link .table .tr .td:nth-child(2),
.YJ-custom-base-dialog>.content .attribute-content-vr .table .tr .th:nth-child(2), .YJ-custom-base-dialog>.content .attribute-content-vr .table .tr .th:nth-child(2),
.YJ-custom-base-dialog>.content .attribute-content-vr .table .tr .td:nth-child(2) { .YJ-custom-base-dialog>.content .attribute-content-vr .table .tr .td:nth-child(2),
.YJ-custom-base-dialog>.content .attribute-content-rtmp .table .tr .th:nth-child(2),
.YJ-custom-base-dialog>.content .attribute-content-rtmp .table .tr .td:nth-child(2) {
width: 226px; width: 226px;
flex: 0 0 226px; flex: 0 0 226px;
} }
@ -594,14 +599,17 @@
.YJ-custom-base-dialog>.content .attribute-content-link .table .tr .th:nth-child(3), .YJ-custom-base-dialog>.content .attribute-content-link .table .tr .th:nth-child(3),
.YJ-custom-base-dialog>.content .attribute-content-link .table .tr .td:nth-child(3), .YJ-custom-base-dialog>.content .attribute-content-link .table .tr .td:nth-child(3),
.YJ-custom-base-dialog>.content .attribute-content-vr .table .tr .th:nth-child(3), .YJ-custom-base-dialog>.content .attribute-content-vr .table .tr .th:nth-child(3),
.YJ-custom-base-dialog>.content .attribute-content-vr .table .tr .td:nth-child(3) { .YJ-custom-base-dialog>.content .attribute-content-vr .table .tr .td:nth-child(3),
.YJ-custom-base-dialog>.content .attribute-content-rtmp .table .tr .th:nth-child(3),
.YJ-custom-base-dialog>.content .attribute-content-rtmp .table .tr .td:nth-child(3) {
flex: 0 0 150px; flex: 0 0 150px;
width: 150px; width: 150px;
justify-content: center; justify-content: center;
} }
.YJ-custom-base-dialog>.content .attribute-content-link .table .tr .td .input-group .input, .YJ-custom-base-dialog>.content .attribute-content-link .table .tr .td .input-group .input,
.YJ-custom-base-dialog>.content .attribute-content-vr .table .tr .td .input-group .input { .YJ-custom-base-dialog>.content .attribute-content-vr .table .tr .td .input-group .input,
.YJ-custom-base-dialog>.content .attribute-content-rtmp .table .tr .td .input-group .input {
border-radius: 5px 0 0 5px; border-radius: 5px 0 0 5px;
} }

View File

@ -1,104 +0,0 @@
2025-11-03 13:45:03.226 [INFO] {4c3d69a2e86874181a57045d04d8c678} gps.go:101: 查询串口数据
2025-11-03 13:45:03.227 [INFO] {60e549c9e86874181b57045d8fd7a65e} gps.go:105: 没有查询到串口数据
2025-11-03 13:45:03.254 [ERRO] {6c24e4cae86874181c57045d90fa6869} globe.go:279: 资源不存在:Z:/00_4.0测试数据/渝中区.mbtiles
Stack:
1. yjearth4.0/globe.SaveError
E:/sourceCode/单机版-网络版共享后台/yjearth4/globe/globe.go:279
2. yjearth4.0/api/v1/source/mbt.OpenMbt
E:/sourceCode/单机版-网络版共享后台/yjearth4/api/v1/source/mbt/mbt.go:217
3. yjearth4.0/api/v1/source.opendata
E:/sourceCode/单机版-网络版共享后台/yjearth4/api/v1/source/source.go:197
2025-11-03 13:45:03.254 [ERRO] {6c24e4cae86874181d57045d5f8115a2} globe.go:279: 资源不存在:Z:/00_4.0测试数据/工业园区.clt
Stack:
1. yjearth4.0/globe.SaveError
E:/sourceCode/单机版-网络版共享后台/yjearth4/globe/globe.go:279
2. yjearth4.0/api/v1/source/clt.OpenClt
E:/sourceCode/单机版-网络版共享后台/yjearth4/api/v1/source/clt/clt.go:199
3. yjearth4.0/api/v1/source.opendata
E:/sourceCode/单机版-网络版共享后台/yjearth4/api/v1/source/source.go:187
2025-11-03 13:45:03.255 [ERRO] {40dcf3cae86874181e57045da06e71e2} globe.go:279: 资源不存在:Z:/00_4.0测试数据/渝中区.mbtiles
Stack:
1. yjearth4.0/globe.SaveError
E:/sourceCode/单机版-网络版共享后台/yjearth4/globe/globe.go:279
2. yjearth4.0/api/v1/source.opendata
E:/sourceCode/单机版-网络版共享后台/yjearth4/api/v1/source/source.go:198
2025-11-03 13:45:03.255 [ERRO] {40dcf3cae86874181f57045d0a62b5da} globe.go:279: 资源不存在:Z:/00_4.0测试数据/工业园区.clt
Stack:
1. yjearth4.0/globe.SaveError
E:/sourceCode/单机版-网络版共享后台/yjearth4/globe/globe.go:279
2. yjearth4.0/api/v1/source.opendata
E:/sourceCode/单机版-网络版共享后台/yjearth4/api/v1/source/source.go:188
2025-11-03 13:45:03.255 [ERRO] {40dcf3cae86874182057045d1b3ebf72} globe.go:279: 资源文件异常Z:/00_4.0测试数据/地形.pak
Stack:
1. yjearth4.0/globe.SaveError
E:/sourceCode/单机版-网络版共享后台/yjearth4/globe/globe.go:279
2. yjearth4.0/api/v1/source/pak.OpenPak
E:/sourceCode/单机版-网络版共享后台/yjearth4/api/v1/source/pak/pak.go:154
3. yjearth4.0/api/v1/source.opendata
E:/sourceCode/单机版-网络版共享后台/yjearth4/api/v1/source/source.go:206
2025-11-03 13:45:03.255 [ERRO] {eca0fbcae86874182157045d0b2e2101} globe.go:279: 资源文件异常Z:/00_4.0测试数据/地形.pak
Stack:
1. yjearth4.0/globe.SaveError
E:/sourceCode/单机版-网络版共享后台/yjearth4/globe/globe.go:279
2. yjearth4.0/api/v1/source.opendata
E:/sourceCode/单机版-网络版共享后台/yjearth4/api/v1/source/source.go:207
2025-11-03 13:45:24.096 [ERRO] {3c8826a5ed6874182b57045da7185477} globe.go:279: 资源不存在:Z:/00_4.0测试数据/工业园区.clt
Stack:
1. yjearth4.0/globe.SaveError
E:/sourceCode/单机版-网络版共享后台/yjearth4/globe/globe.go:279
2. yjearth4.0/api/v1/source.LoadSource.LoadCompactService
E:/sourceCode/单机版-网络版共享后台/yjearth4/api/v1/source/source.go:118
3. yjearth4.0/midware.CheckAuth
E:/sourceCode/单机版-网络版共享后台/yjearth4/midware/midware.go:64
2025-11-03 14:08:47.465 [ERRO] {b8ad7864346a74187858045d4c3ce9a2} globe.go:279: 资源不存在:Z:/00_4.0测试数据/工业园区.clt
Stack:
1. yjearth4.0/globe.SaveError
E:/sourceCode/单机版-网络版共享后台/yjearth4/globe/globe.go:279
2. yjearth4.0/api/v1/source.LoadSource.LoadCompactService
E:/sourceCode/单机版-网络版共享后台/yjearth4/api/v1/source/source.go:118
3. yjearth4.0/midware.CheckAuth
E:/sourceCode/单机版-网络版共享后台/yjearth4/midware/midware.go:64
2025-11-03 14:27:08.212 [ERRO] {7cab25ae346b74188658045de1e40565} globe.go:279: 资源不存在:Z:/00_4.0测试数据/工业园区.clt
Stack:
1. yjearth4.0/globe.SaveError
E:/sourceCode/单机版-网络版共享后台/yjearth4/globe/globe.go:279
2. yjearth4.0/api/v1/source.LoadSource.LoadCompactService
E:/sourceCode/单机版-网络版共享后台/yjearth4/api/v1/source/source.go:118
3. yjearth4.0/midware.CheckAuth
E:/sourceCode/单机版-网络版共享后台/yjearth4/midware/midware.go:64
2025-11-03 14:28:03.437 [ERRO] {08e9c389416b74189458045dcf11718b} globe.go:279: 资源不存在:Z:/00_4.0测试数据/工业园区.clt
Stack:
1. yjearth4.0/globe.SaveError
E:/sourceCode/单机版-网络版共享后台/yjearth4/globe/globe.go:279
2. yjearth4.0/api/v1/source.LoadSource.LoadCompactService
E:/sourceCode/单机版-网络版共享后台/yjearth4/api/v1/source/source.go:118
3. yjearth4.0/midware.CheckAuth
E:/sourceCode/单机版-网络版共享后台/yjearth4/midware/midware.go:64
2025-11-03 14:29:15.335 [ERRO] {3c194147526b7418a258045de4fec137} globe.go:279: 资源不存在:Z:/00_4.0测试数据/工业园区.clt
Stack:
1. yjearth4.0/globe.SaveError
E:/sourceCode/单机版-网络版共享后台/yjearth4/globe/globe.go:279
2. yjearth4.0/api/v1/source.LoadSource.LoadCompactService
E:/sourceCode/单机版-网络版共享后台/yjearth4/api/v1/source/source.go:118
3. yjearth4.0/midware.CheckAuth
E:/sourceCode/单机版-网络版共享后台/yjearth4/midware/midware.go:64
2025-11-03 14:30:14.511 [ERRO] {0c185c0e606b7418b058045d23de14b8} globe.go:279: 资源不存在:Z:/00_4.0测试数据/工业园区.clt
Stack:
1. yjearth4.0/globe.SaveError
E:/sourceCode/单机版-网络版共享后台/yjearth4/globe/globe.go:279
2. yjearth4.0/api/v1/source.LoadSource.LoadCompactService
E:/sourceCode/单机版-网络版共享后台/yjearth4/api/v1/source/source.go:118
3. yjearth4.0/midware.CheckAuth
E:/sourceCode/单机版-网络版共享后台/yjearth4/midware/midware.go:64

View File

@ -1,2 +0,0 @@
2025-11-07 10:13:34.244 [INFO] {cca1c4abb09775182e94f072c3cf7d27} gps.go:101: 查询串口数据
2025-11-07 10:13:34.244 [INFO] {dc7b39acb09775182f94f07215ca183f} gps.go:105: 没有查询到串口数据

View File

@ -0,0 +1,34 @@
2025-11-17 11:20:35.299 [INFO] {1814419226ad78185ec13007a5818672} gps.go:101: 查询串口数据
2025-11-17 11:20:35.300 [INFO] {9805e89226ad78185fc13007db190a31} gps.go:105: 没有查询到串口数据
2025-11-17 11:32:37.841 [INFO] {886aa5cdcead7818c7fd28493bab92bf} gps.go:101: 查询串口数据
2025-11-17 11:32:37.841 [INFO] {6c7bb5cdcead7818c8fd2849c1271825} gps.go:105: 没有查询到串口数据
2025-11-17 11:52:11.329 [INFO] {84000407e0ae7818195d2b0ede1ce77d} gps.go:101: 查询串口数据
2025-11-17 11:52:11.330 [INFO] {40a31307e0ae78181a5d2b0e8217a89d} gps.go:105: 没有查询到串口数据
2025-11-17 11:53:34.321 [INFO] {9026bc59f3ae7818ca9c6a0d4301b132} gps.go:101: 查询串口数据
2025-11-17 11:53:34.322 [INFO] {7027cc59f3ae7818cb9c6a0db9b2ef27} gps.go:105: 没有查询到串口数据
2025-11-17 11:55:42.469 [INFO] {b49eef2f11af78184bba5302e7224fd8} gps.go:101: 查询串口数据
2025-11-17 11:55:42.470 [INFO] {8c79003011af78184cba53022b82abf5} gps.go:105: 没有查询到串口数据
2025-11-17 12:28:45.362 [INFO] {bc8a8ddddeb078188ea0f31188baa452} gps.go:101: 查询串口数据
2025-11-17 12:28:45.363 [INFO] {085da6dddeb078188fa0f311e087246b} gps.go:105: 没有查询到串口数据
2025-11-17 12:28:51.390 [INFO] {44c0df44e0b0781822966a2c9ed6cd49} gps.go:101: 查询串口数据
2025-11-17 12:28:51.391 [INFO] {086aef44e0b0781823966a2ca4f6a744} gps.go:105: 没有查询到串口数据
2025-11-17 12:28:56.941 [INFO] {d801b48fe1b07818feafd23c75dcab79} gps.go:101: 查询串口数据
2025-11-17 12:28:56.941 [INFO] {dce3c38fe1b07818ffafd23cd1a2e610} gps.go:105: 没有查询到串口数据
2025-11-17 12:29:00.273 [INFO] {04605356e2b0781821c9f876c870f925} gps.go:101: 查询串口数据
2025-11-17 12:29:00.273 [INFO] {f0136356e2b0781822c9f876609f7c8e} gps.go:105: 没有查询到串口数据
2025-11-17 12:29:05.216 [INFO] {4802ff7ce3b07818c5417032936c28fb} gps.go:101: 查询串口数据
2025-11-17 12:29:05.217 [INFO] {dccc0e7de3b07818c6417032f26641fb} gps.go:105: 没有查询到串口数据
2025-11-17 12:29:10.581 [INFO] {9425b8bce4b078182ebe5d0468744467} gps.go:101: 查询串口数据
2025-11-17 12:29:10.581 [INFO] {20e9c7bce4b078182fbe5d04731229e9} gps.go:105: 没有查询到串口数据
2025-11-17 12:29:52.144 [INFO] {8c58176aeeb0781824873c47e7cf5787} gps.go:101: 查询串口数据
2025-11-17 12:29:52.145 [INFO] {584e286aeeb0781825873c4780db258b} gps.go:105: 没有查询到串口数据
2025-11-17 12:35:15.220 [INFO] {b420f8a239b178182b5eaa74b2703b88} gps.go:101: 查询串口数据
2025-11-17 12:35:15.221 [INFO] {90ad07a339b178182c5eaa74ca070dbb} gps.go:105: 没有查询到串口数据
2025-11-17 12:42:08.725 [INFO] {244fb7e999b17818cce5315c2a71ab9e} gps.go:101: 查询串口数据
2025-11-17 12:42:08.726 [INFO] {cceecee999b17818cde5315c4a990fdb} gps.go:105: 没有查询到串口数据
2025-11-17 13:37:02.964 [INFO] {441cb4e998b478188dc493667b05b726} gps.go:101: 查询串口数据
2025-11-17 13:37:02.965 [INFO] {b0dcc3e998b478188ec4936695f1957f} gps.go:105: 没有查询到串口数据
2025-11-17 14:23:04.299 [INFO] {8c1c13d61bb778181ba5554cbfa91231} gps.go:101: 查询串口数据
2025-11-17 14:23:04.300 [INFO] {d8c22ad61bb778181ca5554c3ead4581} gps.go:105: 没有查询到串口数据
2025-11-17 15:24:08.027 [INFO] {843a11dd70ba781889449c2cce55dda8} gps.go:101: 查询串口数据
2025-11-17 15:24:08.029 [INFO] {344470dd70ba78188a449c2c06fc1713} gps.go:105: 没有查询到串口数据