Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
M
mmc-stl-vue2
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Administrator
mmc-stl-vue2
Commits
08273051
提交
08273051
authored
10月 25, 2024
作者:
lqd
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: 机库标题需去掉无人机字段,与实际标题保持一致【ID1005060】
上级
af3704de
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
9 行增加
和
6 行删除
+9
-6
package-lock.json
iframe/package-lock.json
+0
-0
App.vue
iframe/src/App.vue
+1
-1
index.vue
.../components/controlLeft/components/player/inner/index.vue
+2
-1
index.vue
.../components/controlLeft/components/player/outer/index.vue
+2
-1
index.vue
...el/components/controlLeft/components/player/uav/index.vue
+2
-1
takeOverRecords.vue
...anel/components/controlTop/components/takeOverRecords.vue
+1
-1
uav.js
src/components/MMCFlightControlCenter/store/uav.js
+1
-1
没有找到文件。
iframe/package-lock.json
0 → 100644
浏览文件 @
08273051
This source diff could not be displayed because it is too large. You can
view the blob
instead.
iframe/src/App.vue
浏览文件 @
08273051
...
...
@@ -83,7 +83,7 @@ export default {
eventHandler
()
{
window
.
addEventListener
(
"message"
,
(
event
)
=>
{
if
(
event
.
data
.
module
===
"MMCFlightControlCenter"
)
{
console
.
log
(
"iframe收到数据"
,
event
);
console
.
log
(
"iframe收到数据"
,
event
.
data
);
this
.
paramHandler
(
event
.
data
);
this
.
callbackHandler
(
event
.
data
);
this
.
logHandler
(
event
.
data
);
...
...
src/components/MMCFlightControlCenter/components/hangar/components/controlPanel/components/controlLeft/components/player/inner/index.vue
浏览文件 @
08273051
...
...
@@ -17,7 +17,8 @@ export default {
computed
:
{
...
mapState
(
"MMCFlightControlCenter/hangar"
,
[
"hangar"
]),
name
()
{
return
`
${
this
.
hangar
?.
name
||
""
}
机库无人机
`;
return
`
${
this
.
hangar
?.
name
||
""
}
机库
`
// return `
$
{
this
.
hangar
?.
name
||
""
}
机库无人机
`;
},
url() {
let find = this.hangar?.streamConfiguration
...
...
src/components/MMCFlightControlCenter/components/hangar/components/controlPanel/components/controlLeft/components/player/outer/index.vue
浏览文件 @
08273051
...
...
@@ -17,7 +17,8 @@ export default {
computed
:
{
...
mapState
(
"MMCFlightControlCenter/hangar"
,
[
"hangar"
]),
name
()
{
return
`
${
this
.
hangar
?.
name
||
""
}
机库无人机
`;
return
`
${
this
.
hangar
?.
name
||
""
}
机库
`;
// return `
$
{
this
.
hangar
?.
name
||
""
}
机库无人机
`;
},
url() {
let find = this.hangar?.streamConfiguration
...
...
src/components/MMCFlightControlCenter/components/hangar/components/controlPanel/components/controlLeft/components/player/uav/index.vue
浏览文件 @
08273051
...
...
@@ -41,7 +41,8 @@ export default {
]),
...
mapState
(
"MMCFlightControlCenter/uav"
,
[
"uav"
]),
name
()
{
return
`
${
this
.
hangar
?.
name
||
""
}
机库无人机
`;
return
`
${
this
.
hangar
?.
name
||
""
}
机库
`;
// return `
$
{
this
.
hangar
?.
name
||
""
}
机库无人机
`;
},
label() {
return this.hangar?.uav?.organizationName || "";
...
...
src/components/MMCFlightControlCenter/components/uavApplications/components/controlPanel/components/controlTop/components/takeOverRecords.vue
浏览文件 @
08273051
...
...
@@ -61,7 +61,7 @@ export default {
deviceType
:
this
.
hangar
?
2
:
1
,
pageNo
:
this
.
page
.
pageNo
,
pageSize
:
this
.
page
.
pageSize
,
deviceId
:
this
.
uav
?.
deviceId
deviceId
:
this
.
uav
?
this
.
uav
?.
deviceId
:
this
.
hangar
?
.
deviceId
});
this
.
list
.
splice
(
0
,
this
.
list
.
length
,
...
res
.
data
?.
list
??[])
// this.list = res.data;
...
...
src/components/MMCFlightControlCenter/store/uav.js
浏览文件 @
08273051
...
...
@@ -1193,7 +1193,7 @@ const actions = {
taskID
:
data
.
taskID
,
videoID
:
1
,
name
:
data
.
name
,
dbID
:
data
.
dbID
,
//
dbID: data.dbID,
},
},
type
:
528
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论