地图预览大屏等切实训设计预览倒是实训步骤判断错误调整
This commit is contained in:
parent
5fa020edcd
commit
6b6d8ac871
@ -16,6 +16,7 @@ import { clearSimulation } from '@/api/simulation';
|
||||
import { mapGetters } from 'vuex';
|
||||
import { creatSubscribe, clearSubscribe, displayTopic} from '@/utils/stomp';
|
||||
import { getToken } from '@/utils/auth';
|
||||
import { TrainingMode } from '@/scripts/ConstDic';
|
||||
|
||||
export default {
|
||||
name: 'BigScreen',
|
||||
@ -95,7 +96,7 @@ export default {
|
||||
if (this.$route.query.group) {
|
||||
loadMapDataById(this.$route.query.mapId, 'simulation');
|
||||
} else {
|
||||
this.$store.dispatch('training/changeMode', { mode: null });
|
||||
this.$store.dispatch('training/changeMode', { mode: TrainingMode.NORMAL });
|
||||
loadMapDataById(this.$route.params.mapId, 'preview');
|
||||
}
|
||||
},
|
||||
|
@ -27,6 +27,7 @@ import { mapGetters } from 'vuex';
|
||||
import { creatSubscribe, clearSubscribe, displayTopic} from '@/utils/stomp';
|
||||
import { getToken } from '@/utils/auth';
|
||||
import { getSessionStorage } from '@/utils/auth';
|
||||
import { TrainingMode } from '@/scripts/ConstDic';
|
||||
|
||||
export default {
|
||||
name: 'MapPreview',
|
||||
@ -105,7 +106,7 @@ export default {
|
||||
if (this.$route.query.group) {
|
||||
await loadMapDataById(this.$route.query.mapId, 'simulation');
|
||||
} else {
|
||||
this.$store.dispatch('training/changeMode', { mode: null });
|
||||
this.$store.dispatch('training/changeMode', { mode: TrainingMode.NORMAL });
|
||||
loadMapDataById(this.$route.params.mapId, 'preview');
|
||||
}
|
||||
},
|
||||
|
@ -11,6 +11,7 @@ import { EventBus } from '@/scripts/event-bus';
|
||||
import { DeviceMenu, getDeviceMenuByDeviceType } from '@/scripts/ConstDic';
|
||||
import PopMenu from '@/components/PopMenu';
|
||||
import { mapGetters } from 'vuex';
|
||||
import { TrainingMode } from '@/scripts/ConstDic';
|
||||
|
||||
export default {
|
||||
name: 'MapPreview',
|
||||
@ -78,7 +79,7 @@ export default {
|
||||
methods: {
|
||||
initLoadData() { // 加载地图数据
|
||||
if (parseInt(this.mapId)) {
|
||||
this.$store.dispatch('training/changeMode', { mode: null });
|
||||
this.$store.dispatch('training/changeMode', { mode: TrainingMode.NORMAL });
|
||||
loadMapDataById(this.mapId, 'preview');
|
||||
} else {
|
||||
this.endViewLoading();
|
||||
|
@ -19,6 +19,7 @@ import { loadMapDataById } from '@/utils/loaddata';
|
||||
import { EventBus } from '@/scripts/event-bus';
|
||||
import RouteConfig from './routeConfig';
|
||||
import GernaratePlan from '../menus/gernaratePlanTrain';
|
||||
import { TrainingMode } from '@/scripts/ConstDic';
|
||||
|
||||
export default {
|
||||
name: 'RouteMap',
|
||||
@ -119,7 +120,7 @@ export default {
|
||||
});
|
||||
},
|
||||
loadInitPage() {
|
||||
this.$store.dispatch('training/changeMode', { mode: null });
|
||||
this.$store.dispatch('training/changeMode', { mode: TrainingMode.NORMAL });
|
||||
loadMapDataById(this.$route.query.mapId, 'preview');
|
||||
},
|
||||
endViewLoading(isSuccess) {
|
||||
|
Loading…
Reference in New Issue
Block a user