Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
S
SatelliteDigital
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
nijiawen
SatelliteDigital
Commits
85caa1f2
提交
85caa1f2
authored
1月 06, 2026
作者:
周文艺
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
最新回调
上级
2c707e92
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
38 行增加
和
11 行删除
+38
-11
DataScreenServer
DataScreenServer
+0
-0
hotMap.vue
src/pages/all/components/hotMapComponents/hotMap.vue
+3
-3
index.vue
src/pages/all/index.vue
+3
-3
timers.vue
src/pages/footer/component/timers.vue
+32
-5
没有找到文件。
DataScreenServer
deleted
100644 → 0
浏览文件 @
2c707e92
File deleted
src/pages/all/components/hotMapComponents/hotMap.vue
浏览文件 @
85caa1f2
...
@@ -455,9 +455,9 @@ function initChart() {
...
@@ -455,9 +455,9 @@ function initChart() {
}
}
},
},
tooltip
:
{
tooltip
:
{
formatter
:
function
(
params
)
{
//
formatter: function(params) {
return
`容量:
${
params
.
data
[
2
].
toFixed
(
1
)}
`
;
//
return `容量: ${params.data[2].toFixed(1)}`;
},
//
},
backgroundColor
:
'rgba(0, 0, 0, 0.7)'
,
backgroundColor
:
'rgba(0, 0, 0, 0.7)'
,
borderColor
:
'#444'
,
borderColor
:
'#444'
,
textStyle
:
{
textStyle
:
{
...
...
src/pages/all/index.vue
浏览文件 @
85caa1f2
...
@@ -168,7 +168,7 @@ watch(useAppStoreInstance, () => {
...
@@ -168,7 +168,7 @@ watch(useAppStoreInstance, () => {
document
.
getElementById
(
'footer-content-up'
).
style
.
bottom
=
'0px'
document
.
getElementById
(
'footer-content-up'
).
style
.
bottom
=
'0px'
document
.
getElementById
(
'all_footer'
).
style
.
width
=
`calc(100% -
${
asideWidth
.
value
}
-
${
asideWidth
.
value
}
)`
document
.
getElementById
(
'all_footer'
).
style
.
width
=
`calc(100% -
${
asideWidth
.
value
}
-
${
asideWidth
.
value
}
)`
// document.getElementById('all_footer').style.bottom = '10px'
// document.getElementById('all_footer').style.bottom = '10px'
// document.getElementById('control_panel
').style.right = '335px'
document
.
getElementById
(
'control_panel1
'
).
style
.
right
=
'335px'
// document.getElementById('search_panel').style.left = '395px'
// document.getElementById('search_panel').style.left = '395px'
document
.
getElementById
(
'two_footer'
).
style
.
bottom
=
'100px'
document
.
getElementById
(
'two_footer'
).
style
.
bottom
=
'100px'
...
@@ -213,7 +213,7 @@ const currSeriveSize = () => {
...
@@ -213,7 +213,7 @@ const currSeriveSize = () => {
}
}
onActivated
(()
=>
{
onActivated
(()
=>
{
console
.
log
(
"111111111111114onActivated"
,
useAppStoreInstance
.
islegendShow
,
useAppStoreInstance
.
isTimeLineShow
);
//
console.log("111111111111114onActivated",useAppStoreInstance.islegendShow,useAppStoreInstance.isTimeLineShow);
controls
.
value
=
[
controls
.
value
=
[
{
label
:
'卫星轨道'
,
enabled
:
useAppStoreInstance
.
issatelliteOrbitShow
,
disabled
:
false
},
{
label
:
'卫星轨道'
,
enabled
:
useAppStoreInstance
.
issatelliteOrbitShow
,
disabled
:
false
},
{
label
:
'卫星波束'
,
enabled
:
useAppStoreInstance
.
issatelliteBeamShow
,
disabled
:
false
},
{
label
:
'卫星波束'
,
enabled
:
useAppStoreInstance
.
issatelliteBeamShow
,
disabled
:
false
},
...
@@ -226,7 +226,7 @@ onActivated(() => {
...
@@ -226,7 +226,7 @@ onActivated(() => {
onMounted
(()
=>
{
onMounted
(()
=>
{
checkScreenSize
();
checkScreenSize
();
window
.
addEventListener
(
'resize'
,
checkScreenSize
);
window
.
addEventListener
(
'resize'
,
checkScreenSize
);
console
.
log
(
"111111111111114ononMounted"
,
useAppStoreInstance
.
islegendShow
,
useAppStoreInstance
.
isTimeLineShow
);
//
console.log("111111111111114ononMounted",useAppStoreInstance.islegendShow,useAppStoreInstance.isTimeLineShow);
controls
.
value
=
[
controls
.
value
=
[
{
label
:
'卫星轨道'
,
enabled
:
useAppStoreInstance
.
issatelliteOrbitShow
,
disabled
:
false
},
{
label
:
'卫星轨道'
,
enabled
:
useAppStoreInstance
.
issatelliteOrbitShow
,
disabled
:
false
},
{
label
:
'卫星波束'
,
enabled
:
useAppStoreInstance
.
issatelliteBeamShow
,
disabled
:
false
},
{
label
:
'卫星波束'
,
enabled
:
useAppStoreInstance
.
issatelliteBeamShow
,
disabled
:
false
},
...
...
src/pages/footer/component/timers.vue
浏览文件 @
85caa1f2
...
@@ -229,6 +229,27 @@ const wssOpenHandle = (data) => {
...
@@ -229,6 +229,27 @@ const wssOpenHandle = (data) => {
};
};
const
wssResponeFlag_isSuccess
=
ref
(
true
);
const
wssResponeFlag_isSuccess
=
ref
(
true
);
const
loading
=
ref
(
''
);
const
loading
=
ref
(
''
);
const
compareTime
=
(
time1
,
time2
)
=>
{
console
.
log
(
'compareTime----------'
,
time1
,
time2
);
// 将时间字符串转换为 Date 对象
const
date1
=
new
Date
(
time1
);
const
date2
=
new
Date
(
time2
);
// 检查时间是否有效
if
(
isNaN
(
date1
.
getTime
())
||
isNaN
(
date2
.
getTime
()))
{
throw
new
Error
(
"无效的时间格式"
);
}
// 比较时间戳
if
(
date1
>=
date2
)
{
return
true
;
}
else
{
return
false
;
}
};
const
preTimeWindowEnd
=
ref
(
null
);
const
wssMessageHandle
=
()
=>
{
const
wssMessageHandle
=
()
=>
{
// let WwflagToNext = 0
// let WwflagToNext = 0
wss
.
onmessage
=
(
event
)
=>
{
wss
.
onmessage
=
(
event
)
=>
{
...
@@ -243,11 +264,9 @@ const wssMessageHandle = () => {
...
@@ -243,11 +264,9 @@ const wssMessageHandle = () => {
})
})
// setTimeout(() => {
// setTimeout(() => {
// wssOpenHandle({
// wssOpenHandle({
// type: "confirm",
// type: "confirm",
// taskCode: String(taskCode_everyChange.value),
// taskCode: String(taskCode_everyChange.value),
// clientType: "ue"
// clientType: "ue"
// })
// })
// }, 2000);
// }, 2000);
...
@@ -316,6 +335,14 @@ const wssMessageHandle = () => {
...
@@ -316,6 +335,14 @@ const wssMessageHandle = () => {
wssResponeFlag_isSuccess
.
value
=
true
;
wssResponeFlag_isSuccess
.
value
=
true
;
// message.success("同步时间轴数据状态成功!!!");
// message.success("同步时间轴数据状态成功!!!");
// console.log('我是history的数据:', data);
// console.log('我是history的数据:', data);
console
.
log
(
"compareTime*******"
,
compareTime
(
formatDateTime
(
selectedEndTime
.
value
),
data
.
timeWindowEnd
));
// preTimeWindowEnd.value = new Date(formatDateTime(selectedStartTime.value))
if
(
data
.
timeWindowEnd
)
{
preTimeWindowEnd
.
value
=
data
.
timeWindowEnd
;
}
if
(
compareTime
(
formatDateTime
(
selectedEndTime
.
value
),
preTimeWindowEnd
.
value
))
{
stopAutoPlay
();
}
}
}
if
(
data
.
type
===
'EndProcess'
)
{
if
(
data
.
type
===
'EndProcess'
)
{
useAppStoreInstance
.
setglobalStartWss
(
false
)
useAppStoreInstance
.
setglobalStartWss
(
false
)
...
@@ -325,9 +352,9 @@ const wssMessageHandle = () => {
...
@@ -325,9 +352,9 @@ const wssMessageHandle = () => {
}
}
// 处理服务器返回的数据,减去1000毫秒延迟,防止setTimeout和返回数据重叠在一个时间点上
// 处理服务器返回的数据,减去1000毫秒延迟,防止setTimeout和返回数据重叠在一个时间点上
flagToNext
=
setTimeout
(()
=>
{
//
flagToNext = setTimeout(() => {
stopAutoPlay
();
//
stopAutoPlay();
},
((
1000
*
60
)
/
playbackSpeed
.
value
)
-
1000
);
//
}, ((1000*60)/playbackSpeed.value)-1000);
};
};
// WwflagToNext = setTimeout(() => {
// WwflagToNext = setTimeout(() => {
// stopAutoPlay();
// stopAutoPlay();
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论