使用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], // 向上
相关推荐
天天向上10247 小时前
vue3使用ONLYOFFICE 实现在线Word,Excel等文档
前端·javascript·html
光影少年7 小时前
React Native 第三章
javascript·react native·react.js
KoProject7 小时前
发布30款App之后,我总结了这套GLM-4.6全自动化开发流
前端·后端·github
一川_7 小时前
虚拟滚动的幽灵:从搜索失准到丝滑体验的救赎之旅
javascript
前端踩bug工程师7 小时前
flutter项目
前端
云枫晖7 小时前
Webpack系列-SourceMap
前端·webpack
qq_420362037 小时前
PDF导出服务
前端·pdf·状态模式·node·puppeteer
该用户已不存在7 小时前
构建现代应用的9个Python GUI库
前端·后端·python
abiao19817 小时前
VUE的“单向数据绑定” 和 “双向数据绑定”
前端·javascript·vue.js