Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
S
SatelliteDigital
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
nijiawen
SatelliteDigital
Commits
d73184ca
提交
d73184ca
authored
1月 08, 2026
作者:
周文艺
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
2026/1/8
上级
271bec23
全部展开
显示空白字符变更
内嵌
并排
正在显示
10 个修改的文件
包含
124 行增加
和
25 行删除
+124
-25
hotMap.vue
src/pages/all/components/hotMapComponents/hotMap.vue
+20
-1
index.vue
src/pages/all/index.vue
+2
-0
timers.vue
src/pages/footer/component/timers.vue
+0
-0
timers.vue
src/pages/footer2/timers.vue
+0
-0
index.vue
src/pages/header/index.vue
+1
-4
errorDialog.vue
src/pages/lefts/component/errorDialog.vue
+75
-15
index.vue
src/pages/lefts/index.vue
+0
-0
cruve.vue
src/pages/lefts2/component/cruve.vue
+9
-1
index.vue
src/pages/lefts2/index.vue
+8
-3
app.js
src/store/module/app.js
+9
-1
没有找到文件。
src/pages/all/components/hotMapComponents/hotMap.vue
浏览文件 @
d73184ca
...
@@ -509,7 +509,26 @@ function initChart() {
...
@@ -509,7 +509,26 @@ function initChart() {
shadowColor
:
'rgba(0, 0, 0, 0.5)'
shadowColor
:
'rgba(0, 0, 0, 0.5)'
}
}
}
}
}]
},
],
tooltip
:
{
trigger
:
'axis'
,
// 确保tooltip显示在最上层
extraCssText
:
'z-index: 999999 !important;'
,
backgroundColor
:
'rgba(50,50,50,0.8)'
,
borderColor
:
'#333'
,
borderWidth
:
1
,
padding
:
10
,
textStyle
:
{
color
:
'#fff'
,
fontSize
:
12
},
// 固定tooltip位置在顶部
position
:
function
(
pos
,
params
,
dom
,
rect
,
size
)
{
return
[
'5%'
,
pos
[
1
]];
}
}
};
};
myChart
.
setOption
(
option
);
myChart
.
setOption
(
option
);
...
...
src/pages/all/index.vue
浏览文件 @
d73184ca
...
@@ -168,7 +168,9 @@ watch(useAppStoreInstance, () => {
...
@@ -168,7 +168,9 @@ 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'
if
(
document
.
getElementById
(
'control_panel1'
))
{
document
.
getElementById
(
'control_panel1'
).
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'
...
...
src/pages/footer/component/timers.vue
浏览文件 @
d73184ca
差异被折叠。
点击展开。
src/pages/footer2/timers.vue
浏览文件 @
d73184ca
差异被折叠。
点击展开。
src/pages/header/index.vue
浏览文件 @
d73184ca
...
@@ -375,10 +375,7 @@ onUnmounted(() => {
...
@@ -375,10 +375,7 @@ onUnmounted(() => {
// 清理定时器
// 清理定时器
clearInterval
(
updateTimer
);
clearInterval
(
updateTimer
);
});
});
onDeactivated
(()
=>
{
// 组件被停用时,清除定时器
clearInterval
(
updateTimer
);
});
...
...
src/pages/lefts/component/errorDialog.vue
浏览文件 @
d73184ca
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
<!-- 顶部标题栏 -->
<!-- 顶部标题栏 -->
<div
class=
"header"
>
<div
class=
"header"
>
<div
class=
"header_title"
>
<div
class=
"header_title"
>
<h2>
上海站
</h2>
<h2>
{{
props
.
satlTitle
}}
</h2>
</div>
</div>
<div
class=
"close-btn"
@
click=
"closePanel"
>
×
</div>
<div
class=
"close-btn"
@
click=
"closePanel"
>
×
</div>
</div>
</div>
...
@@ -19,7 +19,7 @@
...
@@ -19,7 +19,7 @@
<!-- 设备列表内容区 -->
<!-- 设备列表内容区 -->
<div
class=
"content"
v-if=
"activeTab === 'devices'"
>
<div
class=
"content"
v-if=
"activeTab === 'devices'"
>
<!-- 设备列表头部 -->
<!-- 设备列表头部 -->
<div
class=
"table-header"
>
<div
class=
"table-header"
v-if=
"devices.length > 0"
>
<div
class=
"col device-name"
>
设备名称
</div>
<div
class=
"col device-name"
>
设备名称
</div>
<div
class=
"col status"
>
状态
</div>
<div
class=
"col status"
>
状态
</div>
</div>
</div>
...
@@ -27,6 +27,7 @@
...
@@ -27,6 +27,7 @@
<!-- 设备列表 -->
<!-- 设备列表 -->
<div
class=
"device-list"
>
<div
class=
"device-list"
>
<!-- 普通设备项 -->
<!-- 普通设备项 -->
<div
v-if=
"devices.length > 0"
>
<div
<div
class=
"device-item"
class=
"device-item"
v-for=
"(device, index) in devices"
v-for=
"(device, index) in devices"
...
@@ -66,11 +67,19 @@
...
@@ -66,11 +67,19 @@
</div>
</div>
</div>
</div>
</div>
</div>
<div
v-else
>
<div
class=
"no-data"
>
<p>
暂无数据
</p></div>
</div>
</div>
</div>
</div>
<div
class=
"content content_info"
v-else
>
<div
class=
"content content_info"
v-else
>
<!-- 设备列表 -->
<!-- 设备列表 -->
<div
class=
"device-list1"
>
<div
class=
"device-list1"
>
<!-- 普通设备项 -->
<!-- 普通设备项 -->
<div
v-if=
"deviceStatusMap.length > 0"
>
<div
<div
class=
"device-item"
class=
"device-item"
v-for=
"(items, index) in deviceStatusMap"
v-for=
"(items, index) in deviceStatusMap"
...
@@ -78,15 +87,19 @@
...
@@ -78,15 +87,19 @@
>
>
<!-- 主设备行 -->
<!-- 主设备行 -->
<div
class=
"device-row"
>
<div
class=
"device-row"
v-for=
"(item, index) in items"
:key=
"index"
>
<div
class=
"col device-name"
>
<div
class=
"col device-name"
>
{{
items
.
label
}}
<span
:class=
"items.status === 'error' ? 'has-error1' : 'notHas-error1'"
>
(工作)
</span>
{{
item
.
label
}}
<!--
<span
:class=
"items.status === 'error' ? 'has-error1' : 'notHas-error1'"
>
(工作)
</span>
-->
</div>
</div>
<div
class=
"col status"
>
<div
class=
"col status"
>
<span
class=
"status-text"
>
<span
class=
"status-text"
>
{{
item
s
.
value
}}
{{
item
.
value
}}
</span>
</span>
</div>
</div>
</div>
</div>
...
@@ -94,6 +107,17 @@
...
@@ -94,6 +107,17 @@
</div>
</div>
</div>
</div>
<div
v-else
>
<div
class=
"no-data"
>
<p>
暂无数据
</p></div>
</div>
</div>
<!-- 设备列表头部 -->
<!-- 设备列表头部 -->
<!--
<div
class=
"table-header"
>
<!--
<div
class=
"table-header"
>
<div
class=
"col device-name"
>
设备名称12
</div>
<div
class=
"col device-name"
>
设备名称12
</div>
...
@@ -147,9 +171,9 @@
...
@@ -147,9 +171,9 @@
</
template
>
</
template
>
<
script
setup
>
<
script
setup
>
import
{
onMounted
,
ref
,
watch
}
from
'vue'
;
import
{
on
Activated
,
on
Mounted
,
ref
,
watch
}
from
'vue'
;
const
props
=
defineProps
([
'errorDeviceList'
,
"baseDeviceList"
])
const
props
=
defineProps
([
'
satlTitle'
,
'
errorDeviceList'
,
"baseDeviceList"
])
const
emits
=
defineEmits
([
'errorDialoghandleClose'
])
const
emits
=
defineEmits
([
'errorDialoghandleClose'
])
// 状态管理
// 状态管理
...
@@ -203,13 +227,39 @@ watch(() => props.errorDeviceList, (newVal) => {
...
@@ -203,13 +227,39 @@ watch(() => props.errorDeviceList, (newVal) => {
},
{
immediate
:
true
})
},
{
immediate
:
true
})
watch
(()
=>
props
.
baseDeviceList
,
(
newVal
)
=>
{
watch
(()
=>
props
.
baseDeviceList
,
(
newVal
)
=>
{
// console.log("11111111111",newVal.antennaEirp,typeof newVal)
deviceStatusMap
.
value
=
[]
deviceStatusMap
.
value
=
[
{
label
:
'天线发射频率'
,
value
:
newVal
.
antennaTransmitPower
,
status
:
1
?
'normal'
:
'error'
,},
newVal
.
forEach
(
item
=>
{
{
label
:
'天线发射EIRP'
,
value
:
newVal
.
antennaEip
,
status
:
0
?
'normal'
:
'error'
,},
deviceStatusMap
.
value
.
push
([{
{
label
:
'天线方位角'
,
value
:
newVal
.
antennaAzimuth
,
status
:
1
?
'normal'
:
'error'
,},
label
:
`天线
${
item
.
number
}
发射频率 `
,
{
label
:
'天线俯仰角'
,
value
:
newVal
.
antennaElevation
,
status
:
1
?
'normal'
:
'error'
,}
value
:
item
.
power
||
'0'
,
]
status
:
item
.
power
!==
0
?
'normal'
:
'error'
,
},
{
label
:
`天线
${
item
.
number
}
发射EIRP `
,
value
:
item
.
eip
||
'-'
,
status
:
item
.
power
!==
0
?
'normal'
:
'error'
,
},
{
label
:
`天线
${
item
.
number
}
方位角 `
,
value
:
item
.
azimuth
||
'-'
,
status
:
item
.
power
!==
0
?
'normal'
:
'error'
,
},
{
label
:
`天线
${
item
.
number
}
俯仰角 `
,
value
:
item
.
elevation
||
'-'
,
status
:
item
.
power
!==
0
?
'normal'
:
'error'
,
},
])
})
console
.
log
(
"11111EIRP111111baseDeviceList"
,
newVal
,
deviceStatusMap
.
value
)
// deviceStatusMap.value = [
// {label: '天线发射频率',value: newVal.antennaTransmitPower ,status: 1 ? 'normal' : 'error',},
// {label: '天线发射EIRP',value: newVal.antennaEip ,status: 0? 'normal' : 'error',},
// {label: '天线方位角',value: newVal.antennaAzimuth ,status: 1 ? 'normal' : 'error',},
// {label: '天线俯仰角',value: newVal.antennaElevation ,status: 1 ? 'normal' : 'error',}
// ]
},
{
immediate
:
true
})
},
{
immediate
:
true
})
...
@@ -224,6 +274,11 @@ const toggleExpand = (device) => {
...
@@ -224,6 +274,11 @@ const toggleExpand = (device) => {
const
closePanel
=
()
=>
{
const
closePanel
=
()
=>
{
emits
(
'errorDialoghandleClose'
)
emits
(
'errorDialoghandleClose'
)
};
};
onActivated
(()
=>
{
activeTab
.
value
=
'devices'
;
console
.
log
(
"展示了"
);
})
</
script
>
</
script
>
<
style
scoped
>
<
style
scoped
>
...
@@ -571,7 +626,12 @@ const closePanel = () => {
...
@@ -571,7 +626,12 @@ const closePanel = () => {
.content::-webkit-scrollbar-thumb:hover {
.content::-webkit-scrollbar-thumb:hover {
background: #555570;
background: #555570;
} */
} */
.no-data
{
text-align
:
center
;
padding
:
20px
;
font-size
:
14px
;
color
:
#888888
;
}
::-webkit-scrollbar
{
::-webkit-scrollbar
{
width
:
6px
;
width
:
6px
;
}
}
...
...
src/pages/lefts/index.vue
浏览文件 @
d73184ca
差异被折叠。
点击展开。
src/pages/lefts2/component/cruve.vue
浏览文件 @
d73184ca
...
@@ -15,6 +15,7 @@ export default {
...
@@ -15,6 +15,7 @@ export default {
<
script
setup
>
<
script
setup
>
import
*
as
echarts
from
'echarts'
;
import
*
as
echarts
from
'echarts'
;
import
{
ElMessage
}
from
'element-plus'
;
import
{
nextTick
,
onMounted
,
onUnmounted
,
ref
,
watch
}
from
'vue'
;
import
{
nextTick
,
onMounted
,
onUnmounted
,
ref
,
watch
}
from
'vue'
;
const
props
=
defineProps
({
const
props
=
defineProps
({
...
@@ -34,8 +35,15 @@ const props = defineProps({
...
@@ -34,8 +35,15 @@ const props = defineProps({
watch
(()
=>
props
.
propsDate
,
(
newVal
,
oldVal
)
=>
{
watch
(()
=>
props
.
propsDate
,
(
newVal
,
oldVal
)
=>
{
if
(
newVal
?.
isFirstSearch
)
{
if
(
newVal
?.
isFirstSearch
)
{
if
(
newVal
.
dataX
.
length
===
0
||
newVal
.
dataY
.
length
===
0
)
{
ElMessage
({
message
:
`
${
props
.
propsDate
.
chartName
||
'CDF Curve'
}
该时间段数据为空,请检查数据`
,
type
:
'warning'
})
return
;
}
changeCharte
();
changeCharte
();
console
.
log
(
"完全不一样的数据"
,
newVal
);
//
console.log("完全不一样的数据",newVal);
}
}
},
{
immediate
:
true
,
deep
:
true
})
},
{
immediate
:
true
,
deep
:
true
})
...
...
src/pages/lefts2/index.vue
浏览文件 @
d73184ca
...
@@ -166,6 +166,7 @@ import useAppStore from '@/store/module/app.js';
...
@@ -166,6 +166,7 @@ import useAppStore from '@/store/module/app.js';
import
wss
from
'@/utils/subSystemRequestSocket.js'
import
wss
from
'@/utils/subSystemRequestSocket.js'
import
{
useRouter
}
from
'vue-router'
;
import
{
useRouter
}
from
'vue-router'
;
import
{
getSubSystemOpitionListApi
,
getSubSystemCurveListApi
}
from
'../../api/Zodiac'
import
{
getSubSystemOpitionListApi
,
getSubSystemCurveListApi
}
from
'../../api/Zodiac'
import
{
tr
}
from
'element-plus/es/locales.mjs'
;
const
router
=
useRouter
();
const
router
=
useRouter
();
...
@@ -249,7 +250,7 @@ const backHomeClick = () => {
...
@@ -249,7 +250,7 @@ const backHomeClick = () => {
router
.
push
(
'/'
);
router
.
push
(
'/'
);
// console.log("1111111111111111111111111", useAppStoreInstance.isSourceLegendShow);
// console.log("1111111111111111111111111", useAppStoreInstance.isSourceLegendShow);
//
useAppStoreInstance
.
setGlobalisFromTosub
(
true
);
useAppStoreInstance
.
setislegendShow
(
useAppStoreInstance
.
isSourceLegendShow
?
true
:
false
);
useAppStoreInstance
.
setislegendShow
(
useAppStoreInstance
.
isSourceLegendShow
?
true
:
false
);
// console.log("11111111111111111111111112", useAppStoreInstance.islegendShow);
// console.log("11111111111111111111111112", useAppStoreInstance.islegendShow);
useAppStoreInstance
.
setiscontrolPanelShow
(
true
);
useAppStoreInstance
.
setiscontrolPanelShow
(
true
);
...
@@ -623,7 +624,7 @@ const formatDateTime = (date) => {
...
@@ -623,7 +624,7 @@ const formatDateTime = (date) => {
};
};
// 日期范围选择
// 日期范围选择
const
historyTimeDateRange
=
ref
(
[
formatDateTime
(
useAppStoreInstance
.
globalSubsystemSelectedStartTime
[
0
]),
formatDateTime
(
useAppStoreInstance
.
globalSubsystemSelectedStartTime
[
1
])]
);
const
historyTimeDateRange
=
ref
(
null
);
// 卫星粒度选择
// 卫星粒度选择
const
satelliteGranularity
=
ref
();
const
satelliteGranularity
=
ref
();
...
@@ -907,7 +908,11 @@ onBeforeMount(() => {
...
@@ -907,7 +908,11 @@ onBeforeMount(() => {
})
})
onMounted
(()
=>
{
onMounted
(()
=>
{
currentTelemetryData
.
value
=
telemetryData
[
0
];
if
(
useAppStoreInstance
.
footerTimeHasedSelectTimeToSub
)
{
historyTimeDateRange
.
value
=
[
formatDateTime
(
useAppStoreInstance
.
globalSubsystemSelectedStartTime
[
0
]),
formatDateTime
(
useAppStoreInstance
.
globalSubsystemSelectedStartTime
[
1
])]
}
else
{
historyTimeDateRange
.
value
=
[
new
Date
(
Date
.
now
()
-
24
*
60
*
60
*
1000
).
toISOString
(),
new
Date
(
Date
.
now
()).
toISOString
()];
}
useAppStoreInstance
.
setiscontrolPanelShow
(
false
);
useAppStoreInstance
.
setiscontrolPanelShow
(
false
);
useAppStoreInstance
.
subsystemSocket
.
onmessage
=
(
event
)
=>
{
useAppStoreInstance
.
subsystemSocket
.
onmessage
=
(
event
)
=>
{
console
.
log
(
'收到3 WebSocket 消息:'
,
event
);
console
.
log
(
'收到3 WebSocket 消息:'
,
event
);
...
...
src/store/module/app.js
浏览文件 @
d73184ca
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* @Author: Z 1518051043@qq.com
* @Author: Z 1518051043@qq.com
* @Date: 2025-09-12 13:51:43
* @Date: 2025-09-12 13:51:43
* @LastEditors: zwy 1518051043@qq.com
* @LastEditors: zwy 1518051043@qq.com
* @LastEditTime: 2026-01-0
5 09:59:05
* @LastEditTime: 2026-01-0
8 09:15:58
* @FilePath: \yuanxinPro\src\store\module\app.js
* @FilePath: \yuanxinPro\src\store\module\app.js
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
*/
*/
...
@@ -18,6 +18,8 @@ const useAppStore = defineStore(
...
@@ -18,6 +18,8 @@ const useAppStore = defineStore(
globalTimeLineEndSelectTime
:
"2025-11-02 00:00:00"
,
globalTimeLineEndSelectTime
:
"2025-11-02 00:00:00"
,
globalTimeLineStartTime
:
"2025-11-02 00:00:00"
,
globalTimeLineStartTime
:
"2025-11-02 00:00:00"
,
globalTimeLineEndTime
:
"2025-11-02 00:00:00"
,
globalTimeLineEndTime
:
"2025-11-02 00:00:00"
,
globalisFromTosub
:
false
,
footerTimeHasedSelectTimeToSub
:
false
,
subsystemSocket
:
null
,
subsystemSocket
:
null
,
subsystemSocketContent
:
''
,
subsystemSocketContent
:
''
,
...
@@ -44,6 +46,12 @@ const useAppStore = defineStore(
...
@@ -44,6 +46,12 @@ const useAppStore = defineStore(
}),
}),
actions
:
{
actions
:
{
setFooterTimeHasedSelectTimeToSub
(
status
)
{
this
.
footerTimeHasedSelectTimeToSub
=
status
},
setGlobalisFromTosub
(
status
)
{
this
.
globalisFromTosub
=
status
},
setGlobalTimeLineEndSelectTime
(
time
)
{
setGlobalTimeLineEndSelectTime
(
time
)
{
this
.
globalTimeLineEndSelectTime
=
time
;
this
.
globalTimeLineEndSelectTime
=
time
;
},
},
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论