Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
S
SatelliteDigital
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
nijiawen
SatelliteDigital
Commits
84776f90
提交
84776f90
authored
4月 09, 2026
作者:
liujiaxing
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
注释
上级
e4d8dd38
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
7 行增加
和
7 行删除
+7
-7
timers.vue
src/pages/footer/component/timers.vue
+2
-1
index.vue
src/pages/lefts/index.vue
+5
-6
没有找到文件。
src/pages/footer/component/timers.vue
浏览文件 @
84776f90
...
@@ -483,7 +483,7 @@ const isPlaying = ref(false);//true--代表正在播放,false---代表暂停
...
@@ -483,7 +483,7 @@ const isPlaying = ref(false);//true--代表正在播放,false---代表暂停
const
playbackSpeed
=
ref
(
1
);
// 播放速度倍数
const
playbackSpeed
=
ref
(
1
);
// 播放速度倍数
const
playbackDirection
=
ref
(
1
);
// 1表示向前播放,-1表示向后播放
const
playbackDirection
=
ref
(
1
);
// 1表示向前播放,-1表示向后播放
const
playbackInterval
=
ref
(
null
);
const
playbackInterval
=
ref
(
null
);
//时间定时器
// 新增:标识是否是带时间范围的确认操作
// 新增:标识是否是带时间范围的确认操作
const
isConfirmedWithRange
=
ref
(
false
);
const
isConfirmedWithRange
=
ref
(
false
);
...
@@ -989,6 +989,7 @@ const playForward = async () => {
...
@@ -989,6 +989,7 @@ const playForward = async () => {
// 第二版开始播放
// 第二版开始播放
const
startAutoPlay
=
()
=>
{
const
startAutoPlay
=
()
=>
{
console
.
log
(
'开始播放?'
,
!
isPlaying
.
value
);
console
.
log
(
'开始播放?'
,
!
isPlaying
.
value
);
// 清除定时器
if
(
playbackInterval
.
value
)
{
if
(
playbackInterval
.
value
)
{
clearInterval
(
playbackInterval
.
value
);
clearInterval
(
playbackInterval
.
value
);
}
}
...
...
src/pages/lefts/index.vue
浏览文件 @
84776f90
...
@@ -406,13 +406,13 @@ function searchSatelliteList() {
...
@@ -406,13 +406,13 @@ function searchSatelliteList() {
}
}
// 地面设备数据
// 地面设备数据
const
primitiveEquipmentData
=
ref
([
const
primitiveEquipmentData
=
ref
([
])
])
//地面站设备数量
const
equipmentData
=
ref
(
primitiveEquipmentData
.
value
);
const
equipmentData
=
ref
(
primitiveEquipmentData
.
value
);
const
searchEquipmentValue
=
ref
(
''
)
const
searchEquipmentValue
=
ref
(
''
)
//回显列表数组数据
//回显列表数组数据
--搜索
function
searchEquipmentList
()
{
function
searchEquipmentList
()
{
if
(
activeTab
.
value
===
'equipment'
)
{
if
(
activeTab
.
value
===
'equipment'
)
{
const
filteredData
=
primitiveEquipmentData
.
value
.
filter
(
item
=>
const
filteredData
=
primitiveEquipmentData
.
value
.
filter
(
item
=>
...
@@ -834,7 +834,7 @@ watch(() => useAppStoreInstance.globalLeftWssCONTINE, val => {
...
@@ -834,7 +834,7 @@ watch(() => useAppStoreInstance.globalLeftWssCONTINE, val => {
console
.
log
(
"useAppStoreInstance.globalLeftWssCONTINE 60一次推过来"
,
val
);
console
.
log
(
"useAppStoreInstance.globalLeftWssCONTINE 60一次推过来"
,
val
);
const
JSONdata
=
val
const
JSONdata
=
val
// console.log("useAppStoreInstance.globalLeftWssCONTINE", JSONdata,(JSONdata.type === 'history' && !(JSONdata?.isLagrangeInterpolation === true) ),JSONdata.type === 'realtime');
// console.log("useAppStoreInstance.globalLeftWssCONTINE", JSONdata,(JSONdata.type === 'history' && !(JSONdata?.isLagrangeInterpolation === true) ),JSONdata.type === 'realtime');
if
(
JSONdata
.
type
===
'history'
)
{
if
(
JSONdata
.
type
===
'history'
)
{
//历史模式
const
satelliteList
=
[]
const
satelliteList
=
[]
JSONdata
.
CurrData
.
forEach
(
items
=>
{
JSONdata
.
CurrData
.
forEach
(
items
=>
{
...
@@ -892,8 +892,7 @@ watch(() => useAppStoreInstance.globalLeftWssCONTINE, val => {
...
@@ -892,8 +892,7 @@ watch(() => useAppStoreInstance.globalLeftWssCONTINE, val => {
}
}
if
(
JSONdata
.
type
===
'realtime'
)
{
if
(
JSONdata
.
type
===
'realtime'
)
{
//实时模式
const
satelliteList
=
[]
const
satelliteList
=
[]
JSONdata
.
CurrData
.
forEach
(
items
=>
{
JSONdata
.
CurrData
.
forEach
(
items
=>
{
const
temp
=
items
.
satelliteBasicInfoResponse
const
temp
=
items
.
satelliteBasicInfoResponse
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论