rt-sim-training-client/src/views/iscs/iscsDesign/demonList.vue

321 lines
11 KiB
Vue
Raw Normal View History

2020-01-15 10:11:26 +08:00
<template>
<div v-loading="loading" class="joylink-card map-list-main">
<div class="clearfix">
<span>iscs系统列表</span>
2020-01-15 10:11:26 +08:00
</div>
<div class="text_item">
<el-input v-model="filterText" :placeholder="this.$t('global.filteringKeywords')" clearable />
<div class="tree_box">
<el-tree ref="tree" :data="treeList" node-key="id" :props="defaultProps" highlight-current :span="22" :filter-node-method="filterNode" @node-click="clickEvent" @node-contextmenu="showContextMenu">
<span slot-scope="{ node:tnode, data }">
<span class="el-icon-tickets" :style="{color: data.valid ? 'green':''}" />
<span>&nbsp;{{ tnode.label }}</span>
</span>
</el-tree>
</div>
<div class="buttonList">
<el-button size="small" type="primary" class="eachButton" @click="createMap">{{ $t('map.newConstruction') }}</el-button>
</div>
</div>
</div>
</template>
<script>
import { DeviceMenu } from '@/scripts/ConstDic';
import { removeSessionStorage } from '@/utils/auth';
export default {
name: 'UserMapList',
data() {
return {
loading: false,
defaultShowKeys: [],
filterText: '',
treeList: [],
selected: {},
defaultProps: {
children: 'children',
label: 'name'
},
point: {
x: 0,
y: 0
},
editModel: {},
lineCode: ''
};
},
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.$refs.tree.filter(val);
}
},
beforeDestroy () {
removeSessionStorage('demonList');
},
mounted() {
this.loadInitData();
},
methods: {
filterNode(value, data) {
if (!value) return true;
return data.name.indexOf(value) !== -1;
},
createMap() {
this.$emit('createMap');
},
async loadInitData() {
this.treeList = [];
this.treeList = [
{
name: 'iscs系统',
id: 0,
2020-01-15 13:27:07 +08:00
type: 'system',
2020-01-15 10:11:26 +08:00
children: [
{
2020-01-16 16:25:33 +08:00
name: 'FAS界面',
mode: 'fas',
2020-01-15 13:27:07 +08:00
id: '1',
2020-02-05 10:16:59 +08:00
type: 'system',
children: [
{
name: '站厅报警',
2020-02-05 10:16:59 +08:00
mode: 'fas',
id: '11',
type: 'interface'
2020-02-05 10:16:59 +08:00
},
{
name: '站台报警',
2020-02-05 10:16:59 +08:00
mode: 'fas',
2020-06-01 18:33:17 +08:00
id: '14',
type: 'interface'
},
{
name: '站台报警-公共',
mode: 'fas',
2020-02-05 10:16:59 +08:00
id: '12',
type: 'interface'
2020-05-09 10:04:57 +08:00
},
{
name: '系统状态',
mode: 'fas',
id: '13',
type: 'interface'
2020-02-05 10:16:59 +08:00
}
]
2020-01-16 16:25:33 +08:00
},
{
name: 'BAS界面',
mode: 'bas',
id: '2',
type: 'system',
children: [
{
name: '大系统',
mode: 'bas',
id: '21',
type: 'interface'
},
{
name: '小系统',
mode: 'bas',
id: '22',
type: 'interface'
},
{
name: '水系统',
mode: 'bas',
id: '23',
type: 'interface'
2020-06-02 16:12:34 +08:00
},
{
name: '照明',
mode: 'bas',
id: '24',
type: 'interface'
2020-06-02 17:50:56 +08:00
},
{
name: 'EPS系统',
mode: 'bas',
id: '25',
type: 'interface'
},
{
name: '电扶梯',
mode: 'bas',
id: '26',
type: 'interface'
},
{
name: '机电排水',
mode: 'bas',
id: '27',
type: 'interface'
},
{
name: '隧道通风',
mode: 'bas',
id: '28',
type: 'interface'
}
]
},
2020-01-16 16:25:33 +08:00
{
name: 'PSD界面',
mode: 'psd',
id: '3',
2020-02-05 10:16:59 +08:00
type: 'system',
children: [
{
name: '屏蔽门',
mode: 'psd',
id: '31',
type: 'interface'
2020-02-05 10:16:59 +08:00
}
]
2020-01-17 14:15:14 +08:00
},
{
name: 'cctv界面',
mode: 'cctv',
id: '4',
2020-02-05 10:16:59 +08:00
type: 'system',
children: [
{
name: '车站控制-站厅',
mode: 'cctv',
id: '41',
type: 'interface'
2020-02-05 10:16:59 +08:00
},
{
name: '车站控制-站台',
mode: 'cctv',
id: '42',
type: 'interface'
2020-06-01 18:33:17 +08:00
},
{
name: '中心设备状态',
mode: 'cctv',
id: '43',
type: 'interface'
2020-02-05 10:16:59 +08:00
}
]
2020-01-17 18:45:28 +08:00
},
{
name: 'AFC界面',
mode: 'afc',
id: '5',
2020-02-05 10:16:59 +08:00
type: 'system',
children: [
{
name: '售检票',
mode: 'afc',
id: '51',
type: 'interface'
2020-02-05 10:16:59 +08:00
}
]
2020-01-17 18:45:28 +08:00
},
{
name: 'ACS界面',
mode: 'acs',
2020-02-05 10:16:59 +08:00
id: '6',
type: 'system',
children: [
{
2020-02-05 10:22:22 +08:00
name: '门禁-站台层',
2020-02-05 10:16:59 +08:00
mode: 'acs',
id: '61',
type: 'interface'
2020-02-05 10:22:22 +08:00
},
{
name: '门禁-站厅层',
mode: 'acs',
id: '62',
type: 'interface'
2020-02-05 10:16:59 +08:00
}
]
2020-01-15 10:11:26 +08:00
}
]
}
];
},
clickEvent(obj, data, ele) {
2020-01-15 13:27:07 +08:00
switch (obj.type) {
case 'system' :
break;
case 'interface':
2020-01-19 18:36:17 +08:00
this.$router.push({ path: `/iscs/design/edit/${obj.id}/${obj.mode}` });
2020-01-15 13:27:07 +08:00
break;
}
2020-01-15 10:11:26 +08:00
},
showContextMenu(e, obj, node, vueElem) {
if (obj && obj.type == 'map') {
e.preventDefault();
const menu = DeviceMenu.Map;
this.point = {
x: e.clientX,
y: e.clientY
};
this.editModel = obj;
this.editModel.lineCode = obj.lineCode;
this.$store.dispatch('menuOperation/setPopMenu', { position: this.point, menu: menu });
}
}
}
};
</script>
<style lang="scss" scoped>
.clearfix{
padding: 0 20px;
border-bottom: 1px solid #EBEEF5;
box-sizing: border-box;
height: 47px;
line-height: 47px;
2020-04-15 15:42:47 +08:00
position: absolute;
width:100%;
2020-01-15 10:11:26 +08:00
}
.text_item{
2020-04-15 15:42:47 +08:00
height: 100%;
padding-top: 47px;
2020-01-15 10:11:26 +08:00
.tree_box{
height: calc(100% - 89px);
overflow-y: auto;
}
}
.buttonList{
padding: 8px 0px 8px 0px;
border-top: 1px #ccc solid;
}
.eachButton{
margin-left:10px;
}
.uploadDemo {
position: relative;
overflow: hidden;
// float: right;
padding: 9px 15px;
margin-right: 3px;
cursor: pointer;
input {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
opacity: 0;
cursor: pointer;
}
}
.map-list-main{
text-align:left;
height: 100%;
2020-04-15 15:42:47 +08:00
position: relative;
2020-01-15 10:11:26 +08:00
}
</style>