main
parent
4c92d07df8
commit
69e6073dc1
|
@ -10,7 +10,13 @@
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<div class="right">
|
<div class="right">
|
||||||
<div class="right-set">
|
<div class="right-set">
|
||||||
<el-tree ref="taskTree" :data="data" node-key="device_name" :props="defaultProps" :highlight-current="true" accordion
|
<el-tree
|
||||||
|
:data="data"
|
||||||
|
:props="defaultProps"
|
||||||
|
:highlight-current="true"
|
||||||
|
accordion
|
||||||
|
node-key="id"
|
||||||
|
:current-node-key="currentNodekey"
|
||||||
@node-click="handleNodeClick">
|
@node-click="handleNodeClick">
|
||||||
</el-tree>
|
</el-tree>
|
||||||
</div>
|
</div>
|
||||||
|
@ -53,13 +59,37 @@ export default {
|
||||||
const taskTree = ref(null);
|
const taskTree = ref(null);
|
||||||
const state = reactive({
|
const state = reactive({
|
||||||
indexi: 0,
|
indexi: 0,
|
||||||
qdDatas: [],
|
|
||||||
data: [],
|
qdDatas: [{
|
||||||
|
id: 1,
|
||||||
|
name: '驱动一',
|
||||||
|
},{
|
||||||
|
id: 2,
|
||||||
|
name: '驱动二',
|
||||||
|
},{
|
||||||
|
id: 3,
|
||||||
|
name: '驱动三',
|
||||||
|
},{
|
||||||
|
id: 4,
|
||||||
|
name: '驱动四',
|
||||||
|
},{
|
||||||
|
id: 5,
|
||||||
|
name: '驱动五',
|
||||||
|
}],
|
||||||
|
data: [{
|
||||||
|
id: 11,
|
||||||
|
label: '设备一',
|
||||||
|
}, {
|
||||||
|
id: 12,
|
||||||
|
label: '设备二',
|
||||||
|
}, {
|
||||||
|
id: 13,
|
||||||
|
label: '设备三',
|
||||||
|
|
||||||
|
}],
|
||||||
|
currentNodekey: 11,
|
||||||
tableData: [],
|
tableData: [],
|
||||||
defaultProps: {
|
|
||||||
label: 'device_name',
|
|
||||||
children: 'children'
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
|
@ -136,29 +166,12 @@ export default {
|
||||||
width: 15%;
|
width: 15%;
|
||||||
border: 1px solid #006b3b;
|
border: 1px solid #006b3b;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
|
|
||||||
img {
|
|
||||||
width: 24px;
|
width: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
>div {
|
|
||||||
background: #e2f4e5;
|
|
||||||
margin-top: 10px;
|
|
||||||
text-align: center;
|
|
||||||
line-height: 40px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.active {
|
|
||||||
background: #00AAA3;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.right {
|
.right {
|
||||||
width: 84%;
|
width: 84%;
|
||||||
border: 1px solid #006b3b;
|
border: 1px solid #006b3b;
|
||||||
display: flex;
|
|
||||||
justify-content: space-around;
|
justify-content: space-around;
|
||||||
|
|
||||||
.right-set {
|
.right-set {
|
||||||
|
@ -174,5 +187,27 @@ export default {
|
||||||
// }
|
// }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.active {
|
||||||
|
background: #00AAA3;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.right {
|
||||||
|
width: 84%;
|
||||||
|
border: 1px solid #006b3b;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-around;
|
||||||
|
.right-set {
|
||||||
|
width: 10%;
|
||||||
|
padding: 20px;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
.right-table {
|
||||||
|
width: 88%;
|
||||||
|
// .el-tree-node {
|
||||||
|
// border: 1px solid #ddd !important;
|
||||||
|
// margin-top: 10px !important;
|
||||||
|
// }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue