|
@@ -7,7 +7,9 @@
|
|
|
<!-- 我的任务弹窗 -->
|
|
|
<MyMission @changeShowBottomMenusStatus="changeShowBottomMenusStatus" />
|
|
|
<!-- 同屏对比弹窗 -->
|
|
|
- <!-- 上传数据 -->
|
|
|
+ <SameScreenComparison />
|
|
|
+ <!-- 上传数据弹窗 -->
|
|
|
+ <UploadingData />
|
|
|
<!-- 底部菜单主体 -->
|
|
|
<div
|
|
|
id="menusBox"
|
|
@@ -60,9 +62,11 @@
|
|
|
import BottomMenuSvg from "./BottomMenuSvg.vue";
|
|
|
import CreateTaskForm from "./BottomForm/CreateTaskForm.vue";
|
|
|
import MyMission from "./BottomForm/MyMission.vue";
|
|
|
+import SameScreenComparison from "./BottomForm/SameScreenComparison.vue";
|
|
|
+import UploadingData from "./BottomForm/UploadingData.vue";
|
|
|
export default {
|
|
|
name: "BottomMenus",
|
|
|
- components: { BottomMenuSvg, CreateTaskForm, MyMission },
|
|
|
+ components: { BottomMenuSvg, CreateTaskForm, MyMission, SameScreenComparison, UploadingData },
|
|
|
data() {
|
|
|
return {
|
|
|
// 弹窗打开状态
|
|
@@ -87,10 +91,10 @@ export default {
|
|
|
subMenu: [
|
|
|
{ index: 0, title: "疑点审计", bgImage: "ydsj", clickEmit:"caseAuditEvent" },
|
|
|
{ index: 1, title: "标记疑点", bgImage: "bjyd",clickEmit:"labelCaseEvent" },
|
|
|
- { index: 2, title: "同屏对比", bgImage: "tpdb" },
|
|
|
+ { index: 2, title: "同屏对比", bgImage: "tpdb", clickEmit: "tpdb" },
|
|
|
{ index: 3, title: "卷帘对比", bgImage: "jldb", clickEmit: "JLControl" },
|
|
|
- { index: 4, title: "上传数据", bgImage: "scsj" },
|
|
|
- { index: 5, title: "自定义模型", bgImage: "zdymx",clickEmit:"customModelEvent" }
|
|
|
+ { index: 4, title: "上传数据", bgImage: "scsj", clickEmit: "scsj" },
|
|
|
+ { index: 5, title: "自定义模型", bgImage: "zdymx" }
|
|
|
]
|
|
|
},
|
|
|
{
|
|
@@ -118,6 +122,7 @@ export default {
|
|
|
},
|
|
|
// 根据菜单父级index和子菜单index,更新全局变量。
|
|
|
changeBottomMenu(index, subIndex, clickEvent) {
|
|
|
+ // 该逻辑可能会舍弃
|
|
|
this.$store.commit("changeBottomMenu", { index: index, subIndex: subIndex });
|
|
|
if (clickEvent) {
|
|
|
// 调用全局事件总线中的指定事件
|