Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
car-database-web
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
中汽研标准应用数据库
car-database-web
Commits
877dc5c1
Commit
877dc5c1
authored
Sep 11, 2024
by
zhang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: (检测内容/实施细则)修复文字溢出造成样式错误
parent
97909ac2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
index.vue
src/views/review/initiatedReview/index.vue
+0
-1
index.vue
src/views/setting/standardTerms/index.vue
+2
-2
No files found.
src/views/review/initiatedReview/index.vue
View file @
877dc5c1
...
...
@@ -102,7 +102,6 @@
@
click=
"resetQuery"
>
重置
</el-button
>
123
</el-form-item>
</el-form>
<!--
<el-row
:gutter=
"10"
class=
"mb10"
>
-->
...
...
src/views/setting/standardTerms/index.vue
View file @
877dc5c1
...
...
@@ -382,8 +382,8 @@ export default {
// 过滤器:当字符串超过64位时,之后的字符用...代替
ellipsis
(
value
)
{
if
(
!
value
)
return
''
if
(
value
.
length
>
60
)
{
return
value
.
slice
(
0
,
60
)
+
'...'
if
(
value
.
length
>
57
)
{
return
value
.
slice
(
0
,
57
)
+
'...'
}
return
value
}
...
...
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