9d0ff45b by renchao@pashanhoo.com

style:zhengshu

1 parent a41c4989
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-08-16 11:00:46
* @LastEditTime: 2023-08-16 11:08:48
-->
<template>
<div class="from-clues loadingtext" v-Loading="loading" element-loading-text="拼命加载中..." style="height:720px;text-align: center;">
......@@ -148,7 +148,7 @@
const maxWidth = 330; // 最大宽度限制
let lines = this.bdcqz.qlqtzk ? this.bdcqz.qlqtzk.split('\n') : [];
lines.forEach((line, index) => {
const y = 469 + (index * 37); // 每行文本的垂直位置
const y = 489 + (index * 27); // 每行文本的垂直位置
let currentLine = '';
let arr = [];
for (let word of line) {
......@@ -212,7 +212,7 @@
let lines2 = this.bdcqz.zl ? this.bdcqz.zl.split(' ') : [];
if (lines2.length > 22) {
lines2.forEach((line, index) => {
const y = 170 + (index * 27); // 每行文本的垂直位置
const y = 170 + (index * 20); // 每行文本的垂直位置
let currentLine = '';
let arr = [];
for (let word of line) {
......@@ -232,7 +232,7 @@
})
} else {
lines2.forEach((line, index) => {
const y = 180 + (index * 27); // 每行文本的垂直位置
const y = 180 + (index * 20); // 每行文本的垂直位置
let currentLine = '';
let arr = [];
for (let word of line) {
......