Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
V
V3-TailingPond
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xinzhedeai
V3-TailingPond
Commits
3ef49e6b
Commit
3ef49e6b
authored
Aug 30, 2025
by
xinzhedeai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add:警戒线溢出显示优化处理10->20
parent
4a4fea58
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
index.vue
src/views/Screen/index.vue
+3
-3
No files found.
src/views/Screen/index.vue
View file @
3ef49e6b
...
...
@@ -1036,7 +1036,7 @@ export default {
color
:
"
#8b8b8b
"
});
// 新增:生成10个采样点并添加到边坡线数组(平坡)
const
stepPoints1
=
this
.
getSampledPoints
(
cumulationX
,
cumulationY
,
fEndX
,
cumulationY
,
1
0
);
const
stepPoints1
=
this
.
getSampledPoints
(
cumulationX
,
cumulationY
,
fEndX
,
cumulationY
,
2
0
);
this
.
bianpoLinePoinArr
.
push
(...
stepPoints1
);
this
.
drawLiner
({
...
...
@@ -1050,7 +1050,7 @@ export default {
// 新增:生成10个采样点并添加到边坡线数组(平坡间过渡连接线)
const
stepPoints2
=
this
.
getSampledPoints
(
fEndX
,
cumulationY
,
lEndX
,
lEndY
,
1
0
);
const
stepPoints2
=
this
.
getSampledPoints
(
fEndX
,
cumulationY
,
lEndX
,
lEndY
,
2
0
);
this
.
bianpoLinePoinArr
.
push
(...
stepPoints2
);
this
.
Cache
.
ladders
[
i
]
=
{
...
...
@@ -1077,7 +1077,7 @@ export default {
// 新增:生成10个采样点并添加到边坡线数组(最后平坡收尾线)
const
stepPoints3
=
this
.
getSampledPoints
(
cumulationX
,
cumulationY
,
damLength
,
damDepth
,
1
0
);
const
stepPoints3
=
this
.
getSampledPoints
(
cumulationX
,
cumulationY
,
damLength
,
damDepth
,
2
0
);
this
.
bianpoLinePoinArr
.
push
(...
stepPoints3
);
console
.
log
(
'
bianpoLinePoinArr
'
,
JSON
.
stringify
(
this
.
bianpoLinePoinArr
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment