Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
attendance-performance-manager-ui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
attendance-performance-manager-ui
Commits
8c92cddc
Commit
8c92cddc
authored
Mar 11, 2025
by
姬鋆屾
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feated:窗口绩效汇总增加排序功能
parent
9f3000ba
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
src/views/window/perform/summary/list.vue
src/views/window/perform/summary/list.vue
+16
-0
No files found.
src/views/window/perform/summary/list.vue
View file @
8c92cddc
...
...
@@ -118,6 +118,20 @@ export default {
},
methods
:
{
handleSortChange
({
column
,
prop
,
order
})
{
console
.
log
(
column
);
console
.
log
(
prop
);
console
.
log
(
order
);
if
(
order
)
{
let
obj
=
{};
this
.
orderColList
=
[];
obj
.
colName
=
prop
;
order
==
"
ascending
"
?
(
obj
.
sortKind
=
"
asc
"
)
:
(
obj
.
sortKind
=
"
desc
"
);
this
.
orderColList
.
push
(
obj
);
}
else
{
this
.
orderColList
=
[];
}
},
countDown
()
{
if
(
this
.
percent
==
95
)
{
if
(
this
.
selection
.
length
>
0
)
{
...
...
@@ -130,6 +144,7 @@ export default {
...
this
.
query
,
page
:
1
,
size
:
-
1
,
orderColList
:
this
.
orderColList
,
},
{
type
:
"
excel
"
,
name
:
"
窗口绩效汇总
"
}
)
...
...
@@ -268,6 +283,7 @@ export default {
},
data
()
{
return
{
orderColList
:
[],
toString
:
[
"
suggestion
"
],
endTime
:
""
,
restTime
:
"
15
"
,
...
...
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