提交 6e7e04b2 作者: 温凯

fix:【驾驶中心-机库】未监管时,操作无人机时,需修改成只提示“接管相关信息”操作区域弹框需隐藏

上级 0800515d
......@@ -149,7 +149,11 @@ export default {
/**
* 切换展示
*/
onSwitchShow(key) {
async onSwitchShow(key) {
if(!await this.isTakeOver()){
this.$message.warning("请先接管设备");
return;
}
this.$refs.controlRight.hideAll(key);
this[key] = !this[key];
this.showMonitor = false;
......
......@@ -146,15 +146,15 @@ export default {
* 切换展示
*/
async onSwitchShow(key) {
let networkType = this.network()
if (key == 'showHealth' && networkType == '离线') {
return this.$message.info('无人机不在线!');
}
// 判断是否已接管
if (!(await this.isTakeOver())) {
this.$message.warning("请先接管设备");
return;
}
let networkType = this.network()
if (key == 'showHealth' && networkType == '离线') {
return this.$message.info('无人机不在线!');
}
this.$emit("switchCallback");
this.hideAll(key);
this[key] = !this[key];
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论