Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation
This project
Loading...
Sign in
李君
/
carrefour
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 8713225b
authored
2 years ago
by
李君
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
1
1 parent
36b5d045
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
src/views/queueManagement/queueDetail/index.vue
src/views/queueManagement/queueDetail/index.vue
View file @
8713225
...
...
@@ -226,11 +226,16 @@
},
methods
:
{
timeFormat
(
val
){
if
(
val
>
60
){
return
Math
.
floor
(
val
/
60
)
+
'min'
+
(
val
%
60
)
+
's'
if
(
val
){
if
(
val
>
60
){
return
Math
.
floor
(
val
/
60
)
+
'min'
+
(
val
%
60
)
+
's'
}
else
{
return
val
+
's'
}
}
else
{
return
val
+
's
'
return
'0
'
}
},
// 通道类型
getCounterType
(){
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
Attach a file
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 post a comment