antissoft
/
antissoft.dati.admin
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Download as
Email Patches
Plain Diff
Browse Code »
Commit
9d70977c0b2f09ccaa7c051b08e30689a8421269
Authored by
yangzhi
2022-12-30 01:42:00 +0800
1 parent
5d0caf8d
修复bug:左边面试进度和右边的数据不一致
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
src/views/dashboard/index.vue
src/views/dashboard/index.vue
View file @
9d70977
...
...
@@ -345,7 +345,7 @@ export default {
345
345
//右边统计数据
346
346
list.forEach((item) => {
347
347
let index = this.staList.findIndex((t) => t.val == item.name);
348
- if (index
) {
348
+ if (index
>-1
) {
349
349
this.staList[index].count = item.count;
350
350
}
351
351
});
...
...