rt-sim-training-client/src/views/trainingPlatform/demonList.vue

205 lines
8.0 KiB
Vue
Raw Normal View History

2019-09-23 17:49:04 +08:00
<template>
<el-card v-loading="loading" class="map-list-main">
<div slot="header" class="clearfix">
<span>{{ $t('global.mapList') }}</span>
</div>
2019-10-15 09:39:01 +08:00
<filter-city v-if="project!=='xty' " ref="filerCity" filter-empty :query-function="queryFunction" @filterSelectChange="refresh" />
<el-input v-if="project!=='xty' " v-model="filterText" :placeholder="this.$t('global.filteringKeywords')" clearable />
<el-scrollbar wrap-class="scrollbar-wrapper" :style="{ height: (height-(project?50:125)) +'px' }">
2019-09-23 17:49:04 +08:00
<el-tree
ref="tree"
:data="treeList"
node-key="id"
:props="defaultProps"
highlight-current
:span="22"
:filter-node-method="filterNode"
2019-09-27 14:46:08 +08:00
:default-expanded-keys="expandList"
2019-09-23 17:49:04 +08:00
@node-click="clickEvent"
@node-contextmenu="showContextMenu"
2019-09-27 14:46:08 +08:00
@node-expand="nodeExpand"
@node-collapse="nodeCollapse"
2019-09-23 17:49:04 +08:00
>
<span slot-scope="{ node:tnode, data }">
<span
class="el-icon-tickets"
:style="{color: data.valid ? 'green':''}"
>&nbsp;{{ tnode.label }}</span>
</span>
</el-tree>
</el-scrollbar>
</el-card>
</template>
<script>
import { getPublishMapTree } from '@/api/management/mapprd';
2019-10-15 13:04:28 +08:00
import { getTrainingSystemList,getTrainingSystemListByMapId } from '@/api/trainingPlatform'
2019-09-23 17:49:04 +08:00
import { UrlConfig } from '@/router/index';
import FilterCity from '@/views/components/filterCity';
2019-09-27 18:02:32 +08:00
import localStore from 'storejs';
2019-10-16 15:28:29 +08:00
import { getSessionStorage } from '@/utils/auth';
2019-09-23 17:49:04 +08:00
export default {
2019-09-27 14:46:08 +08:00
name: 'DemonList',
2019-09-23 17:49:04 +08:00
components: {
FilterCity
},
props: {
height: {
type: Number,
required: true
}
},
data() {
return {
loading: true,
defaultShowKeys: [],
queryFunction: getPublishMapTree,
filterText: '',
treeList: [],
selected: {},
defaultProps: {
children: 'children',
label: 'name'
},
node: {
},
2019-09-27 14:46:08 +08:00
mapId: '',
2019-09-27 18:02:32 +08:00
expandList: [],
filterSelect: ''
2019-09-23 17:49:04 +08:00
};
},
watch: {
},
2019-09-29 13:40:01 +08:00
computed: {
account() {
return this.$store.state.user.account;
},
2019-10-15 09:39:01 +08:00
project() {
2019-10-16 15:28:29 +08:00
return getSessionStorage('project');
2019-10-15 09:39:01 +08:00
}
2019-09-29 13:40:01 +08:00
},
2019-09-23 17:49:04 +08:00
beforeDestroy () {
2019-09-27 14:46:08 +08:00
},
mounted() {
2019-10-15 09:39:01 +08:00
if (this.project === 'xty'){
2019-10-15 13:04:28 +08:00
this.projectInitData('18')
2019-10-15 09:39:01 +08:00
}
2019-09-23 17:49:04 +08:00
},
methods: {
filterNode(value, data) {
if (!value) return true;
return data.name.indexOf(value) !== -1;
},
showContextMenu(e, obj, node, vueElem) {
if (obj) {
this.node = node;
this.selected = obj;
}
},
clickEvent(obj, data, ele) {
2019-09-29 13:40:01 +08:00
localStore.set('trainingPlatformCheckId'+this.filterSelect+this.account, obj.id);
2019-09-27 14:46:08 +08:00
while (data) {
if (data.data.type === 'map') {
this.mapId = data.data.id;
break;
}
data = data.parent;
2019-09-23 17:49:04 +08:00
}
2019-09-27 14:46:08 +08:00
if (obj.type === '仿真系统') {
this.$router.push({ path: `${UrlConfig.trainingPlatform.prodDetail}/${this.mapId}`, query: { prodId: obj.code, type: obj.type }});
2019-09-23 17:49:04 +08:00
} else if ( obj.type === 'map'){
this.mapId = obj.id;
2019-09-25 13:05:01 +08:00
this.$router.push({ path: `${UrlConfig.trainingPlatform.permission}/${this.mapId}`});
2019-09-27 14:46:08 +08:00
} else if ( obj.type === '教学系统' ){
this.$router.push({ path: `${UrlConfig.trainingPlatform.teachDetail}`, query: { prodId: obj.code, type: obj.type }});
} else if ( obj.type === '考试系统' ){
this.$router.push({ path: `${UrlConfig.trainingPlatform.course}/${this.mapId}`, query: { prodId: obj.code, type: obj.type }});
2019-10-15 13:04:28 +08:00
} else if ( obj.type === '运行图编制'){
2019-10-16 17:37:03 +08:00
this.$router.push({ path: `${UrlConfig.trainingPlatform.runPlan}/${this.mapId}`,query:{skinCode: '02'} })
2019-09-23 17:49:04 +08:00
}
2019-09-29 13:40:01 +08:00
localStore.set('trainingPlatformRoute'+this.account,this.$router.history.current.fullPath);
2019-09-23 17:49:04 +08:00
},
async refresh(filterSelect) {
this.loading = true;
2019-10-15 13:04:28 +08:00
this.treeList = [];
2019-09-27 18:02:32 +08:00
this.filterSelect = filterSelect;
2019-09-23 17:49:04 +08:00
try {
2019-09-26 15:08:53 +08:00
const res = await getTrainingSystemList({cityCode:filterSelect});
2019-10-15 13:04:28 +08:00
this.treeList = res.data;
2019-09-27 18:02:32 +08:00
this.getExpandList(filterSelect);
2019-10-14 13:54:19 +08:00
this.changeCityWithPage(this.treeList);
2019-09-23 17:49:04 +08:00
this.$nextTick(() => {
2019-09-29 13:40:01 +08:00
const checkId = localStore.get('trainingPlatformCheckId'+filterSelect+this.account) || null;
2019-09-27 18:02:32 +08:00
this.$refs.tree && this.$refs.tree.setCurrentKey(checkId);
2019-09-23 17:49:04 +08:00
this.loading = false;
});
} catch (error) {
this.loading = false;
this.$messageBox(this.$t('error.refreshFailed'));
}
2019-09-27 14:46:08 +08:00
},
2019-10-15 13:04:28 +08:00
async projectInitData(mapId){
this.loading = true;
this.treeList = [];
try {
const resp = await getTrainingSystemListByMapId(mapId);
this.treeList = resp.data;
this.loading = false;
2019-10-17 14:31:59 +08:00
this.getExpandList(this.filterSelect);
this.$nextTick(() => {
const checkId = localStore.get('trainingPlatformCheckId'+this.filterSelect+this.account) || null;
this.$refs.tree && this.$refs.tree.setCurrentKey(checkId);
this.loading = false;
});
2019-10-15 13:04:28 +08:00
} catch (e) {
this.loading = false;
this.$messageBox(this.$t('error.failedToGetSystemData'));
}
},
2019-09-27 14:46:08 +08:00
nodeExpand(obj, node, ele) {
const key = obj.id;
this.expandList = this.expandList.filter(item => item!==key);
this.expandList.push(key);
2019-09-29 13:40:01 +08:00
localStore.set('trainIngPlatformExpandList'+this.filterSelect+this.account,this.expandList)
2019-09-27 14:46:08 +08:00
},
nodeCollapse(obj, node, ele) {
const key = obj.id;
this.expandList = this.expandList.filter(item => item!==key);
2019-09-29 13:40:01 +08:00
localStore.set('trainIngPlatformExpandList'+this.filterSelect+this.account,this.expandList)
2019-09-27 14:46:08 +08:00
},
2019-09-27 18:02:32 +08:00
getExpandList(filterSelect) {
2019-09-29 13:40:01 +08:00
let expand = localStore.get('trainIngPlatformExpandList'+filterSelect+this.account);
2019-09-27 14:46:08 +08:00
expand = expand?(expand+'').split(','):'';
if (expand instanceof Array){
this.expandList = expand;
}
2019-10-14 13:54:19 +08:00
},
changeCityWithPage(treeList){
if (treeList.length > 0) {
this.$router.push({ path: `${UrlConfig.trainingPlatform.permission}/${treeList[0].id}`});
this.$refs.tree.setCurrentKey(treeList[0].id);
}
2019-09-23 17:49:04 +08:00
}
}
};
</script>
<style rel="stylesheet/scss" lang="scss" scoped>
.back-home {
float: right;
cursor: pointer;
&:hover {
color: #3ea726;
}
}
</style>
<style>
.el-tree {
overflow-x: hidden;
}
.el-tree-node.is-current>.el-tree-node__content {
background-color: #e4e3e3 !important;
}
</style>