Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
M
mmc-stl-vue2
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Administrator
mmc-stl-vue2
Commits
93e5c904
提交
93e5c904
authored
1月 15, 2025
作者:
温凯
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix:接管弹框不能遮盖住个人账号,需修改样式,且弹框在页面显示30秒左右自动释放
上级
5d9ea3a4
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
19 行增加
和
13 行删除
+19
-13
index.vue
...mponents/hangar/components/list/components/item/index.vue
+9
-7
index.vue
...ponents/uavList/components/list/components/item/index.vue
+6
-4
index.vue
src/components/MMCFlightControlCenter/index.vue
+4
-2
没有找到文件。
src/components/MMCFlightControlCenter/components/hangar/components/list/components/item/index.vue
浏览文件 @
93e5c904
...
@@ -121,7 +121,8 @@ export default {
...
@@ -121,7 +121,8 @@ export default {
this
.
$notify
.
success
({
this
.
$notify
.
success
({
title
:
"接管消息"
,
title
:
"接管消息"
,
message
:
msg
,
message
:
msg
,
duration
:
0
,
duration
:
30000
,
offset
:
40
});
});
this
.
$emit
(
"refresh"
);
this
.
$emit
(
"refresh"
);
this
.
takeOverVisible
=
false
;
this
.
takeOverVisible
=
false
;
...
@@ -129,7 +130,8 @@ export default {
...
@@ -129,7 +130,8 @@ export default {
this
.
$notify
.
warning
({
this
.
$notify
.
warning
({
title
:
"接管消息"
,
title
:
"接管消息"
,
message
:
msg
,
message
:
msg
,
duration
:
0
,
duration
:
30000
,
offset
:
40
});
});
this
.
$message
.
warning
(
"申请接管拒绝"
);
this
.
$message
.
warning
(
"申请接管拒绝"
);
}
}
...
@@ -147,7 +149,7 @@ export default {
...
@@ -147,7 +149,7 @@ export default {
});
});
setTimeout
(()
=>
{
setTimeout
(()
=>
{
if
(
this
.
takeLoading
)
{
if
(
this
.
takeLoading
)
{
this
.
$message
.
error
(
`
申请接管失败
`
);
this
.
$message
.
error
(
`
接管失败,申请单位未同意
`
);
this
.
takeLoading
=
false
this
.
takeLoading
=
false
}
}
},
5500
);
},
5500
);
...
@@ -155,12 +157,12 @@ export default {
...
@@ -155,12 +157,12 @@ export default {
this
.
bus
.
$on
(
"uas-device-take-agree-message"
,
this
.
onTakeAgree
);
this
.
bus
.
$on
(
"uas-device-take-agree-message"
,
this
.
onTakeAgree
);
this
.
bus
.
$on
(
"uas-device-take-refuse-message"
,
this
.
onTakeAgree
);
this
.
bus
.
$on
(
"uas-device-take-refuse-message"
,
this
.
onTakeAgree
);
}
else
{
}
else
{
this
.
$message
.
warning
(
"
申请接管失败
"
);
this
.
$message
.
warning
(
"
接管失败,申请单位未同意
"
);
this
.
takeLoading
=
false
;
this
.
takeLoading
=
false
;
}
}
setTimeout
(()
=>
{
setTimeout
(()
=>
{
if
(
this
.
takeLoading
)
{
if
(
this
.
takeLoading
)
{
this
.
$message
.
error
(
`
申请接管失败
`
);
this
.
$message
.
error
(
`
接管失败,申请单位未同意
`
);
this
.
takeLoading
=
false
this
.
takeLoading
=
false
}
}
},
5500
);
},
5500
);
...
@@ -346,7 +348,7 @@ export default {
...
@@ -346,7 +348,7 @@ export default {
this
.
takeOverVisible
=
true
;
this
.
takeOverVisible
=
true
;
setTimeout
(()
=>
{
setTimeout
(()
=>
{
if
(
this
.
takeLoading
)
{
if
(
this
.
takeLoading
)
{
this
.
$message
.
error
(
`
申请接管失败
`
);
this
.
$message
.
error
(
`
接管失败,申请单位未同意
`
);
this
.
takeLoading
=
false
this
.
takeLoading
=
false
}
}
},
5500
);
},
5500
);
...
@@ -377,7 +379,7 @@ export default {
...
@@ -377,7 +379,7 @@ export default {
// 5秒后没收到通知认定接管失败
// 5秒后没收到通知认定接管失败
setTimeout
(()
=>
{
setTimeout
(()
=>
{
if
(
this
.
takeLoading
)
{
if
(
this
.
takeLoading
)
{
this
.
$message
.
error
(
`
申请接管失败
`
);
this
.
$message
.
error
(
`
接管失败,申请单位未同意
`
);
this
.
takeLoading
=
false
this
.
takeLoading
=
false
}
}
},
5500
);
},
5500
);
...
...
src/components/MMCFlightControlCenter/components/uavApplications/components/uavList/components/list/components/item/index.vue
浏览文件 @
93e5c904
...
@@ -159,7 +159,8 @@ export default {
...
@@ -159,7 +159,8 @@ export default {
this
.
$notify
.
success
({
this
.
$notify
.
success
({
title
:
"接管消息"
,
title
:
"接管消息"
,
message
:
msg
,
message
:
msg
,
duration
:
0
,
duration
:
30000
,
offset
:
40
});
});
this
.
$emit
(
"refresh"
);
this
.
$emit
(
"refresh"
);
this
.
takeOverVisible
=
false
;
this
.
takeOverVisible
=
false
;
...
@@ -167,7 +168,8 @@ export default {
...
@@ -167,7 +168,8 @@ export default {
this
.
$notify
.
warning
({
this
.
$notify
.
warning
({
title
:
"接管消息"
,
title
:
"接管消息"
,
message
:
msg
,
message
:
msg
,
duration
:
0
,
duration
:
30000
,
offset
:
40
});
});
this
.
$message
.
warning
(
"申请接管拒绝"
);
this
.
$message
.
warning
(
"申请接管拒绝"
);
}
}
...
@@ -188,12 +190,12 @@ export default {
...
@@ -188,12 +190,12 @@ export default {
this
.
bus
.
$on
(
"uas-device-take-agree-message"
,
this
.
onTakeAgree
);
this
.
bus
.
$on
(
"uas-device-take-agree-message"
,
this
.
onTakeAgree
);
this
.
bus
.
$on
(
"uas-device-take-refuse-message"
,
this
.
onTakeAgree
);
this
.
bus
.
$on
(
"uas-device-take-refuse-message"
,
this
.
onTakeAgree
);
}
else
{
}
else
{
this
.
$message
.
warning
(
"
申请接管失败
"
);
this
.
$message
.
warning
(
"
接管失败,申请单位未同意
"
);
this
.
takeLoading
=
false
;
this
.
takeLoading
=
false
;
}
}
setTimeout
(()
=>
{
setTimeout
(()
=>
{
if
(
this
.
takeLoading
)
{
if
(
this
.
takeLoading
)
{
this
.
$message
.
error
(
`
申请接管失败
`
);
this
.
$message
.
error
(
`
接管失败,申请单位未同意
`
);
this
.
takeLoading
=
false
this
.
takeLoading
=
false
}
}
},
5500
);
},
5500
);
...
...
src/components/MMCFlightControlCenter/index.vue
浏览文件 @
93e5c904
...
@@ -319,7 +319,8 @@ export default {
...
@@ -319,7 +319,8 @@ export default {
this
.
$notify
.
info
({
this
.
$notify
.
info
({
title
:
"接管消息"
,
title
:
"接管消息"
,
message
:
msg
,
message
:
msg
,
duration
:
0
,
duration
:
30000
,
offset
:
40
});
});
break
;
break
;
...
@@ -328,7 +329,8 @@ export default {
...
@@ -328,7 +329,8 @@ export default {
this
.
$notify
.
warning
({
this
.
$notify
.
warning
({
title
:
"接管消息"
,
title
:
"接管消息"
,
message
:
msg
,
message
:
msg
,
duration
:
0
,
duration
:
30000
,
offset
:
40
});
});
break
;
break
;
}
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论