Browse Source
Merge pull request #661 from yerzhant/add-server-long-process-handling
Add new back end response types to show and hide loading progress circle
master
Dushusir
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
1 deletions
-
src/controllers/server.js
|
|
@ -345,6 +345,10 @@ const server = { |
|
|
|
for(let i = 0; i < items.length; i++){ |
|
|
|
_this.wsUpdateMsg(item[i]); |
|
|
|
} |
|
|
|
} else if (type == 5) { |
|
|
|
showloading(data.data); |
|
|
|
} else if (type == 6) { |
|
|
|
hideloading(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|