Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
fk-spider-web
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
周田
fk-spider-web
Commits
0e81e42c
Commit
0e81e42c
authored
Jun 16, 2026
by
yzh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:修改itu数据展示字段
parent
0c98c585
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
16 deletions
+21
-16
ituDataTab.vue
src/views/os-dataDisplay/components/ituDataTab.vue
+21
-16
No files found.
src/views/os-dataDisplay/components/ituDataTab.vue
View file @
0e81e42c
...
@@ -37,10 +37,15 @@
...
@@ -37,10 +37,15 @@
element-loading-background="rgba(48, 65, 86, 0.7)">
element-loading-background="rgba(48, 65, 86, 0.7)">
<!--
<el-table-column
type=
"selection"
width=
"40"
/>
-->
<!--
<el-table-column
type=
"selection"
width=
"40"
/>
-->
<el-table-column
property=
"number"
label=
"序号"
width=
"53"
type=
"index"
/>
<el-table-column
property=
"number"
label=
"序号"
width=
"53"
type=
"index"
/>
<el-table-column
property=
"item.
ntc
_id"
label=
"SNS Notice ID"
show-overflow-tooltip
/>
<el-table-column
property=
"item.
sns_notice
_id"
label=
"SNS Notice ID"
show-overflow-tooltip
/>
<el-table-column
min-width=
"100"
property=
"identity.adm_name_e"
label=
"主管部门"
show-overflow-tooltip
/>
<el-table-column
min-width=
"100"
property=
"identity.adm_name_e"
label=
"主管部门"
show-overflow-tooltip
/>
<el-table-column
property=
"identity.sat_name"
label=
"目标名称"
show-overflow-tooltip
/>
<el-table-column
property=
"identity.sat_name"
label=
"目标名称"
show-overflow-tooltip
/>
<el-table-column
property=
"item.plan_txt"
label=
"计划/非计划类型"
show-overflow-tooltip
/>
<!--
<el-table-column
property=
"item.plan_nonplan"
label=
"计划/非计划类型"
show-overflow-tooltip
/>
-->
<el-table-column
property=
"item.plan_nonplan"
label=
"计划/非计划类型"
show-overflow-tooltip
>
<template
#
default=
"scope"
>
{{
scope
.
row
.
item
.
plan_nonplan
===
'true'
?
'计划类型'
:
'非计划类型'
}}
</
template
>
</el-table-column>
<el-table-column
property=
"identity.ntc_type"
label=
"是否为同步"
show-overflow-tooltip
>
<el-table-column
property=
"identity.ntc_type"
label=
"是否为同步"
show-overflow-tooltip
>
<
template
#
default=
"scope"
>
<
template
#
default=
"scope"
>
{{
scope
.
row
.
identity
.
ntc_type
===
'G'
?
'是'
:
'否'
}}
{{
scope
.
row
.
identity
.
ntc_type
===
'G'
?
'是'
:
'否'
}}
...
@@ -62,7 +67,7 @@
...
@@ -62,7 +67,7 @@
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
property=
"regulatory_status.active_status"
label=
"状态"
show-overflow-tooltip
/>
<el-table-column
property=
"regulatory_status.active_status"
label=
"状态"
show-overflow-tooltip
/>
<
el-table-column
property=
"regulatory_status.prd_valid"
label=
"有效期"
show-overflow-tooltip
/
>
<
!-- <el-table-column property="regulatory_status.prd_valid" label="有效期" show-overflow-tooltip /> --
>
<el-table-column
property=
"regulatory_status.d_reg_limit"
label=
"最早使用日期"
show-overflow-tooltip
>
<el-table-column
property=
"regulatory_status.d_reg_limit"
label=
"最早使用日期"
show-overflow-tooltip
>
<
template
#
default=
"scope"
>
<
template
#
default=
"scope"
>
{{
scope
.
row
.
regulatory_status
.
d_reg_limit
===
null
?
'-'
:
scope
.
row
.
regulatory_status
.
d_reg_limit
}}
{{
scope
.
row
.
regulatory_status
.
d_reg_limit
===
null
?
'-'
:
scope
.
row
.
regulatory_status
.
d_reg_limit
}}
...
@@ -99,10 +104,10 @@
...
@@ -99,10 +104,10 @@
<span
class=
"item-title"
>
卫星网络名称:
</span>
<span
class=
"item-title"
>
卫星网络名称:
</span>
<span
class=
"item"
>
{{ targetName }}
</span>
<span
class=
"item"
>
{{ targetName }}
</span>
</div>
</div>
<div
class=
"info-item"
>
<
!-- <
div class="info-item">
<span class="item-title">主管部门:</span>
<span class="item-title">主管部门:</span>
<span class="item">{{ department }}({{ departmentDetail }})</span>
<span class="item">{{ department }}({{ departmentDetail }})</span>
</div>
</div>
-->
<div
class=
"info-item"
>
<div
class=
"info-item"
>
<span
class=
"item-title"
>
网络组织:
</span>
<span
class=
"item-title"
>
网络组织:
</span>
<span
class=
"item"
>
{{ ntwkOrg ?? '--' }}
</span>
<span
class=
"item"
>
{{ ntwkOrg ?? '--' }}
</span>
...
@@ -137,10 +142,6 @@
...
@@ -137,10 +142,6 @@
<span
class=
"item"
>
{{ isUsed }}
</span>
<span
class=
"item"
>
{{ isUsed }}
</span>
</div>
</div>
<div
class=
"info-item"
>
<div
class=
"info-item"
>
<span
class=
"item-title"
>
是否暂停使用:
</span>
<span
class=
"item"
>
{{ isPauseUsed }}
</span>
</div>
<div
class=
"info-item"
>
<span
class=
"item-title"
>
最早监管日期:
</span>
<span
class=
"item-title"
>
最早监管日期:
</span>
<span
class=
"item"
>
{{ earliestRegulatoryDate }}
</span>
<span
class=
"item"
>
{{ earliestRegulatoryDate }}
</span>
</div>
</div>
...
@@ -167,10 +168,10 @@
...
@@ -167,10 +168,10 @@
<span
class=
"item-title"
>
最高频率:
</span>
<span
class=
"item-title"
>
最高频率:
</span>
<span
class=
"item"
>
{{ highestFrequency }}
</span>
<span
class=
"item"
>
{{ highestFrequency }}
</span>
</div>
</div>
<div
class=
"info-item"
>
<
!-- <
div class="info-item">
<span class="item-title">最低海拔:</span>
<span class="item-title">最低海拔:</span>
<span class="item">{{ lowestAltitude }}</span>
<span class="item">{{ lowestAltitude }}</span>
</div>
</div>
-->
</el-card>
</el-card>
<!-- 其他信息 -->
<!-- 其他信息 -->
<el-card>
<el-card>
...
@@ -184,10 +185,10 @@
...
@@ -184,10 +185,10 @@
<span
class=
"item-title"
>
同步位置:
</span>
<span
class=
"item-title"
>
同步位置:
</span>
<span
class=
"item"
>
{{ syncPosition }}
</span>
<span
class=
"item"
>
{{ syncPosition }}
</span>
</div>
</div>
<div
class=
"info-item"
>
<
!-- <
div class="info-item">
<span class="item-title">参考主体:</span>
<span class="item-title">参考主体:</span>
<span class="item">{{ referenceSubject }}</span>
<span class="item">{{ referenceSubject }}</span>
</div>
</div>
-->
<div
class=
"info-item"
>
<div
class=
"info-item"
>
<span
class=
"item-title"
>
是否恢复使用:
</span>
<span
class=
"item-title"
>
是否恢复使用:
</span>
<span
class=
"item"
>
{{ isRestoreUsed }}
</span>
<span
class=
"item"
>
{{ isRestoreUsed }}
</span>
...
@@ -196,6 +197,10 @@
...
@@ -196,6 +197,10 @@
<span
class=
"item-title"
>
最新相关 BR IFIC 发布日期:
</span>
<span
class=
"item-title"
>
最新相关 BR IFIC 发布日期:
</span>
<span
class=
"item"
>
{{ BFIFICdate }}
</span>
<span
class=
"item"
>
{{ BFIFICdate }}
</span>
</div>
</div>
<div
class=
"info-item"
>
<span
class=
"item-title"
>
是否暂停使用:
</span>
<span
class=
"item"
>
{{ isPauseUsed }}
</span>
</div>
</el-card>
</el-card>
</el-col>
</el-col>
</el-row>
</el-row>
...
@@ -301,12 +306,12 @@ const handleDetails = async (id: any) => {
...
@@ -301,12 +306,12 @@ const handleDetails = async (id: any) => {
ntwkOrg
.
value
=
res
.
data
.
item
.
ntwk_org
ntwkOrg
.
value
=
res
.
data
.
item
.
ntwk_org
ntwkType
.
value
=
res
.
data
.
item
.
notice_type_tooltip
ntwkType
.
value
=
res
.
data
.
item
.
notice_type_tooltip
targetName
.
value
=
res
.
data
.
identity
.
sat_name
targetName
.
value
=
res
.
data
.
identity
.
sat_name
planType
.
value
=
res
.
data
.
identity
.
plan_
type
planType
.
value
=
res
.
data
.
identity
.
plan_
nonplan
===
null
?
'--'
:
(
res
.
data
.
identity
.
plan_nonplan
===
'true'
?
'计划类型'
:
'非计划类型'
)
syncType
.
value
=
res
.
data
.
identity
.
ntc_type
syncType
.
value
=
res
.
data
.
identity
.
ntc_type
isNtcType
.
value
=
res
.
data
.
item
.
ntc_type
isNtcType
.
value
=
res
.
data
.
item
.
ntc_type
syncPosition
.
value
=
res
.
data
.
identity
.
long_nom
===
null
?
'--'
:
res
.
data
.
identity
.
long_nom
syncPosition
.
value
=
res
.
data
.
identity
.
long_nom
===
null
?
'--'
:
res
.
data
.
identity
.
long_nom
perigee
.
value
=
res
.
data
.
item
.
minPerigee
===
null
?
'--'
:
res
.
data
.
item
.
minPerigee
perigee
.
value
=
res
.
data
.
item
.
perig
===
null
?
'--'
:
res
.
data
.
item
.
perig
apogee
.
value
=
res
.
data
.
item
.
maxApog
===
null
?
'--'
:
res
.
data
.
item
.
maxA
pog
apogee
.
value
=
res
.
data
.
item
.
apog
===
null
?
'--'
:
res
.
data
.
item
.
a
pog
lowestAltitude
.
value
=
res
.
data
.
item
.
minAltitude
===
null
?
'--'
:
res
.
data
.
item
.
minAltitude
lowestAltitude
.
value
=
res
.
data
.
item
.
minAltitude
===
null
?
'--'
:
res
.
data
.
item
.
minAltitude
referenceSubject
.
value
=
res
.
data
.
item
.
ref_body
===
null
?
'--'
:
res
.
data
.
item
.
ref_body
referenceSubject
.
value
=
res
.
data
.
item
.
ref_body
===
null
?
'--'
:
res
.
data
.
item
.
ref_body
lowestFrequency
.
value
=
res
.
data
.
item
.
freq_min
===
null
?
'--'
:
res
.
data
.
item
.
freq_min
lowestFrequency
.
value
=
res
.
data
.
item
.
freq_min
===
null
?
'--'
:
res
.
data
.
item
.
freq_min
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment