epmet pc工作端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

147 lines
4.2 KiB

3 years ago
<template>
<div>
<div class="node-wrap" v-if="nodeConfig.laneLevel === 1">
3 years ago
<div class="node-wrap-box">
<div class="node-box-after">
<div class="nodeBoxTop">
<nameSplit :item="nodeConfig" areaName="partyOrgName" peopleName="principalName" pageName="党组织架构" />
</div>
3 years ago
</div>
</div>
</div>
<div class="branch-wrap">
<div class="branch-box-wrap">
<div class="branch-box">
<div class="col-box" v-for="(item, index) in nodeConfig.children" :key="index">
<div class="condition-node">
<div class="condition-node-box">
<div class="auto-judge">
<div v-if="item.laneLevel >= 2 && item.laneLevel <= 7 && item.partyOrgLevel < 8">
<div class="wgdzb" @click="getChildrenData(item)">
<nameSplit :item="item" areaName="partyOrgName" peopleName="principalName" pageName="党组织架构" />
</div>
3 years ago
</div>
<div v-if="item.partyOrgLevel === 8">
<div class="lydxz" @click="">
<nameSplit :item="item" areaName="partyOrgName" peopleName="principalName" pageName="党组织架构" />
</div>
3 years ago
</div>
<div v-if="item.partyOrgLevel === 9">
<div class="dyzxh">
<nameSplit :item="item" :flag="flag" areaName="partyOrgName" peopleName="partyOrgName" pageName="党组织架构" />
</div>
3 years ago
</div>
<div class="lxjtWrap" v-if="item.partyOrgLevel === 10">
<popHomeTip :item="item" pageName="党组织架构" />
3 years ago
</div>
</div>
</div>
</div>
<nodeWrap v-if="item.children" :nodeConfig.sync="item"></nodeWrap>
<template v-if="index == 0">
<div class="top-left-cover-line"></div>
</template>
<template v-if="index == nodeConfig.children.length - 1">
<div class="top-right-cover-line"></div>
</template>
</div>
</div>
</div>
</div>
<!-- <nodeWrap v-if="nodeConfig.childNode" :nodeConfig.sync="nodeConfig.childNode"></nodeWrap> -->
3 years ago
</div>
</template>
<script>
export default {
props: ["nodeConfig"],
data() {
return {
flag: true,
};
3 years ago
},
mounted() {},
computed: {},
watch: {},
methods: {
getChildrenData(item) {
if (item.children) {
item._children = item.children;
item.children = null;
} else {
item.children = item._children;
}
},
},
3 years ago
};
</script>
<style scoped lang="scss">
@mixin spanLevel {
font-size: 14px;
color: #fff;
word-break: break-all;
}
@mixin normalLevel {
display: flex;
align-items: center;
justify-content: space-around;
}
3 years ago
.node-box-after {
.nodeBoxTop {
3 years ago
font-size: 14px;
position: relative;
color: #fff;
display: inline-block;
width: 168px;
height: 164px;
padding-top: 10px;
text-align: center;
background-image: url(~@/assets/images/home/firstLevel.png);
background-size: 100%;
3 years ago
}
}
.auto-judge {
.wgdzb {
@include spanLevel;
width: 90px;
height: 128px;
text-align: center;
padding-top: 5px;
background-image: url(~@/assets/images/home/zbbg.png);
background-size: 100%;
3 years ago
}
.lydxz {
@include spanLevel;
// @include normalLevel;
text-align: center;
width: 216px;
3 years ago
height: 50px;
padding-top: 5px;
background-image: url(~@/assets/images/home/lydxzTree.png);
background-size: 100%;
3 years ago
}
.dyzxh {
@include spanLevel;
@include normalLevel;
3 years ago
height: 118px;
width: 30px;
writing-mode: tb-rl;
margin-top: -12px;
background-image: url(~@/assets/images/home/dyzxhTree.png);
background-size: 100%;
3 years ago
}
.lxjt {
@include spanLevel;
display: flex;
align-items: center;
justify-content: space-around;
3 years ago
height: 118px;
width: 30px;
writing-mode: tb-rl;
margin-top: -12px;
background-image: url(~@/assets/images/home/dyzxhTree.png);
background-size: 100%;
3 years ago
}
}
</style>