Browse Source

组织架构代码调整

V1.0
PLUTO 2 years ago
parent
commit
b0f25f6549
  1. BIN
      src/assets/images/home/dyzxhClick.png
  2. 70
      src/components/GridTree/nodeWrap.vue
  3. 35
      src/components/JwTree/nodeWrap.vue
  4. 8
      src/components/NameSplit/index.vue
  5. 83
      src/components/Tree/nodeWrap.vue
  6. 55
      src/views/dataBoard/organizational/dangTree/index.vue
  7. 66
      src/views/dataBoard/organizational/gridTree/index.vue
  8. 29
      src/views/dataBoard/organizational/jwTree/index.vue

BIN
src/assets/images/home/dyzxhClick.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

70
src/components/GridTree/nodeWrap.vue

@ -17,20 +17,32 @@
<div class="condition-node-box">
<div class="auto-judge">
<div v-if="getOnerSixLevelFlag(item)">
<div class="wgdzb">
<div :class="[item.children && item.children.length > 0 ? 'wgdzbHover' : 'wgdzb']">
<nameSplit :item="item" areaName="organizationName" peopleName="name" />
</div>
<div v-if="item._children" style="text-align: center" @click="getChildrenData(item, index, nodeConfig.children)">
<img v-if="item.children && item.children.length > 0" :src="require('@/assets/images/home/sh.png')" alt="" />
<img v-else :src="require('@/assets/images/home/zk.png')" alt="" />
</div>
</div>
<div v-if="item.level === 'building_chief'">
<div class="lydxz">
<div :class="[item.children && item.children.length > 0 ? 'lydxzHover' : 'lydxz']">
<nameSplit :item="item" areaName="organizationName" peopleName="name" />
</div>
<div v-if="item._children" style="text-align: center" @click="getChildrenData(item, index, nodeConfig.children)">
<img v-if="item.children && item.children.length > 0" :src="require('@/assets/images/home/sh.png')" alt="" />
<img v-else :src="require('@/assets/images/home/zk.png')" alt="" />
</div>
</div>
<div v-if="item.level === 'unit_chief'">
<div @click="gotoPersonnel(item)" :class="[item.categoryWarn === 'red' ? 'dyzxhRed' : item.categoryWarn === 'yellow' ? 'dyzxhYellow' : item.categoryWarn === 'green' ? 'dyzxhGreen' : 'dyzxh']" :title="item.organizationName">
<div @click="gotoPersonnel(item)" :class="[item.categoryWarn === 'red' ? 'dyzxhRed' : item.categoryWarn === 'yellow' ? 'dyzxhYellow' : item.categoryWarn === 'green' ? 'dyzxhGreen' : '', item.children && item.children.length > 0 ? 'dyzxhHover' : 'dyzxh']" :title="item.organizationName">
<!-- {{ spliceNameFun(item.organizationName, 3) }} -->
{{ item.organizationName }}
</div>
<div v-if="item._children" style="text-align: center" @click="getChildrenData(item, index, nodeConfig.children)">
<img v-if="item.children && item.children.length > 0" :src="require('@/assets/images/home/sh.png')" alt="" />
<img v-else :src="require('@/assets/images/home/zk.png')" alt="" />
</div>
</div>
</div>
</div>
@ -96,6 +108,20 @@ export default {
}
}
},
getChildrenData(item, idx, arr) {
arr.forEach((element, index) => {
if (index === idx) {
if (element.children) {
element._children = element.children;
element.children = null;
} else {
element.children = element._children;
}
} else {
element.children = null;
}
});
},
gotoPersonnel(item) {
const grandPid = this.findParentParentId(this.nodeConfig, item.pid);
const name = item.organizationName ? item.organizationName : "四号楼二单元302";
@ -157,27 +183,55 @@ export default {
.auto-judge {
.wgdzb {
@include spanLevel;
width: 132px;
height: 96px;
min-width: 120px;
height: 126px;
text-align: center;
padding-top: 5px;
background-image: url(~@/assets/images/home/zbbg.png);
background-size: 100%;
background-repeat: no-repeat;
background-position: center;
// background-size: 100%;
}
.wgdzbHover {
@include spanLevel;
min-width: 120px;
height: 126px;
text-align: center;
padding-top: 5px;
background-image: url(~@/assets/images/home/zbbgClick.png);
// background-size: 100%;
background-repeat: no-repeat;
background-position: center;
}
.lydxz {
@include spanLevel;
// @include normalLevel;
text-align: center;
width: 216px;
height: 50px;
width: 90px;
height: 98px;
padding-top: 5px;
background-image: url(~@/assets/images/home/lydxzTree.png);
background-size: 100%;
}
.lydxzHover {
@include spanLevel;
// @include normalLevel;
text-align: center;
width: 90px;
height: 98px;
padding-top: 5px;
background-image: url(~@/assets/images/home/lydxzClick.png);
background-size: 100%;
}
.dyzxh {
@include lastLevel;
background-image: url(~@/assets/images/home/dyzxhTree.png);
}
.dyzxhHover {
@include lastLevel;
background-image: url(~@/assets/images/home/dyzxhClick.png);
}
.dyzxhGreen {
@include lastLevel;
background-image: url(~@/assets/images/home/gridGreen.png);

35
src/components/JwTree/nodeWrap.vue

@ -26,7 +26,7 @@
</div>
</div>
<div v-if="item.level === 'building_chief'">
<div :class="[tem.children && item.children.length > 0 ? 'lydxzHover' : 'lydxz']">
<div :class="[item.children && item.children.length > 0 ? 'lydxzHover' : 'lydxz']">
<nameSplit :item="item" areaName="organizationName" peopleName="name" pageName="居委组织架构" />
</div>
<div v-if="item._children" style="text-align: center" @click="getChildrenData(item, index, nodeConfig.children)">
@ -35,7 +35,7 @@
</div>
</div>
<div v-if="item.level === 'unit_chief' || item.level === 'public_welfare_post'">
<div @click="gotoPersonnel(item.resiId, '居委组织架构')" class="dyzxh gotoDesc" :title="item.organizationName">
<div @click="gotoPersonnel(item.resiId, '居委组织架构')" :class="[item.children && item.children.length > 0 ? 'dyzxhHover' : 'dyzxh', 'gotoDesc']" :title="item.organizationName">
{{ spliceNameFun(item.organizationName, 3) }}
</div>
<div v-if="item._children" style="text-align: center" @click="getChildrenData(item, index, nodeConfig.children)">
@ -93,14 +93,6 @@ export default {
},
getChildrenData(item, idx, arr) {
// if (!item._children) {
// this.$message({
// message: "",
// type: "error",
// });
// return;
// }
// arritem_childrenitem.children
arr.forEach((element, index) => {
if (index === idx) {
if (element.children) {
@ -169,21 +161,25 @@ export default {
.auto-judge {
.wgdzb {
@include spanLevel;
width: 90px;
min-width: 120px;
height: 126px;
text-align: center;
padding-top: 5px;
background-image: url(~@/assets/images/home/zbbg.png);
background-size: 100%;
background-repeat: no-repeat;
background-position: center;
// background-size: 100%;
}
.wgdzbHover {
@include spanLevel;
width: 90px;
min-width: 120px;
height: 126px;
text-align: center;
padding-top: 5px;
background-image: url(~@/assets/images/home/zbbgClick.png);
background-size: 100%;
// background-size: 100%;
background-repeat: no-repeat;
background-position: center;
}
.lydxz {
@include spanLevel;
@ -215,6 +211,17 @@ export default {
background-image: url(~@/assets/images/home/dyzxhTree.png);
background-size: 100%;
}
.dyzxhHover {
@include spanLevel;
@include normalLevel;
height: 118px;
width: 30px;
writing-mode: tb-rl;
margin-top: -12px;
background-image: url(~@/assets/images/home/dyzxhClick.png);
background-size: 100%;
}
.lxjt {
@include spanLevel;
display: flex;

8
src/components/NameSplit/index.vue

@ -1,6 +1,6 @@
<template>
<div class="node-com">
<div v-if="!flag" class="nodeTitle" :title="getAllName(item[areaName])">{{ spliceNameFun(item[areaName], 4) }}</div>
<div v-if="!flag" class="nodeTitle" :title="getAllName(item[areaName])">{{ spliceNameFun(item[areaName], 8) }}</div>
<div class="name_more peoName" v-if="item[peopleName] && !item[peopleName].includes(',')" @click="gotoPersonnel(item.resiId)" :title="getAllName(item[peopleName])">{{ spliceNameFun(item[peopleName], 12) }}</div>
<div class="name_more" v-if="item[peopleName] && item[peopleName].includes(',')">
<span v-for="(i, k) in getItemNameArr(item[peopleName])" :key="i" @click="gotoPersonnel(item.resiId.split(',')[k])" :title="getAllName(i)">{{ spliceNameFun(i, 12) }}{{ k === getItemNameArr(item[peopleName]).length - 1 ? "" : "," }}</span>
@ -47,13 +47,13 @@ export default {
},
spliceNameFun(row, num) {
return row;
return row.substring(0, num);
},
gotoPersonnel(id) {
if (id) {
this.$router.push({ path: `/organizational/orgPersonnel/${this.pageName}`, query: { user_id: id } });
} else {
this.$message.error("无法跳转!");
this.$message.error("该人员暂无居民信息!");
}
},
},
@ -62,7 +62,7 @@ export default {
<style scope lang="scss">
.node-com {
padding: 0 12px;
// padding: 0 12px;
.nodeTitle {
font-size: 16px;
font-family: PingFang SC;

83
src/components/Tree/nodeWrap.vue

@ -17,19 +17,31 @@
<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)">
<div :class="[item.children && item.children.length > 0 ? 'wgdzbHover' : 'wgdzb']">
<nameSplit :item="item" areaName="partyOrgName" peopleName="principalName" pageName="党组织架构" />
</div>
<div v-if="item._children" style="text-align: center" @click="getChildrenData(item, index, nodeConfig.children)">
<img v-if="item.children && item.children.length > 0" :src="require('@/assets/images/home/sh.png')" alt="" />
<img v-else :src="require('@/assets/images/home/zk.png')" alt="" />
</div>
</div>
<div v-if="item.partyOrgLevel === 8">
<div class="lydxz" @click="">
<div :class="[item.children && item.children.length > 0 ? 'lydxzHover' : 'lydxz']">
<nameSplit :item="item" areaName="partyOrgName" peopleName="principalName" pageName="党组织架构" />
</div>
<div v-if="item._children" style="text-align: center" @click="getChildrenData(item, index, nodeConfig.children)">
<img v-if="item.children && item.children.length > 0" :src="require('@/assets/images/home/sh.png')" alt="" />
<img v-else :src="require('@/assets/images/home/zk.png')" alt="" />
</div>
</div>
<div v-if="item.partyOrgLevel === 9">
<div class="dyzxh">
<div :class="[item.children && item.children.length > 0 ? 'dyzxhHover' : 'dyzxh']">
<nameSplit :item="item" :flag="flag" areaName="partyOrgName" peopleName="partyOrgName" pageName="党组织架构" />
</div>
<div v-if="item._children" style="text-align: center" @click="getChildrenData(item, index, nodeConfig.children)">
<img v-if="item.children && item.children.length > 0" :src="require('@/assets/images/home/sh.png')" alt="" />
<img v-else :src="require('@/assets/images/home/zk.png')" alt="" />
</div>
</div>
<div class="lxjtWrap" v-if="item.partyOrgLevel === 10">
<popHomeTip :item="item" pageName="党组织架构" />
@ -59,17 +71,24 @@ export default {
flag: true,
};
},
mounted() {},
mounted() {
},
computed: {},
watch: {},
methods: {
getChildrenData(item) {
if (item.children) {
item._children = item.children;
item.children = null;
} else {
item.children = item._children;
}
getChildrenData(item, idx, arr) {
arr.forEach((element, index) => {
if (index === idx) {
if (element.children) {
element._children = element.children;
element.children = null;
} else {
element.children = element._children;
}
} else {
element.children = null;
}
});
},
},
};
@ -103,23 +122,45 @@ export default {
.auto-judge {
.wgdzb {
@include spanLevel;
width: 90px;
height: 128px;
min-width: 120px;
height: 126px;
text-align: center;
padding-top: 5px;
background-image: url(~@/assets/images/home/zbbg.png);
background-size: 100%;
background-repeat: no-repeat;
background-position: center;
}
.wgdzbHover {
@include spanLevel;
min-width: 120px;
height: 126px;
text-align: center;
padding-top: 5px;
background-image: url(~@/assets/images/home/zbbgClick.png);
// background-size: 100%;
background-repeat: no-repeat;
background-position: center;
}
.lydxz {
@include spanLevel;
// @include normalLevel;
text-align: center;
width: 216px;
height: 50px;
width: 90px;
height: 98px;
padding-top: 5px;
background-image: url(~@/assets/images/home/lydxzTree.png);
background-size: 100%;
}
.lydxzHover {
@include spanLevel;
// @include normalLevel;
text-align: center;
width: 90px;
height: 98px;
padding-top: 5px;
background-image: url(~@/assets/images/home/lydxzClick.png);
background-size: 100%;
}
.dyzxh {
@include spanLevel;
@include normalLevel;
@ -130,6 +171,16 @@ export default {
background-image: url(~@/assets/images/home/dyzxhTree.png);
background-size: 100%;
}
.dyzxhHover {
@include spanLevel;
@include normalLevel;
height: 118px;
width: 30px;
writing-mode: tb-rl;
margin-top: -12px;
background-image: url(~@/assets/images/home/dyzxhClick.png);
background-size: 100%;
}
.lxjt {
@include spanLevel;
display: flex;

55
src/views/dataBoard/organizational/dangTree/index.vue

@ -2,7 +2,7 @@
<div class="wrap">
<!-- v-on:wheel="zoomSize" :style="'transform: scale(' + nowVal / 100 + ');'" -->
<div class="content">
<div v-for="(item, index) in levelArr" :key="item" :class="[item > 9 ? 'lastLevel1' : '', item === 9 ? 'lastLevel' : '', `flowLevel-${index + 1}`]" :style="{ height: item === 8 ? '90px' : '', lineHeight: item === 8 ? '90px' : '' }">
<div v-for="(item, index) in levelArr" :key="item" :class="[item > 9 ? 'lastLevel1' : '', item === 9 ? 'lastLevel' : '', `flowLevel-${index + 1}`]" :style="{ height: item === 8 ? '150px' : '', lineHeight: item === 8 ? '150px' : '' }">
<div :class="[item === 8 ? 'otherTop' : '']">{{ getTitleNameMapFun(item) }}</div>
</div>
<el-row>
@ -10,7 +10,7 @@
<div class="contentList"></div>
</el-col>
<el-col :span="20">
<div class="dingflow-design" v-loading="loading" element-loading-text="加载中" element-loading-spinner="el-icon-loading" element-loading-background="rgba(0, 21, 64, 0.3)">
<div class="dingflow-design" :style="{ height: treeHeight + 'px' }" v-loading="loading" element-loading-text="加载中" element-loading-spinner="el-icon-loading" element-loading-background="rgba(0, 21, 64, 0.3)">
<nodeWrap :nodeConfig.sync="nodeConfig"></nodeWrap>
</div>
</el-col>
@ -29,6 +29,7 @@ export default {
nowVal: 100,
nodeConfig: {},
zoom: 0,
treeHeight: 300,
};
},
watch: {
@ -36,7 +37,7 @@ export default {
if (n.orgId) {
this.levelArr = [];
this.nodeConfig = {};
// this.getTreeData();
this.getTreeData();
}
},
},
@ -65,6 +66,7 @@ export default {
//
getDataPLevel(data) {
console.log("data", data);
data.forEach((item) => {
this.levelArr.push(item.partyOrgLevel);
if (item.children && item.children.length > 0) {
@ -72,6 +74,7 @@ export default {
}
});
const myArray = [...new Set(this.levelArr)];
this.treeHeight = myArray.length * 180 + 180;
this.levelArr = this.getLevelArrNum(myArray);
},
@ -87,7 +90,7 @@ export default {
this.hideChildrenData(item._children);
}
});
console.log(newData);
this.nodeConfig = newData[0];
},
//
@ -103,9 +106,8 @@ export default {
this.$message.error("暂无数据");
return;
}
// this.nodeConfig = data[0];
this.hideChildrenData(data);
this.getDataPLevel(data);
this.hideChildrenData(data);
this.loading = false;
} else {
this.loading = false;
@ -144,7 +146,7 @@ export default {
};
</script>
<style lang="scss">
<style lang="scss" scoped>
@mixin flowLevwlCommon {
position: absolute;
width: 100%;
@ -175,11 +177,11 @@ export default {
}
.lastLevel {
height: 145px !important;
height: 160px !important;
margin-top: -45px !important;
}
.lastLevel1 {
height: 145px !important;
height: 160px !important;
margin-top: -37px !important;
}
@ -210,19 +212,19 @@ export default {
.flowLevel-6,
.flowLevel-7 {
@include flowLevwlCommon;
height: 160px;
height: 180px;
}
.flowLevel-2 {
top: 181px;
line-height: 110px;
line-height: 178px;
div {
padding-left: 80px;
&::after {
@include flowLevelAfter;
top: 26px;
top: 59px;
left: 15px;
width: 180px;
height: 60px;
@ -232,15 +234,15 @@ export default {
}
.flowLevel-3 {
top: 329px;
line-height: 120px;
top: 379px;
line-height: 185px;
div {
padding-left: 80px;
&::after {
@include flowLevelAfter;
top: 31px;
top: 63px;
left: 15px;
width: 180px;
height: 60px;
@ -250,15 +252,15 @@ export default {
}
.flowLevel-4 {
top: 475px;
line-height: 128px;
top: 578px;
line-height: 177px;
div {
padding-left: 80px;
&::after {
@include flowLevelAfter;
top: 35px;
top: 60px;
left: 15px;
width: 180px;
height: 60px;
@ -268,7 +270,7 @@ export default {
}
.flowLevel-5 {
top: 623px;
top: 776px;
line-height: 130px;
div {
@ -286,9 +288,8 @@ export default {
}
.flowLevel-6 {
top: 771px;
top: 974px;
line-height: 130px;
div {
padding-left: 80px;
@ -304,7 +305,7 @@ export default {
}
.flowLevel-7 {
top: 922px;
top: 1172px;
line-height: 130px;
div {
@ -323,13 +324,13 @@ export default {
.otherTop {
&::after {
top: 15px !important;
top: 46px !important;
}
}
.flowLevel-8 {
@include flowLevwlCommon;
top: 1070px;
top: 1370px;
height: 90px;
line-height: 90px;
@ -349,8 +350,8 @@ export default {
.flowLevel-9 {
@include flowLevwlCommon;
top: 1179px;
height: 135px;
top: 1587px;
height: 160px;
line-height: 135px;
div {
@ -369,7 +370,7 @@ export default {
.flowLevel-10 {
@include flowLevwlCommon;
top: 1338px;
top: 1756px;
height: 135px;
line-height: 135px;

66
src/views/dataBoard/organizational/gridTree/index.vue

@ -2,7 +2,7 @@
<div class="wrap">
<!-- v-on:wheel="zoomSize" :style="'transform: scale(' + nowVal / 100 + ');'" -->
<div class="content">
<div v-for="(item, index) in levelArr" :key="item" :class="[item === 'unit_chief' ? 'lastLevel' : '', `flowLevel-${index + 1}`]" :style="{ height: item === 'building_chief' ? '90px' : '', lineHeight: item === 'building_chief' ? '90px' : '' }">
<div v-for="(item, index) in levelArr" :key="item" :class="[item === 'unit_chief' ? 'lastLevel' : '', `flowLevel-${index + 1}`]" :style="{ height: item === 'building_chief' ? '150px' : '', lineHeight: item === 'building_chief' ? '150px' : '' }">
<div :class="[item === 'building_chief' ? 'otherTop' : '']">{{ getTitleNameMapFun(item) }}</div>
</div>
<el-row>
@ -10,7 +10,7 @@
<div class="contentList"></div>
</el-col>
<el-col :span="20">
<div class="dingflow-design" v-loading="loading" element-loading-text="加载中" element-loading-spinner="el-icon-loading" element-loading-background="rgba(0, 21, 64, 0.3)">
<div class="dingflow-design" :style="{ height: treeHeight + 'px' }" v-loading="loading" element-loading-text="加载中" element-loading-spinner="el-icon-loading" element-loading-background="rgba(0, 21, 64, 0.3)">
<nodeWrapGrid :nodeConfig.sync="nodeConfig"></nodeWrapGrid>
</div>
</el-col>
@ -28,6 +28,7 @@ export default {
levelArr: [],
nowVal: 100,
nodeConfig: {},
treeHeight: 300,
};
},
computed: {},
@ -80,8 +81,25 @@ export default {
}
});
const myArray = [...new Set(this.levelArr)];
this.treeHeight = myArray.length * 180 + 164;
this.levelArr = this.getLevelArrNum(myArray);
},
hideChildrenData(data) {
const newData = [...data];
newData.forEach((item) => {
if (item.laneLevel === 1) {
this.hideChildrenData(item.children);
}
if (item.children && item.children.length > 0 && item.laneLevel >= 2) {
item._children = item.children;
item.children = null;
this.hideChildrenData(item._children);
}
});
this.nodeConfig = newData[0];
},
//
getTreeData() {
this.loading = true;
@ -95,8 +113,8 @@ export default {
this.$message.error("暂无数据");
return;
}
this.nodeConfig = data[0];
this.getDataPLevel(data);
this.hideChildrenData(data);
this.loading = false;
} else {
this.loading = false;
@ -133,7 +151,7 @@ export default {
};
</script>
<style lang="scss">
<style lang="scss" scoped>
@mixin flowLevwlCommon {
position: absolute;
width: 100%;
@ -195,19 +213,19 @@ export default {
.flowLevel-6,
.flowLevel-7 {
@include flowLevwlCommon;
height: 126px;
height: 180px;
}
.flowLevel-2 {
top: 181px;
line-height: 110px;
line-height: 178px;
div {
padding-left: 80px;
&::after {
@include flowLevelAfter;
top: 26px;
top: 60px;
left: 15px;
width: 180px;
height: 60px;
@ -217,15 +235,15 @@ export default {
}
.flowLevel-3 {
top: 329px;
line-height: 120px;
top: 379px;
line-height: 180px;
div {
padding-left: 80px;
&::after {
@include flowLevelAfter;
top: 31px;
top: 60px;
left: 15px;
width: 180px;
height: 60px;
@ -235,15 +253,15 @@ export default {
}
.flowLevel-4 {
top: 475px;
line-height: 128px;
top: 578px;
line-height: 180px;
div {
padding-left: 80px;
&::after {
@include flowLevelAfter;
top: 35px;
top: 60px;
left: 15px;
width: 180px;
height: 60px;
@ -253,15 +271,15 @@ export default {
}
.flowLevel-5 {
top: 623px;
line-height: 130px;
top: 776px;
line-height: 180px;
div {
padding-left: 80px;
&::after {
@include flowLevelAfter;
top: 35px;
top: 60px;
left: 15px;
width: 180px;
height: 60px;
@ -271,15 +289,15 @@ export default {
}
.flowLevel-6 {
top: 771px;
line-height: 130px;
top: 974px;
line-height: 180px;
div {
padding-left: 80px;
&::after {
@include flowLevelAfter;
top: 35px;
top: 60px;
left: 15px;
width: 180px;
height: 60px;
@ -289,7 +307,7 @@ export default {
}
.flowLevel-7 {
top: 922px;
top: 1171px;
line-height: 130px;
div {
@ -308,22 +326,22 @@ export default {
.otherTop {
&::after {
top: 15px !important;
top: 45px !important;
}
}
.flowLevel-8 {
@include flowLevwlCommon;
top: 1070px;
top: 1387px;
height: 90px;
line-height: 90px;
line-height: 138px;
div {
padding-left: 80px;
&::after {
@include flowLevelAfter;
top: 14px;
top: 40px;
left: 15px;
width: 180px;
height: 60px;

29
src/views/dataBoard/organizational/jwTree/index.vue

@ -37,7 +37,7 @@ export default {
if (n.orgId) {
this.levelArr = [];
this.nodeConfig = {};
// this.getTreeData();
this.getTreeData();
}
},
},
@ -83,7 +83,7 @@ export default {
}
});
const myArray = [...new Set(this.levelArr)];
this.treeHeight = myArray.length * 180 + 100;
this.treeHeight = myArray.length * 180 + 164;
this.levelArr = this.getLevelArrNum(myArray);
},
@ -154,7 +154,7 @@ export default {
};
</script>
<style lang="scss">
<style lang="scss" scoped>
@mixin flowLevwlCommon {
position: absolute;
width: 100%;
@ -220,7 +220,7 @@ export default {
.flowLevel-6,
.flowLevel-7 {
@include flowLevwlCommon;
height: 180px;
height: 180px !important;
}
.flowLevel-2 {
@ -261,14 +261,14 @@ export default {
.flowLevel-4 {
top: 577px;
line-height: 128px;
line-height: 175px;
div {
padding-left: 80px;
&::after {
@include flowLevelAfter;
top: 43px;
top: 58px;
left: 15px;
width: 180px;
height: 60px;
@ -279,6 +279,7 @@ export default {
.flowLevel-5 {
top: 775px;
height: 180px !important;
line-height: 130px;
div {
@ -296,8 +297,9 @@ export default {
}
.flowLevel-6 {
top: 991px;
top: 974px;
line-height: 171px;
height: 180px !important;
div {
padding-left: 80px;
@ -314,15 +316,16 @@ export default {
}
.flowLevel-7 {
top: 1161px;
line-height: 130px;
top: 1172px;
line-height: 150px;
height: 150px !important;
div {
padding-left: 80px;
&::after {
@include flowLevelAfter;
top: 35px;
top: 46px;
left: 15px;
width: 180px;
height: 60px;
@ -339,7 +342,7 @@ export default {
.flowLevel-8 {
@include flowLevwlCommon;
top: 1070px;
top: 1387px;
height: 90px;
line-height: 90px;
@ -359,7 +362,7 @@ export default {
.flowLevel-9 {
@include flowLevwlCommon;
top: 1179px;
top: 1558px;
height: 135px;
line-height: 135px;
@ -379,7 +382,7 @@ export default {
.flowLevel-10 {
@include flowLevwlCommon;
top: 1338px;
top: 1738px;
height: 135px;
line-height: 135px;

Loading…
Cancel
Save