Compare commits
No commits in common. "730cbd18585a0a0cd89dcb61a54a22159817c1fd" and "c8dde03c280b654ec2293f829702a9495997f687" have entirely different histories.
730cbd1858
...
c8dde03c28
|
|
@ -2684,11 +2684,6 @@ svg.loading-icon {
|
||||||
}
|
}
|
||||||
|
|
||||||
.tree-line{
|
.tree-line{
|
||||||
|
|
||||||
&.el-tree--highlight-current .el-tree-node>.el-tree-node__content:hover{
|
|
||||||
background: rgba(125, 174, 255, 0.3);
|
|
||||||
}
|
|
||||||
|
|
||||||
&.el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content{
|
&.el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content{
|
||||||
background: rgba(125, 174, 255, 0.7);
|
background: rgba(125, 174, 255, 0.7);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,6 @@
|
||||||
:indent="0"
|
:indent="0"
|
||||||
icon-class="none"
|
icon-class="none"
|
||||||
highlight-current
|
highlight-current
|
||||||
:current-node-key="currentNodeKey"
|
|
||||||
@node-click="nodeClick"
|
@node-click="nodeClick"
|
||||||
:data="treeData"
|
:data="treeData"
|
||||||
>
|
>
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ Component.registerHooks([
|
||||||
export default class ViewLeftComponent extends Vue {
|
export default class ViewLeftComponent extends Vue {
|
||||||
//标题左侧图标
|
//标题左侧图标
|
||||||
imgSrc = require("@/assets/icons/png/env/env-title-icon.png");
|
imgSrc = require("@/assets/icons/png/env/env-title-icon.png");
|
||||||
currentNodeKey = '';
|
|
||||||
treeData = treeData;
|
treeData = treeData;
|
||||||
viewList = [
|
viewList = [
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -267,8 +267,6 @@ export default class OverViewComponent extends BaseComponent {
|
||||||
}
|
}
|
||||||
closeRight(){
|
closeRight(){
|
||||||
this.viewRightShow = false;
|
this.viewRightShow = false;
|
||||||
const dom = document.querySelector('div.is-current') as any;
|
|
||||||
dom.classList.remove('is-current')
|
|
||||||
if(this.currentEvent ){
|
if(this.currentEvent ){
|
||||||
this.viewLayer[this.currentEvent.id].selected = false;
|
this.viewLayer[this.currentEvent.id].selected = false;
|
||||||
this.addCustom(this.viewLayer[this.currentEvent.id],true);
|
this.addCustom(this.viewLayer[this.currentEvent.id],true);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue