TreeData.vue 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  1. <template>
  2. <table v-if="treeData && treeData.orgName">
  3. <tr>
  4. <td
  5. :colspan="treeData.children ? treeData.children.length * 2 : 1"
  6. :class="{
  7. parentLevel: treeData.children,
  8. extend: treeData.children && treeData.children.length && treeData.isExtend,
  9. }"
  10. >
  11. <div :class="{ node: true, hasMate: treeData.mate }" >
  12. <div class="person" @click="$emit('click-node', treeData)">
  13. <el-popover v-if="!isDetail" placement="top" width="180" trigger="hover" >
  14. <!-- v-if="treeData.level!==3" -->
  15. <!-- v-if="treeData.isAdd" -->
  16. <div style="margin: 0">
  17. <el-button
  18. size="mini"
  19. type="primary"
  20. @click="addStock(0)"
  21. v-if="!((userInfo.roleType == '4' && Number(treeData.level) === 2)||(userInfo.roleType == '5' && Number(treeData.level) === 3))"
  22. >添加</el-button
  23. >
  24. <el-button
  25. type="primary"
  26. size="mini"
  27. @click="addStock(1)"
  28. v-if="userInfo.roleType!='3'"
  29. >编辑</el-button
  30. >
  31. <el-button
  32. type="primary"
  33. size="mini"
  34. @click="deleteStock"
  35. v-if="userInfo.roleType!='3'"
  36. >删除</el-button
  37. >
  38. <span v-if="userInfo.roleType=='3'">
  39. 暂无权限
  40. </span>
  41. </div>
  42. <div
  43. class="avat"
  44. :class="{
  45. parent: !treeData.level,
  46. company: Number(treeData.level) === 1,
  47. }"
  48. slot="reference"
  49. >
  50. <!-- other: Number(treeData.level) === 3, -->
  51. <img v-show="Number(treeData.level) === 1" style="margin-bottom: 10px;" src="../assets/img/group/gen.png" />
  52. <img v-show="Number(treeData.level) === 2" style="margin-bottom: 10px;" src="../assets/img/group/er.png" />
  53. <span style="background-color: #EDF7F2;padding:10px;border-radius: 10px;display:flex;line-height:30px;justify-content: center;">
  54. {{ treeData.orgName }}
  55. </span>
  56. </div>
  57. </el-popover>
  58. </div>
  59. </div>
  60. <div
  61. class="extend_handle"
  62. v-if="treeData.children && treeData.children.length"
  63. @click="toggleExtend(treeData)"
  64. ></div>
  65. </td>
  66. </tr>
  67. <!-- 这是一个递归组件,注意,这里还要调用,需要传递的数据这里也要传递,否则操作时拿不到子级的数据 -->
  68. <tr v-if="treeData.children && treeData.children.length && treeData.isExtend">
  69. <td
  70. v-for="(children, index) in treeData.children"
  71. :key="index"
  72. colspan="2"
  73. class="childLevel"
  74. >
  75. <TreeChart
  76. :json="children"
  77. :isDetail="isDetail"
  78. @add="$emit('add', $event)"
  79. @delete="$emit('delete', $event)"
  80. @click-node="$emit('click-node', $event)"
  81. />
  82. </td>
  83. </tr>
  84. </table>
  85. </template>
  86. <script>
  87. import { oSessionStorage } from "../utils/utils";
  88. export default {
  89. name: "TreeChart",
  90. props: {
  91. json: {}, // 渲染数据
  92. isDetail: {
  93. default: false, // 是否是详情
  94. },
  95. },
  96. data() {
  97. return {
  98. treeData: {},
  99. userInfo:{}
  100. };
  101. },
  102. created() {
  103. // console.log(this.json)
  104. },
  105. watch: {
  106. isDetail: function (val) {
  107. // 是否是详情,详情不能添加编辑
  108. this.isDetail = val;
  109. },
  110. json: {
  111. // 遍历当前的数据
  112. handler: function (Props) {
  113. let extendKey = function (jsonData) {
  114. jsonData.isExtend = jsonData.isExtend === void 0 ? true : !!jsonData.isExtend;
  115. // if (Array.isArray(jsonData.children) && jsonData.children.length) {
  116. // jsonData.children.forEach(c => {
  117. // extendKey(c);
  118. // });
  119. // }
  120. return jsonData;
  121. };
  122. if (Props) {
  123. this.treeData = extendKey(Props);
  124. }
  125. },
  126. immediate: true,
  127. deep: true,
  128. },
  129. },
  130. mounted(){
  131. this.userInfo=JSON.parse(oSessionStorage.getItem("userInfo"));
  132. },
  133. methods: {
  134. toggleExtend(treeData) {
  135. treeData.isExtend = !treeData.isExtend;
  136. this.$forceUpdate();
  137. },
  138. // 新增编辑股东,val: 0 新增, 1 编辑
  139. addStock(val) {
  140. // console.log(this.treeData)
  141. this.$emit("add", { val: val, data: this.treeData });
  142. },
  143. // 删除股东
  144. deleteStock() {
  145. this.$emit("delete", this.treeData);
  146. },
  147. },
  148. };
  149. </script>
  150. <style lang="less">
  151. table {
  152. border-collapse: separate !important;
  153. border-spacing: 0 !important;
  154. }
  155. td {
  156. position: relative;
  157. vertical-align: top;
  158. padding: 0 0 50px 0;
  159. text-align: center;
  160. }
  161. .parent {
  162. background: #199ed8 !important;
  163. font-weight: bold;
  164. }
  165. .extend_handle {
  166. position: absolute;
  167. left: 50%;
  168. bottom: 27px;
  169. width: 10px;
  170. height: 10px;
  171. padding: 10px;
  172. transform: translate3d(-15px, 0, 0);
  173. cursor: pointer;
  174. }
  175. .extend_handle:before {
  176. content: "";
  177. display: block;
  178. width: 100%;
  179. height: 100%;
  180. box-sizing: border-box;
  181. border: 2px solid;
  182. border-color: #ccc #ccc transparent transparent;
  183. transform: rotateZ(135deg);
  184. transform-origin: 50% 50% 0;
  185. transition: transform ease 300ms;
  186. }
  187. .extend_handle:hover:before {
  188. border-color: #333 #333 transparent transparent;
  189. }
  190. .extend .extend_handle:before {
  191. transform: rotateZ(-45deg);
  192. }
  193. .extend::after {
  194. content: "";
  195. position: absolute;
  196. left: 50%;
  197. bottom: 15px;
  198. height: 15px;
  199. border-left: 2px solid #ccc;
  200. transform: translate3d(-1px, 0, 0);
  201. }
  202. .childLevel::before {
  203. content: "";
  204. position: absolute;
  205. left: 50%;
  206. bottom: 100%;
  207. height: 15px;
  208. border-left: 2px solid #ccc;
  209. transform: translate3d(-1px, 0, 0);
  210. }
  211. .childLevel::after {
  212. content: "";
  213. position: absolute;
  214. left: 0;
  215. right: 0;
  216. top: -15px;
  217. border-top: 2px solid #ccc;
  218. }
  219. .childLevel:first-child:before,
  220. .childLevel:last-child:before {
  221. display: none;
  222. }
  223. .childLevel:first-child:after {
  224. left: 50%;
  225. height: 15px;
  226. border: 2px solid;
  227. border-color: #ccc transparent transparent #ccc;
  228. border-radius: 6px 0 0 0;
  229. transform: translate3d(1px, 0, 0);
  230. }
  231. .childLevel:last-child:after {
  232. right: 50%;
  233. height: 15px;
  234. border: 2px solid;
  235. border-color: #ccc #ccc transparent transparent;
  236. border-radius: 0 6px 0 0;
  237. transform: translate3d(-1px, 0, 0);
  238. }
  239. .childLevel:first-child.childLevel:last-child::after {
  240. left: auto;
  241. border-radius: 0;
  242. border-color: transparent #ccc transparent transparent;
  243. transform: translate3d(1px, 0, 0);
  244. }
  245. .node {
  246. position: relative;
  247. display: inline-block;
  248. box-sizing: border-box;
  249. text-align: center;
  250. padding: 0 5px;
  251. }
  252. .node .person {
  253. padding-top: 15px;
  254. position: relative;
  255. display: inline-block;
  256. z-index: 2;
  257. width: 120px;
  258. overflow: hidden;
  259. }
  260. .node .person .avat {
  261. padding: 5px;
  262. padding-top: 10px;
  263. display: block;
  264. width: 100%;
  265. height: 100%;
  266. margin: auto;
  267. word-break: break-all;
  268. background: transparent;
  269. box-sizing: border-box;
  270. border-radius: 4px;
  271. .opreate_icon {
  272. display: none;
  273. }
  274. &:hover {
  275. .opreate_icon {
  276. display: block;
  277. position: absolute;
  278. top: -3px;
  279. right: -3px;
  280. padding: 5px;
  281. }
  282. }
  283. &.company {
  284. // background: #199ed8;
  285. background: transparent;
  286. font-weight: 700;
  287. }
  288. &.other {
  289. background: #ccc;
  290. }
  291. }
  292. .node .person .avat img {
  293. cursor: pointer;
  294. }
  295. .node .person .name {
  296. height: 2em;
  297. line-height: 2em;
  298. overflow: hidden;
  299. width: 100%;
  300. }
  301. .node.hasMate::after {
  302. content: "";
  303. position: absolute;
  304. left: 2em;
  305. right: 2em;
  306. top: 15px;
  307. border-top: 2px solid #ccc;
  308. z-index: 1;
  309. }
  310. .node.hasMate .person:last-child {
  311. margin-left: 1em;
  312. }
  313. .el-dialog__header {
  314. padding: 0;
  315. padding-top: 30px;
  316. margin: 0 30px;
  317. // border-bottom: 1px solid #f1f1f1;
  318. text-align: left;
  319. .el-dialog__title {
  320. font-size: 14px;
  321. font-weight: bold;
  322. color: #464c5b;
  323. line-height: 20px;
  324. }
  325. }
  326. .tips {
  327. padding: 0 20px;
  328. .el-select {
  329. width: 100%;
  330. }
  331. .blue {
  332. color: #00b5ef;
  333. }
  334. .check {
  335. margin-left: 100px;
  336. }
  337. .inquiry {
  338. font-weight: bold;
  339. }
  340. .el-form-item__label {
  341. display: block;
  342. float: none;
  343. text-align: left;
  344. }
  345. .el-form-item__content {
  346. margin-left: 0;
  347. }
  348. }
  349. .el-dialog__body {
  350. padding: 30px 25px;
  351. p {
  352. margin-bottom: 15px;
  353. }
  354. }
  355. .el-dialog__headerbtn {
  356. top: 30px;
  357. right: 30px;
  358. }
  359. // 竖向
  360. .landscape {
  361. transform: translate(-100%, 0) rotate(-90deg);
  362. transform-origin: 100% 0;
  363. .node {
  364. text-align: left;
  365. height: 8em;
  366. width: 8em;
  367. }
  368. .person {
  369. position: relative;
  370. transform: rotate(90deg);
  371. // padding-left: 4.5em;
  372. // height: 4em;
  373. top: 35px;
  374. left: 12px;
  375. width: 110px;
  376. }
  377. }
  378. .el-popover {
  379. .el-button {
  380. padding: 8px !important;
  381. margin-left: 5px !important;
  382. float: left;
  383. }
  384. }
  385. </style>