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

241 lines
8.4 KiB
Vue
Raw Normal View History

2019-09-25 14:52:21 +08:00
<template>
<div>
2019-09-27 18:16:27 +08:00
<el-card v-loading="loading" class="map-list-main" header="已发布地图列表">
2019-09-25 14:52:21 +08:00
<filter-city ref="filerCity" filter-empty :query-function="queryFunction" @filterSelectChange="refresh" />
<el-input v-model="filterText" :placeholder="this.$t('global.filteringKeywords')" clearable />
2019-09-27 18:16:27 +08:00
<el-scrollbar wrap-class="scrollbar-wrapper" :style="{ height: (height-125) +'px' }">
<!-- :style="{ height: heightUp +'px' }" -->
2019-09-25 14:52:21 +08:00
<el-tree
ref="tree"
:data="treeList"
node-key="id"
:props="defaultProps"
highlight-current
:span="22"
:filter-node-method="filterNode"
@node-click="clickEvent"
>
2019-09-27 18:16:27 +08:00
<!-- @node-contextmenu="showContextMenu" -->
<span slot-scope="{ node:tnode, data }">
<span
class="el-icon-tickets"
:style="{color: data.valid ? 'green':''}"
>&nbsp;{{ tnode.label }}</span>
</span>
2019-09-25 14:52:21 +08:00
</el-tree>
</el-scrollbar>
2019-09-27 18:16:27 +08:00
<!-- <div class="buttonList">
2019-09-26 15:51:22 +08:00
<el-button size="small" type="primary" class="eachButton uploadDemo ">
<input
ref="files"
type="file"
class="file_box"
accept=".json, application/json"
@change="importf"
2019-09-27 18:16:27 +08:00
> -->
<!-- {{ $t('map.importMap') }} -->
2019-09-27 18:16:27 +08:00
<!-- 导入地图
2019-09-26 15:51:22 +08:00
</el-button>
2019-09-27 18:16:27 +08:00
<el-button size="small" type="primary" class="eachButton" @click="createMap">新建地图</el-button> -->
<!-- {{ $t('map.newConstruction') }} -->
2019-09-27 18:16:27 +08:00
<!-- </div> -->
2019-09-25 14:52:21 +08:00
</el-card>
2019-09-27 18:16:27 +08:00
<!-- <drap-Up :height-up="heightUp" :width="width" @drapHeight="drapHeight" /> -->
2019-09-25 14:52:21 +08:00
</div>
</template>
<script>
2019-09-27 10:16:11 +08:00
import { DeviceMenu } from '@/scripts/ConstDic';
2019-09-26 15:51:22 +08:00
import { postBuildMapImport } from '@/api/jmap/mapdraft';
2019-09-25 14:52:21 +08:00
import { getPublishMapTree } from '@/api/management/mapprd';
2019-09-30 13:24:47 +08:00
import { getMapList } from '@/api/designPlatform';
2019-09-27 18:16:27 +08:00
// getUserMapTree
2019-09-25 14:52:21 +08:00
import { UrlConfig } from '@/router/index';
import { getSessionStorage, setSessionStorage, removeSessionStorage } from '@/utils/auth';
import FilterCity from '@/views/components/filterCity';
// import drapUp from '@/views/components/drapUp/index';
2019-09-25 14:52:21 +08:00
import localStore from 'storejs';
2019-09-27 18:16:27 +08:00
// import MapOperateMenu from '@/views/map/mapdraft/mapmanage/operateMenu';
2019-09-25 14:52:21 +08:00
export default {
name: 'publicMapList',
2019-09-25 14:52:21 +08:00
components: {
FilterCity,
2019-09-27 18:16:27 +08:00
// MapOperateMenu
2019-09-25 14:52:21 +08:00
},
props: {
height: {
type: Number,
required: true
},
width: {
type: Number,
required: true
}
},
data() {
return {
loading: true,
defaultShowKeys: [],
queryFunction: getPublishMapTree,
filterText: '',
treeData: [],
treeList: [],
selected: {},
defaultProps: {
children: 'children',
label: 'name'
},
node: {
},
mapId: '',
2019-09-26 15:51:22 +08:00
heightUp: 450,
2019-09-27 10:16:11 +08:00
point: {
x: 0,
y: 0
},
editModel: {},
skinCode:''
2019-09-25 14:52:21 +08:00
};
},
computed: {
role() {
return this.$store.state.user.roles.includes('04') ||
this.$store.state.user.roles.includes('05') ||
this.$store.state.user.roles.includes('01');
},
},
watch: {
filterText(val) {
this.treeList = this.treeData.filter((res) => {
return res.name.includes(val);
});
}
},
beforeDestroy () {
removeSessionStorage('demonList');
},
mounted() {
2019-09-25 15:32:44 +08:00
this.heightUp = Number(localStore.get('upHeight')?localStore.get('upHeight'):(this.height)/2);
2019-09-25 14:52:21 +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-25 15:34:29 +08:00
if (data.parent && data.parent.data){
this.mapId = data.parent.data.id;
2019-09-30 13:24:47 +08:00
this.skinCode = data.parent.data.skinCode;
2019-09-25 15:34:29 +08:00
}
switch(obj.type){
case 'scriptDesign':{
2019-09-26 09:07:19 +08:00
this.$router.push({ path: `${UrlConfig.design.scriptHome}/${this.mapId}` });
2019-09-25 15:34:29 +08:00
break;
}
2019-09-25 18:56:30 +08:00
case 'lessonDesign': {
2019-09-30 13:24:47 +08:00
this.$router.push({ path: `${UrlConfig.design.lessonHome}/${this.mapId}/${this.skinCode}` });
2019-09-25 18:56:30 +08:00
break;
}
case 'runPlanDesign': {
2019-09-30 13:24:47 +08:00
this.$router.push({ path: `${UrlConfig.design.runPlan}/${this.mapId}` });
2019-09-27 18:16:27 +08:00
break;
2019-09-25 18:56:30 +08:00
}
2019-09-25 15:34:29 +08:00
}
2019-09-29 14:27:58 +08:00
// this.$refs.menu.doClose();
2019-09-25 14:52:21 +08:00
},
2019-09-27 18:16:27 +08:00
// async myrefresh(filterSelect){
// },
2019-09-25 14:52:21 +08:00
async refresh(filterSelect) {
this.loading = true;
this.treeData = this.treeList = [];
try {
2019-09-30 13:24:47 +08:00
const res = await getMapList(filterSelect);
2019-09-25 18:56:30 +08:00
2019-09-25 15:34:29 +08:00
res.data.forEach(elem=>{
2019-09-30 13:24:47 +08:00
elem.children=[
// {
// id:'1',
// name:'地图设计',
// type:'mapDesign'
// },
{
id:'2',
name:'课程设计',
type:'lessonDesign'
},
{
id:'3',
name:'剧本设计',
type:'scriptDesign'
},
{
id:'4',
name:'运行图设计',
type:'runPlanDesign'
},
]
2019-09-25 15:34:29 +08:00
});
2019-09-25 14:52:21 +08:00
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'));
}
},
2019-09-27 18:16:27 +08:00
// refresh1(){
2019-09-27 10:16:11 +08:00
2019-09-27 18:16:27 +08:00
// },
2019-09-25 14:52:21 +08:00
drapHeight(height) {
this.heightUp = Number(height);
2019-09-25 18:56:30 +08:00
},
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 });
2019-09-26 15:51:22 +08:00
},
2019-09-27 18:16:27 +08:00
// createMap() {
// this.$emit("createMap");
// },
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-09-26 15:51:22 +08:00
.map-list-main{
text-align:left;
2019-09-26 15:51:22 +08:00
}
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>