使用leader-line-vue 时垂直元素间距过小连线打转的解决

原来是这样

对应代码

复制代码
<template>
	<view>
		<button @click="changeMessage">改变消息</button>
		<!-- RenderJS 模块 -->
		<view :change:prop="renderjs.updateMessage" :prop="lineList" @touchmove="renderjs.handleTouchMove">
			<!-- 使用 ref 绑定元素 -->
			<view style="display: flex;">
				<view :ref="dataList[0].id" :id="dataList[0].id" class="node">开始节点1</view>
				<view :ref="dataList[1].id" :id="dataList[1].id" class="node">开始节点2</view>
			</view>
			<view style="margin-left: 200rpx;" :ref="dataList[2].id" :id="dataList[2].id" class="node">结束节点</view>
		</view>
	</view>
</template>

<script setup>
	import {
		ref
	} from 'vue'
	const dataList = ref([{
			id: 'startElement',
			text: 'abc'
		},
		{
			id: 'startElementa',
			text: 'def'
		},
		{
			id: 'endElement',
			text: 'ghi'
		},
	])
	const lineList = ref([
		['startElement', 'endElement'],
		['startElementa', 'endElement']
	])

	const changeMessage = () => {
		lineList.value = JSON.parse(JSON.stringify(lineList.value))
	}
</script>
<script module="renderjs" lang="renderjs">
	import LeaderLine from 'leader-line-vue'
	export default {
		data() {
			return {
				localData: 'RenderJS 数据',
				lineOptions: {
					color: '#34C759',
					size: 3,
					path: 'grid', // 使用网格路径  // grid  fluid
					startSocket: 'bottom',
					endSocket: 'top',
					endPlug: 'arrow1',
					gradient: true,
					//startSocketGravity: [0, 1], // 向上
					//endSocketGravity: [0, -1], // 向下
					dash: {
						animation: true
					},
				},
				colorList: ['#3498db', '#E6B991'],
			}
		},
		mounted() {
			console.log('RenderJS mounted')
		},
		methods: {
			updateMessage(newValue, oldValue, ownerInstance, instance) {
				if (newValue && newValue.length) {
					newValue.forEach((item, index) => {
						if (item && item.length) {
							item.forEach((temp, indexa) => {
								const domea = document.getElementById(item[0]);
								const domeab = document.getElementById(item[1]);
								this.lineOptions.color = this.colorList[index]
								LeaderLine.setLine(domea, domeab, this.lineOptions);
							})
						}
					})
				}
			},
			handleTouchMove(event, ownerInstance) {
				// 处理触摸事件,比普通事件更高效
				console.log('Touch move:', event)
				// 可以向 Vue 组件发送数据
				ownerInstance.callMethod('onTouchMove', {
					x: event.touches[0].pageX,
					y: event.touches[0].pageY
				})
			}
		}
	}
</script>
<style>

</style>



<style>
	.container {
		position: relative;
		height: 400px;
		border: 1px solid #ddd;
	}

	.node {
		margin-top: 100rpx;
		margin-left: 100rpx;
		width: 80px;
		height: 366rpx;
		background: #3498db;
		border-radius: 8px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
	}

	.node:nth-child(1) {
		top: 50px;
		left: 100px;
	}

	.node:nth-child(2) {
		top: 200px;
		left: 300px;
	}
</style>

修改后

修改后代码

复制代码
<template>
	<view>
		<button @click="changeMessage">改变消息</button>
		<!-- RenderJS 模块 -->
		<view :change:prop="renderjs.updateMessage" :prop="lineList" @touchmove="renderjs.handleTouchMove">
			<!-- 使用 ref 绑定元素 -->
			<view style="display: flex;">
				<view :ref="dataList[0].id" :id="dataList[0].id" class="node">开始节点1</view>
				<view :ref="dataList[1].id" :id="dataList[1].id" class="node">开始节点2</view>
			</view>
			<view style="margin-left: 200rpx;" :ref="dataList[2].id" :id="dataList[2].id" class="node">结束节点</view>
		</view>
	</view>
</template>

<script setup>
	import {
		ref
	} from 'vue'
	const dataList = ref([{
			id: 'startElement',
			text: 'abc'
		},
		{
			id: 'startElementa',
			text: 'def'
		},
		{
			id: 'endElement',
			text: 'ghi'
		},
	])
	const lineList = ref([
		['startElement', 'endElement'],
		['startElementa', 'endElement']
	])

	const changeMessage = () => {
		lineList.value = JSON.parse(JSON.stringify(lineList.value))
	}
</script>
<script module="renderjs" lang="renderjs">
	import LeaderLine from 'leader-line-vue'
	export default {
		data() {
			return {
				localData: 'RenderJS 数据',
				lineOptions: {
					color: '#34C759',
					size: 3,
					path: 'grid', // 使用网格路径  // grid  fluid
					startSocket: 'bottom',
					endSocket: 'top',
					endPlug: 'arrow1',
					gradient: true,
					startSocketGravity: [0, 1], // 向下
					endSocketGravity: [0, -1], // 向上
					dash: {
						animation: true
					},
				},
				colorList: ['#3498db', '#E6B991'],
			}
		},
		mounted() {
			console.log('RenderJS mounted')
		},
		methods: {
			updateMessage(newValue, oldValue, ownerInstance, instance) {
				if (newValue && newValue.length) {
					newValue.forEach((item, index) => {
						if (item && item.length) {
							item.forEach((temp, indexa) => {
								const domea = document.getElementById(item[0]);
								const domeab = document.getElementById(item[1]);
								this.lineOptions.color = this.colorList[index]
								LeaderLine.setLine(domea, domeab, this.lineOptions);
							})
						}
					})
				}
			},
			handleTouchMove(event, ownerInstance) {
				// 处理触摸事件,比普通事件更高效
				console.log('Touch move:', event)
				// 可以向 Vue 组件发送数据
				ownerInstance.callMethod('onTouchMove', {
					x: event.touches[0].pageX,
					y: event.touches[0].pageY
				})
			}
		}
	}
</script>
<style>

</style>



<style>
	.container {
		position: relative;
		height: 400px;
		border: 1px solid #ddd;
	}

	.node {
		margin-top: 100rpx;
		margin-left: 100rpx;
		width: 80px;
		height: 366rpx;
		background: #3498db;
		border-radius: 8px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
	}

	.node:nth-child(1) {
		top: 50px;
		left: 100px;
	}

	.node:nth-child(2) {
		top: 200px;
		left: 300px;
	}
</style>

主要在于

复制代码
startSocketGravity: [0, 1], // 向下
endSocketGravity: [0, -1], // 向上
相关推荐
心连欣39 分钟前
解锁对象遍历:当字符串遇上for...in循环
前端·javascript
Sestid42 分钟前
前端Cursor使用指南(后续会更新Claude)
前端·claude·cursor
戴维南1 小时前
LangChain 在 Agent 开发中的定位:10 个模块(含代码对比,耳机售后案例)
前端
ouzz1 小时前
使用纯canvas绘制一个掘金首页
前端·canvas
用户6957584491281 小时前
Vue 3 响应式系统:解构赋值与依赖收集的正确姿势
前端
乐乐同学yorsal1 小时前
一个 TypeScript 写的图片视频处理工具箱,吊打一切付费软件!
前端·命令行
账号已注销free1 小时前
Vue3项目中给组件命名的方式
vue.js
前端那点事1 小时前
VueUse 全面指南|Vue3组合式工具集实战
vue.js
lzhdim1 小时前
SQL 入门 10:SQL 内置函数:数值、字符串与时间处理
前端·数据库·sql
jstopo网站1 小时前
水厂水泵工作流程图canvas动画
前端·javascript