rt-sim-training-client/src/views/demonstration/deomonList/index.vue

172 lines
5.6 KiB
Vue
Raw Normal View History

2019-07-26 13:32:43 +08:00
<template>
<el-dialog
v-dialogDrag
2019-11-14 13:59:33 +08:00
v-dialogLoading="pageLoading"
:title="title"
:visible.sync="show"
width="600px"
:before-close="doClose"
:z-index="2000"
:modal="false"
:close-on-click-modal="false"
>
<el-scrollbar wrap-class="scrollbar-wrapper" :style="{height: height+'px'}">
<el-tree
ref="tree"
2019-11-14 13:59:33 +08:00
node-key="group"
class="filter-tree"
2019-11-14 13:59:33 +08:00
default-expand-all
:data="trainingList"
:props="defaultProps"
:filter-node-method="filterNode"
:style="{height: height+'px'}"
@node-click="clickEvent"
>
2019-11-14 13:59:33 +08:00
<div slot-scope="{ node, data }" class="list-elem">
<span v-if="data.state=='01'">{{ '['+data.mapName+']'+($t('global.trainingNotStart').replace('{name}', data.creator.nickName)) }}</span>
<span v-else>{{ '['+data.mapName+']'+($t('global.trainingHasStart').replace('{name}', data.creator.nickName)) }}</span>
2019-11-14 13:59:33 +08:00
</div>
</el-tree>
</el-scrollbar>
2019-08-19 14:02:20 +08:00
<span
2019-08-19 20:27:23 +08:00
slot="footer"
2019-08-19 14:02:20 +08:00
class="dialog-footer"
>
2019-11-14 13:59:33 +08:00
<el-button v-loading="loading" type="primary" :disabled="!group" @click="handleJoin">{{ $t('global.joinRoom') }}</el-button>
2019-08-19 14:02:20 +08:00
<el-button @click="dialogShow = false">{{ $t('global.cancel') }}</el-button>
</span>
</el-dialog>
2019-07-26 13:32:43 +08:00
</template>
<script>
import { getjointTrainList, getjointTraining, putJointTrainingSimulationEntrance } from '@/api/chat';
2020-03-16 15:29:26 +08:00
import { getjointTrainListNew, putJointTrainingSimulationEntranceNew, getjointTrainingNew } from '@/api/jointTraining';
2020-01-17 14:20:31 +08:00
import { getSessionStorage } from '@/utils/auth';
import { getPublishMapInfo } from '@/api/jmap/map';
import { launchFullscreen } from '@/utils/screen';
2020-01-17 14:20:31 +08:00
import { ProjectCode } from '@/scripts/ConstDic';
2019-07-26 13:32:43 +08:00
export default {
name: 'DeomonList',
data() {
return {
dialogShow: false,
height: 120,
trainingList: [],
defaultProps: {
label: 'roomName'
},
group: '',
state: '',
2019-11-14 13:59:33 +08:00
mapId: '',
loading: false,
pageLoading: false
};
},
computed: {
show() {
return this.dialogShow;
},
title() {
return this.$t('global.synthesisTrainingTitle');
},
isWatch() {
return true;
},
isjoin() {
return true;
}
},
methods: {
filterNode(value, data) {
if (!value) return true;
return data.label.indexOf(value) !== -1;
},
clickEvent(obj, node, data) {
this.state = obj.state;
this.group = obj.group;
this.mapId = obj.mapId;
},
2019-11-14 13:59:33 +08:00
async doShow() {
try {
2019-11-14 13:59:33 +08:00
this.pageLoading = true;
this.dialogShow = true;
this.loading = false;
2020-01-17 14:20:31 +08:00
const project = getSessionStorage('project');
const res = await getjointTrainList({projectCode:ProjectCode[project]});
2020-03-16 15:29:26 +08:00
const resp = await getjointTrainListNew({projectCode: ProjectCode[project]});
const oldMapRoomList = res.data || [];
const newMapRoomList = resp.data || [];
this.trainingList = [...oldMapRoomList, ...newMapRoomList];
2019-11-14 13:59:33 +08:00
this.$nextTick(() => {
var training = this.trainingList[0] || {};
if (training) {
this.state = training.state;
this.group = training.group;
this.mapId = training.mapId;
this.$refs.tree.setCurrentKey(this.group);
}
});
} catch (e) {
console.error(e);
} finally {
this.pageLoading = false;
}
},
2019-11-14 13:59:33 +08:00
async doClose() {
this.dialogShow = false;
},
async handleJoin() {
2019-11-14 13:59:33 +08:00
try {
this.loading = true;
2020-03-16 15:29:26 +08:00
const rest = await getPublishMapInfo(this.mapId);
const drawWay = rest.data.drawWay;
if (drawWay) {
await getjointTrainingNew(this.group);
} else {
await getjointTraining(this.group);
}
if (this.state == '02') {
launchFullscreen();
2020-03-18 09:59:54 +08:00
const query = { lineCode: rest.data.lineCode, mapId: this.mapId, group: this.group, drawWay: drawWay };
2020-03-16 15:29:26 +08:00
if (drawWay) {
await putJointTrainingSimulationEntranceNew(this.group);
2020-03-18 09:59:54 +08:00
this.$router.push({ path: `/jointTrainingNew`, query: query });
2020-03-16 15:29:26 +08:00
} else {
await putJointTrainingSimulationEntrance(this.group);
2020-03-18 09:59:54 +08:00
this.$router.push({ path: `/jointTraining`, query: query });
2020-03-16 15:29:26 +08:00
}
} else if (this.state == '01') {
2020-03-16 15:29:26 +08:00
const query = { group: this.group, drawWay: drawWay };
this.$router.push({ path: `/trainroom`, query: query });
}
2019-11-14 13:59:33 +08:00
} catch (e) {
console.error(e);
} finally {
this.loading = false;
}
}
}
};
2019-07-26 13:32:43 +08:00
</script>
<style rel="stylesheet/scss" lang="scss" scoped>
/deep/ {
.el-dialog__body {
padding: 0px 30px !important;
}
.el-tree {
overflow: hidden !important;
2019-11-14 13:59:33 +08:00
.list-elem {
height: 30px;
line-height: 30px;
}
2019-07-26 13:32:43 +08:00
}
.el-tree-node.is-current>.el-tree-node__content {
background-color: #e4e3e3 !important;
}
}
</style>