123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489 |
- <template>
- <table v-if="treeData && treeData.orgName">
- <tr>
- <td
- :colspan="treeData.children ? treeData.children.length * 2 : 1"
- :class="{
- parentLevel: treeData.children,
- extend: treeData.children && treeData.children.length && treeData.isExtend,
- }"
- >
- <div :class="{ node: true, hasMate: treeData.mate }">
- <div class="person" @click="$emit('click-node', treeData)">
- <!-- <el-popover v-if="false" placement="top" width="180" trigger="hover" > -->
- <el-popover
- v-if="
- !isDetail &&
- !(
- userInfo.roleType == '3' ||
- (userInfo.roleType == '4' && Number(treeData.level) === 2) ||
- (userInfo.roleType == '5' && Number(treeData.level) === 3)
- )
- "
- placement="top"
- width="180"
- trigger="hover"
- >
- <!-- v-if="treeData.isAdd && userInfo.roleType != '3'" -->
- <div style="margin: 0">
- <el-button
- size="mini"
- type="primary"
- @click="addStock(0)"
-
- v-if="
- !(
- userInfo.roleType == '3' ||
- (userInfo.roleType == '4' && Number(treeData.level) === 2) ||
- (userInfo.roleType == '4' && Number(treeData.level) === 3) ||
- (userInfo.roleType == '5' && Number(treeData.level) === 4)
- )
- "
- >添加</el-button
- >
- <el-button
- type="primary"
- size="mini"
- @click="addStock(1)"
- v-if="
- !(
- userInfo.roleType == '3' ||
- (userInfo.roleType == '4' && Number(treeData.level) === 2) ||
- (userInfo.roleType == '4' && Number(treeData.level) === 3) ||
- (userInfo.roleType == '5' && Number(treeData.level) === 4)
- )
- "
- >编辑</el-button
- >
- <el-button
- type="primary"
- size="mini"
- @click="deleteStock"
- v-if="
- !(
- userInfo.roleType == '3' ||
- (userInfo.roleType == '4' && Number(treeData.level) === 2)
- )
- "
- >删除</el-button
- >
- <span
- v-if="
- userInfo.roleType == '3' ||
- (userInfo.roleType == '4' && Number(treeData.level) === 2)
- "
- >
- 暂无权限
- </span>
- </div>
- <div
- class="avat"
- :class="{
- parent: !treeData.level,
- company: Number(treeData.level) === 1,
- }"
- slot="reference"
- >
- <img
- v-show="Number(treeData.level) === 1"
- style="margin-bottom: 10px"
- src="../assets/img/group/gen.png"
- />
- <img
- v-show="Number(treeData.level) === 2"
- style="margin-bottom: 10px"
- src="../assets/img/group/er.png"
- />
- <span
- style="
- background-color: #edf7f2;
- padding: 10px;
- border-radius: 10px;
- display: flex;
- line-height: 30px;
- justify-content: center;
- "
- >
- {{ treeData.orgName }}
- </span>
- </div>
- </el-popover>
- <div
- v-if="
- !isDetail &&
- (userInfo.roleType == '3' ||
- (userInfo.roleType == '4' && Number(treeData.level) === 2) ||
- (userInfo.roleType == '5' && Number(treeData.level) === 3))
- "
- class="avat"
- :class="{
- parent: !treeData.level,
- company: Number(treeData.level) === 1,
- }"
- slot="reference"
- >
- <img
- v-show="Number(treeData.level) === 1"
- style="margin-bottom: 10px"
- src="../assets/img/group/gen.png"
- />
- <img
- v-show="Number(treeData.level) === 2"
- style="margin-bottom: 10px"
- src="../assets/img/group/er.png"
- />
- <span
- style="
- background-color: #edf7f2;
- padding: 10px;
- border-radius: 10px;
- display: flex;
- line-height: 30px;
- justify-content: center;
- "
- >
- {{ treeData.orgName }}
- </span>
- </div>
- </div>
- </div>
- <div
- class="extend_handle"
- v-if="treeData.children && treeData.children.length"
- @click="toggleExtend(treeData)"
- ></div>
- </td>
- </tr>
- <!-- 这是一个递归组件,注意,这里还要调用,需要传递的数据这里也要传递,否则操作时拿不到子级的数据 -->
- <tr v-if="treeData.children && treeData.children.length && treeData.isExtend">
- <td
- v-for="(children, index) in treeData.children"
- :key="index"
- colspan="2"
- class="childLevel"
- >
- <TreeChart
- :json="children"
- :isDetail="isDetail"
- @add="$emit('add', $event)"
- @delete="$emit('delete', $event)"
- @click-node="$emit('click-node', $event)"
- />
- </td>
- </tr>
- </table>
- </template>
- <script>
- import { oSessionStorage } from "../utils/utils";
- export default {
- name: "TreeChart",
- props: {
- json: {}, // 渲染数据
- isDetail: {
- default: false, // 是否是详情
- },
- },
- data() {
- return {
- treeData: {},
- userInfo: {},
- };
- },
- created() {
- // console.log(this.json)
- },
- watch: {
- isDetail: function (val) {
- // 是否是详情,详情不能添加编辑
- this.isDetail = val;
- },
- json: {
- // 遍历当前的数据
- handler: function (Props) {
- let extendKey = function (jsonData) {
- jsonData.isExtend = jsonData.isExtend === void 0 ? true : !!jsonData.isExtend;
- // if (Array.isArray(jsonData.children) && jsonData.children.length) {
- // jsonData.children.forEach(c => {
- // extendKey(c);
- // });
- // }
- return jsonData;
- };
- if (Props) {
- this.treeData = extendKey(Props);
- }
- },
- immediate: true,
- deep: true,
- },
- },
- mounted() {
- this.userInfo = JSON.parse(oSessionStorage.getItem("userInfo"));
- },
- methods: {
- toggleExtend(treeData) {
- treeData.isExtend = !treeData.isExtend;
- this.$forceUpdate();
- },
- // 新增编辑股东,val: 0 新增, 1 编辑
- addStock(val) {
- // console.log(this.treeData)
- this.$emit("add", { val: val, data: this.treeData });
- },
- // 删除股东
- deleteStock() {
- this.$emit("delete", this.treeData);
- },
- },
- };
- </script>
- <style lang="less">
- table {
- border-collapse: separate !important;
- border-spacing: 0 !important;
- }
- td {
- position: relative;
- vertical-align: top;
- padding: 0 0 50px 0;
- text-align: center;
- }
- .parent {
- background: #199ed8 !important;
- font-weight: bold;
- }
- .extend_handle {
- position: absolute;
- left: 50%;
- bottom: 27px;
- width: 10px;
- height: 10px;
- padding: 10px;
- transform: translate3d(-15px, 0, 0);
- cursor: pointer;
- }
- .extend_handle:before {
- content: "";
- display: block;
- width: 100%;
- height: 100%;
- box-sizing: border-box;
- border: 2px solid;
- border-color: #ccc #ccc transparent transparent;
- transform: rotateZ(135deg);
- transform-origin: 50% 50% 0;
- transition: transform ease 300ms;
- }
- .extend_handle:hover:before {
- border-color: #333 #333 transparent transparent;
- }
- .extend .extend_handle:before {
- transform: rotateZ(-45deg);
- }
- .extend::after {
- content: "";
- position: absolute;
- left: 50%;
- bottom: 15px;
- height: 15px;
- border-left: 2px solid #ccc;
- transform: translate3d(-1px, 0, 0);
- }
- .childLevel::before {
- content: "";
- position: absolute;
- left: 50%;
- bottom: 100%;
- height: 15px;
- border-left: 2px solid #ccc;
- transform: translate3d(-1px, 0, 0);
- }
- .childLevel::after {
- content: "";
- position: absolute;
- left: 0;
- right: 0;
- top: -15px;
- border-top: 2px solid #ccc;
- }
- .childLevel:first-child:before,
- .childLevel:last-child:before {
- display: none;
- }
- .childLevel:first-child:after {
- left: 50%;
- height: 15px;
- border: 2px solid;
- border-color: #ccc transparent transparent #ccc;
- border-radius: 6px 0 0 0;
- transform: translate3d(1px, 0, 0);
- }
- .childLevel:last-child:after {
- right: 50%;
- height: 15px;
- border: 2px solid;
- border-color: #ccc #ccc transparent transparent;
- border-radius: 0 6px 0 0;
- transform: translate3d(-1px, 0, 0);
- }
- .childLevel:first-child.childLevel:last-child::after {
- left: auto;
- border-radius: 0;
- border-color: transparent #ccc transparent transparent;
- transform: translate3d(1px, 0, 0);
- }
- .node {
- position: relative;
- display: inline-block;
- box-sizing: border-box;
- text-align: center;
- padding: 0 5px;
- }
- .node .person {
- padding-top: 15px;
- position: relative;
- display: inline-block;
- z-index: 2;
- width: 120px;
- overflow: hidden;
- }
- .node .person .avat {
- padding: 5px;
- padding-top: 10px;
- display: block;
- width: 100%;
- height: 100%;
- margin: auto;
- word-break: break-all;
- background: transparent;
- box-sizing: border-box;
- border-radius: 4px;
- .opreate_icon {
- display: none;
- }
- &:hover {
- .opreate_icon {
- display: block;
- position: absolute;
- top: -3px;
- right: -3px;
- padding: 5px;
- }
- }
- &.company {
- // background: #199ed8;
- background: transparent;
- font-weight: 700;
- }
- &.other {
- background: #ccc;
- }
- }
- .node .person .avat img {
- cursor: pointer;
- }
- .node .person .name {
- height: 2em;
- line-height: 2em;
- overflow: hidden;
- width: 100%;
- }
- .node.hasMate::after {
- content: "";
- position: absolute;
- left: 2em;
- right: 2em;
- top: 15px;
- border-top: 2px solid #ccc;
- z-index: 1;
- }
- .node.hasMate .person:last-child {
- margin-left: 1em;
- }
- .el-dialog__header {
- padding: 0;
- padding-top: 30px;
- margin: 0 30px;
- // border-bottom: 1px solid #f1f1f1;
- text-align: left;
- .el-dialog__title {
- font-size: 14px;
- font-weight: bold;
- color: #464c5b;
- line-height: 20px;
- }
- }
- .tips {
- padding: 0 20px;
- .el-select {
- width: 100%;
- }
- .blue {
- color: #00b5ef;
- }
- .check {
- margin-left: 100px;
- }
- .inquiry {
- font-weight: bold;
- }
- .el-form-item__label {
- display: block;
- float: none;
- text-align: left;
- }
- .el-form-item__content {
- margin-left: 0;
- }
- }
- .el-dialog__body {
- padding: 30px 25px;
- p {
- margin-bottom: 15px;
- }
- }
- .el-dialog__headerbtn {
- top: 30px;
- right: 30px;
- }
- // 竖向
- .landscape {
- transform: translate(-100%, 0) rotate(-90deg);
- transform-origin: 100% 0;
- .node {
- text-align: left;
- height: 8em;
- width: 8em;
- }
- .person {
- position: relative;
- transform: rotate(90deg);
- // padding-left: 4.5em;
- // height: 4em;
- top: 35px;
- left: 12px;
- width: 110px;
- }
- }
- .el-popover {
- .el-button {
- padding: 8px !important;
- margin-left: 5px !important;
- float: left;
- }
- }
- </style>
|