-
+
{{ formModel.mode }}
+
+
+
+ 检查
+ 保存
+
+
+
-
{{ title }}
-
-
-
-
-
-
-
-
+
@@ -66,11 +63,14 @@
\ No newline at end of file
+ this.$emit('ConfirmSelectBeginTime', model);
+ this.doClose();
+ }
+ });
+ }
+ }
+};
+
diff --git a/src/views/display/index.vue b/src/views/display/index.vue
index 8fb2a2173..c6a066d24 100644
--- a/src/views/display/index.vue
+++ b/src/views/display/index.vue
@@ -18,6 +18,8 @@
@tryTime="tryTime"
@hidepanel="hidepanel"
@quitQuest="quitQuest"
+ @showIbp="showIbp"
+ @showScheduling="showScheduling"
/>
@@ -38,7 +40,6 @@
@faultChooseShow="faultChooseShow"
@runQuestLoadShow="runQuestLoadShow"
@switchMode="switchMode"
- @schedulingShow="schedulingShow"
/>
@@ -565,6 +566,9 @@ export default {
this.ibpShow = true;
this.$refs.ibpPlate.show();
},
+ showScheduling() {
+ this.$refs.scheduling.doShow();
+ },
showpanel() {
this.panelShow = true;
this.simulationShow = false;
@@ -585,9 +589,6 @@ export default {
},
faultChooseShow() {
this.$refs.faultChoose.doShow();
- },
- schedulingShow() {
- this.$refs.scheduling.doShow();
}
}
};
diff --git a/src/views/display/menuDemon.vue b/src/views/display/menuDemon.vue
index 2d414d4e1..c29cf3c54 100644
--- a/src/views/display/menuDemon.vue
+++ b/src/views/display/menuDemon.vue
@@ -8,6 +8,7 @@
IBP盘
+ 排班计划
{{ jl3dname }}
退出剧本
@@ -81,6 +82,9 @@ export default {
},
isShowQuest() {
return this.questId;
+ },
+ isShowScheduling() {
+ return this.$route.query.prdType == '05';
}
},
watch: {
@@ -195,6 +199,9 @@ export default {
jumpIbp() {
this.$emit('showIbp');
},
+ jumpScheduling() {
+ this.$emit('showScheduling');
+ },
setTryTime() {
if (this.try) {
this.$emit('tryTime', { time: this.tryTime, goodsId: this.goodsId });
diff --git a/src/views/display/menuSchema.vue b/src/views/display/menuSchema.vue
index 3c3a51247..5739614f3 100644
--- a/src/views/display/menuSchema.vue
+++ b/src/views/display/menuSchema.vue
@@ -5,18 +5,9 @@
- 排班计划
-
- 加载剧本
-
+ 加载剧本
运行图预览
- 运行图加载
+ 运行图加载
故障设置
@@ -73,9 +64,6 @@ export default {
},
isDemon() {
return this.$route.params.mode === 'demon';
- },
- isShowScheduling() {
- return this.$route.query.prdType == '05';
}
},
watch: {
@@ -136,9 +124,6 @@ export default {
setRuning(run) {
this.runing = run;
},
- handleScheduling() {
- this.$emit('schedulingShow');
- },
setFault() {
this.$emit('faultChooseShow');
},
diff --git a/src/views/publish/runPlanCommon/index.vue b/src/views/publish/runPlanCommon/index.vue
index a0b7f6537..5ac9e95c0 100644
--- a/src/views/publish/runPlanCommon/index.vue
+++ b/src/views/publish/runPlanCommon/index.vue
@@ -31,13 +31,6 @@ export default {
data: []
}
}
- // templatePlanId: {
- // type: 'select',
- // label: this.$t('publish.runPlanName'),
- // config: {
- // data: []
- // }
- // }
}
},
queryList: {