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

226 lines
7.6 KiB
Vue
Raw Normal View History

2019-09-25 14:52:21 +08:00
<template>
<div v-loading="loading" class="joylink-card map-list-main">
<div class="clearfix">
<span>{{ $t('map.publishedMapList') }}</span>
</div>
2019-11-07 18:46:17 +08:00
<div class="text_item">
2019-10-29 14:14:14 +08:00
<filter-city v-if="project==='design'" ref="filerCity" filter-empty :query-function="queryFunction" :local-param-name="localParamName" @filterSelectChange="refresh" />
<el-input v-if="project==='design'" v-model="filterText" :placeholder="this.$t('global.filteringKeywords')" clearable />
2019-11-07 18:46:17 +08:00
<div class="tree_mian_box">
<el-tree ref="tree" class="tree_box" :data="treeList" node-key="id" :props="defaultProps" highlight-current :span="22" :filter-node-method="filterNode" @node-click="clickEvent">
2019-10-28 11:07:33 +08:00
<span slot-scope="{ node:tnode, data }">
<span class="el-icon-tickets" :style="{color: data.valid ? 'green':''}" />
<span>&nbsp;{{ tnode.label }}</span>
2019-10-18 17:15:04 +08:00
</span>
</el-tree>
</div>
</div>
2019-10-18 17:15:04 +08:00
</div>
2019-09-25 14:52:21 +08:00
</template>
<script>
2019-10-29 14:14:14 +08:00
import { listPublishMap, getMapListByProjectCode } from '@/api/jmap/map';
2019-10-18 17:15:04 +08:00
import { UrlConfig } from '@/router/index';
import { superAdmin, admin } from '@/router';
2019-10-18 17:15:04 +08:00
import { getSessionStorage, setSessionStorage, removeSessionStorage } from '@/utils/auth';
import FilterCity from '@/views/components/filterCity';
import localStore from 'storejs';
2019-10-29 14:14:14 +08:00
import { ProjectCode } from '@/scripts/ConstDic';
2019-09-25 14:52:21 +08:00
2019-10-18 17:15:04 +08:00
export default {
2019-10-29 14:41:47 +08:00
name: 'PublicMapList',
components: {
FilterCity
},
props: {
width: {
type: Number,
required: true
}
},
data() {
return {
loading: true,
defaultShowKeys: [],
queryFunction: listPublishMap,
filterText: '',
treeData: [],
treeList: [],
selected: {},
defaultProps: {
children: 'children',
label: 'name'
},
node: {
},
localParamName: 'publish_cityCode'
};
},
computed: {
project() {
return getSessionStorage('project');
}
},
watch: {
filterText(val) {
this.treeList = this.treeData.filter((res) => {
return res.name.includes(val);
});
}
},
beforeDestroy () {
removeSessionStorage('demonList');
},
mounted() {
if (this.project === 'designxty') {
this.refresh();
}
},
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) {
switch (obj.type) {
case 'scriptDesign': {
setSessionStorage('designType', 'scriptDesign');
2019-10-31 13:56:42 +08:00
this.$router.push({ path: `${UrlConfig.design.scriptHome}/${obj.mapId}` });
2019-10-29 14:41:47 +08:00
break;
}
case 'lessonDesign': {
setSessionStorage('designType', 'lessonDesign');
2019-10-31 13:56:42 +08:00
this.$router.push({ path: `${UrlConfig.design.lessonHome}/${obj.mapId}`, query: {cityCode: obj.cityCode} });
2019-10-29 14:41:47 +08:00
break;
}
case 'runPlanDesign': {
setSessionStorage('designType', 'runPlanDesign');
2019-11-08 13:47:51 +08:00
// ?skinCode=${obj.skinCode}
this.$router.push({ path: `${UrlConfig.design.runPlan}/${obj.mapId}` });
2019-10-29 14:41:47 +08:00
break;
}
case 'map': {
setSessionStorage('demonList', obj.id);
break;
}
case 'mapPreview': {
this.$router.push({ path: `${UrlConfig.design.mapPreview}/${obj.mapId}` });
break;
}
}
},
async refresh(filterSelect) {
this.loading = true;
this.treeData = this.treeList = [];
try {
let res = '';
if (this.project === 'designxty') {
res = await getMapListByProjectCode(ProjectCode[this.project]);
} else {
res = await listPublishMap({cityCode: filterSelect});
}
2019-10-25 10:39:41 +08:00
2019-10-29 14:41:47 +08:00
res.data && res.data.forEach(elem=>{
// elem.children.find(n => { return n.name.includes("行调")})
elem.children = [
{
id: '1',
name: this.$t('designPlatform.mapPreview'),
type: 'mapPreview',
mapId: elem.id,
cityCode: elem.cityCode
}
];
2019-11-06 10:42:53 +08:00
this.isAdministrator() ? elem.children.push({id: '2', name: this.$t('designPlatform.lessonDesign'), type: 'lessonDesign', mapId: elem.id, cityCode: elem.cityCode}) : '';
2019-10-29 14:41:47 +08:00
elem.children.push(
{
id: '3',
name: this.$t('designPlatform.scriptDesign'),
type: 'scriptDesign',
mapId: elem.id,
cityCode: elem.cityCode
// code:elem.children.find(n => { return n.name.includes("行调")})
});
elem.children.push(
{
id: '4',
name: this.$t('designPlatform.runPlanDesign'),
type: 'runPlanDesign',
mapId: elem.id,
skinCode: elem.skinCode,
cityCode: elem.cityCode
}
);
});
this.treeData = res.data;
this.treeList = this.filterText
? res.data.filter(elem => { return elem.name.includes(this.filterText); })
: res.data;
this.$nextTick(() => {
const mapId = getSessionStorage('demonList') || null;
this.$refs.tree.setCurrentKey(mapId);
this.loading = false;
});
} catch (error) {
this.loading = false;
this.$messageBox(this.$t('error.refreshFailed'));
}
},
resize() {
this.widthLeft = Number(localStore.get('LeftWidth')) || this.widthLeft;
const width = this.$store.state.app.width - 521 - this.widthLeft;
const height = this.$store.state.app.height - 90;
this.$store.dispatch('config/resize', { width: width, height: height });
},
isAdministrator() {
return this.$store.state.user.roles.includes(superAdmin) || this.$store.state.user.roles.includes(admin);
}
}
2019-10-18 17:15:04 +08:00
};
2019-09-25 14:52:21 +08:00
</script>
<style rel="stylesheet/scss" lang="scss" scoped>
.back-home {
float: right;
cursor: pointer;
&:hover {
color: #3ea726;
}
}
2019-11-07 18:46:17 +08:00
.text_item{
height: calc(100% - 47px);
.tree_mian_box{
height: calc(100% - 76px);
}
}
2019-09-26 15:51:22 +08:00
.map-list-main{
text-align:left;
height: 100%;
2019-09-26 15:51:22 +08:00
}
.clearfix{
padding: 0 20px;
border-bottom: 1px solid #EBEEF5;
box-sizing: border-box;
height: 47px;
line-height: 47px;
}
.tree_box{
height: 100%;
}
2019-09-25 14:52:21 +08:00
</style>
<style>
.el-tree {
overflow-x: hidden;
}
.el-tree-node.is-current>.el-tree-node__content {
background-color: #e4e3e3 !important;
}
</style>