9d0ff45b by renchao@pashanhoo.com

style:zhengshu

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