-
+
@@ -22,8 +22,7 @@ export default {
},
data() {
return {
- menus: null,
- show: false
+ menus: null
};
},
computed: {
@@ -53,19 +52,18 @@ export default {
beforeDestroy() {
this.$store.dispatch('runPlan/setPlanData', []);
},
- methods: {
- doShow() {
- this.show = true;
+ mounted() {
+ this.$nextTick(() => {
this.$refs.planSchedule.setPosition();
- },
- doClose() {
- this.show = false;
- }
+ this.$refs.planSchedule.loadChartPage();
+ });
+ },
+ methods: {
}
};