mixin.js 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. // 左侧树形分类
  2. import * as preDictEdbInterface from '@/api/modules/predictEdbApi.js';
  3. export default {
  4. data() {
  5. return {};
  6. },
  7. directives: {
  8. drag(el, bindings) {
  9. el.onmousedown = function (e) {
  10. var init = e.clientX;
  11. var box = $("#box")[0]
  12. let total_wid = box.offsetWidth
  13. var left = $("#left")[0];
  14. var right = $("#right")[0];
  15. var initWidth = left.offsetWidth;
  16. document.onmousemove = function (e) {
  17. var end = e.clientX;
  18. if (end > 310) {
  19. var newWidth = end - init + initWidth;
  20. // right.style.width = total_wid-end+80 +'px'
  21. right.style.width = total_wid - newWidth + 'px'
  22. left.style.width = newWidth + "px";
  23. } else {
  24. end = 350;
  25. // 最小宽度300
  26. left.style.width = 300 + "px";
  27. // right.style.width = total_wid-300-20 +'px'
  28. }
  29. };
  30. document.onmouseup = function () {
  31. document.onmousemove = document.onmouseup = null;
  32. e.releaseCapture && e.releaseCapture();
  33. };
  34. e.setCapture && e.setCapture();
  35. return false;
  36. };
  37. }
  38. },
  39. methods: {
  40. /* 根据unicode展开树结构并选中当前图表 重置图表配置 日期区间 */
  41. selectCurrentNode({ code, id, classifyId }) {
  42. console.log('params',code,id,classifyId)
  43. this.select_node = code;
  44. this.select_id = id;
  45. // 查找图表的分类父级id
  46. },
  47. // 查找树节点所有父节点
  48. findParentNodeHandle(arr, id,paramName='UniqueCode') {
  49. // 遍历取父级code push数组
  50. for (let i of arr) {
  51. if (i.ClassifyId === id) {
  52. return [i[paramName]];
  53. }
  54. if (i.Children) {
  55. let node = this.findParentNodeHandle(i.Children, id,paramName);
  56. if (node) {
  57. return node.concat(i[paramName]);
  58. }
  59. }
  60. }
  61. },
  62. /* 拖动时node宽度跟随变化 */
  63. resetNodeStyle: _.debounce(function(node) {
  64. const tree = $('.target_tree')[0];
  65. let width = tree.offsetWidth;
  66. // let label_wid = width > 500 ? 'auto' : (width <= 300 && width < 360) ? 100 : 0.7*width;
  67. let label_wid =
  68. width > 500
  69. ? 'auto'
  70. : width <= 260
  71. ? 80
  72. : 0.35 * width;
  73. this.$set(node, 'Nodewidth', label_wid + 'px');
  74. },200),
  75. /* 双击label出现input修改框 */
  76. editNodeLabel(data) {
  77. //目录名称可以双击修改
  78. if(data.EdbInfoId || this.role !== 'admin' ) return
  79. this.$set(data,'isEdit',true)
  80. this.new_label = this.currentLang==='en'?data.ClassifyNameEn:data.ClassifyName;
  81. this.$nextTick(() => {
  82. this.$refs.editVal.focus();
  83. });
  84. },
  85. /* input失去焦点恢复node 修改最新的值*/
  86. changeValue(data) {
  87. if(!this.new_label) return this.$message.warning('名称不能为空');
  88. this.$set(data,'isEdit',false)
  89. preDictEdbInterface.classifyEdit({
  90. ClassifyId: data.ClassifyId,
  91. ClassifyName: this.new_label
  92. }).then(res => {
  93. if(res.Ret !== 200) return
  94. this.getTreeData();
  95. })
  96. },
  97. /* 拖拽完成 */
  98. dropOverHandle(b, a, i, e) {
  99. console.log(b,a,i);
  100. // 被拖拽节点对应的 Node、结束拖拽时最后进入的节点、被拖拽节点的放置位置
  101. const isEDB=b.data.EdbCode?true:false
  102. let list=a.parent.childNodes;
  103. let targetIndex=0,PrevClassifyId=0,NextClassifyId=0,ParentClassifyId=0;
  104. let ClassifyId=0,EdbInfoId=0,PrevEdbInfoId=0,NextEdbInfoId=0;
  105. ClassifyId=isEDB?0:b.data.ClassifyId
  106. EdbInfoId=isEDB?b.data.EdbInfoId:0
  107. if(i!=='inner'){
  108. ParentClassifyId=a.parent.data.ClassifyId||0
  109. list.forEach((item,index)=>{
  110. if(isEDB){
  111. if(item.data.EdbInfoId===b.data.EdbInfoId){
  112. targetIndex=index
  113. }
  114. }else{
  115. if(item.data.ClassifyId===b.data.ClassifyId){
  116. targetIndex=index
  117. }
  118. }
  119. })
  120. console.log(targetIndex);
  121. if(targetIndex===0){
  122. const data=list[targetIndex+1].data
  123. NextClassifyId=data.EdbCode?0:data.ClassifyId
  124. NextEdbInfoId=data.EdbCode?data.EdbInfoId:0
  125. }else if(targetIndex===list.length-1){
  126. const data=list[targetIndex-1].data
  127. PrevClassifyId=data.EdbCode?0:data.ClassifyId
  128. PrevEdbInfoId=data.EdbCode?data.EdbInfoId:0
  129. }else{
  130. const pData=list[targetIndex-1].data
  131. PrevClassifyId=pData.EdbCode?0:pData.ClassifyId
  132. PrevEdbInfoId=pData.EdbCode?pData.EdbInfoId:0
  133. const nData=list[targetIndex+1].data
  134. NextClassifyId=nData.EdbCode?0:nData.ClassifyId
  135. NextEdbInfoId=nData.EdbCode?nData.EdbInfoId:0
  136. }
  137. }else{
  138. ParentClassifyId=a.data.ClassifyId||0
  139. }
  140. const params={
  141. ClassifyId,
  142. ParentClassifyId,
  143. EdbInfoId,
  144. PrevClassifyId,
  145. NextClassifyId,
  146. PrevEdbInfoId,
  147. NextEdbInfoId
  148. }
  149. console.log(params);
  150. preDictEdbInterface.classifyMoveSort(params).then(res=>{
  151. if(res.Ret===200){
  152. this.$message.success(this.$t('MsgPrompt.move_success_msg'))
  153. }
  154. this.getTreeData()
  155. if(this.select_id&&!this.showAssociateChart&&!this.showAssociateComputeData){
  156. this.$refs.detailComponentRef.getDetail()
  157. }
  158. })
  159. },
  160. /* 拖拽覆盖添加背景色 */
  161. dropMouseOver(node1, node2, e) {
  162. // 被拖拽节点对应的 Node、所进入节点对应的 Node、event
  163. if(!node2.data.EdbInfoId&&(node1.level>node2.level||(node1.data.EdbInfoId>0&&!node2.data.EdbInfoId)) && (e.target.childNodes[0].className.includes('el-tree-node__content')
  164. || e.target.className.includes('el-tree-node__content'))) {
  165. // console.log(e.target.childNodes[0])
  166. e.target.childNodes[0].className.includes('el-tree-node__content')
  167. ? e.target.childNodes[0].style.backgroundColor = '#409eff'
  168. : e.target.style.backgroundColor = '#409eff';
  169. }
  170. },
  171. /* 拖拽离开/拖拽完成重置背景色 */
  172. dropMouseLeave(node1, node2, e) {
  173. let arrs = $(".el-tree-node__content");
  174. for (let a of arrs) {
  175. a.style.backgroundColor = "transparent";
  176. }
  177. },
  178. // 树节点展开
  179. handleNodeExpand(data) {
  180. // 保存当前展开的节点
  181. let flag = this.defaultShowNodes.some((item) => item === data.UniqueCode);
  182. if (!flag) {
  183. // 不存在则存到数组里
  184. this.defaultShowNodes.push(data.UniqueCode);
  185. }
  186. },
  187. // 树节点关闭
  188. handleNodeCollapse(data) {
  189. this.defaultShowNodes.some((item, index) => {
  190. if (item === data.UniqueCode) {
  191. // 删除关闭节点
  192. this.defaultShowNodes.length = index;
  193. }
  194. });
  195. },
  196. /* 判断节点是否能被拖拽 */
  197. canDragHandle(node) {
  198. let canMove = true;
  199. return canMove;
  200. },
  201. /* 判断节点是否能被拖入 */
  202. canDropHandle(draggingNode, dropNode, type) {
  203. let canDrop = false;
  204. // 如果拖动的是指标
  205. if(draggingNode.data.EdbCode){
  206. if(!(dropNode.level===1&&type!=='inner')){
  207. canDrop=true
  208. }
  209. }else{//拖动的是目录
  210. // console.log(dropNode.level,draggingNode.level);
  211. //目录层级不能改变
  212. if((dropNode.level+1==draggingNode.level&&type==='inner'&&!dropNode.data.EdbCode)||(dropNode.level===draggingNode.level&&type!=='inner')){
  213. canDrop=true
  214. }
  215. }
  216. return canDrop;
  217. },
  218. },
  219. };