-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: adjustment on downloading dialog test result (#917)
* fix: adjustment on downloading dialog test result * Update package-lock.json --------- Co-authored-by: RXRD <[email protected]>
- Loading branch information
Showing
2 changed files
with
109 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
<template lang="pug"> | ||
.dialog-uploading | ||
v-dialog(:value="show" height="500" width="400" persistent ) | ||
v-card | ||
v-app-bar( flat dense color="white" ) | ||
|
||
v-card-text | ||
.dialog-uploading__title Download in progress... | ||
|
||
.dialog-uploading__card-loading | ||
SpinnerLoader( | ||
:color="'#C400A5'" | ||
:size="140" | ||
) | ||
|
||
.dialog-uploading__message | ||
b Please wait. | ||
.dialog-uploading__border-text(style="font-weight:600; font-size:14px") This may take a while depending on the speed of your internet connection. | ||
|
||
</template> | ||
|
||
<script> | ||
import checkCircle from "@/assets/check-circle-primary.png" | ||
import SpinnerLoader from "@bit/joshk.vue-spinners-css.spinner-loader" | ||
export default { | ||
name: "DownloadingDialog", | ||
data: () => ({ | ||
checkCircle | ||
}), | ||
components: { | ||
SpinnerLoader | ||
}, | ||
props: { | ||
show: Boolean | ||
} | ||
} | ||
</script> | ||
|
||
|
||
<style lang="sass" scoped> | ||
@import "@/common/styles/mixins.sass" | ||
.dialog-uploading | ||
&__contact-service | ||
display: flex | ||
justify-content: center | ||
align-items: center | ||
&__title | ||
display: flex | ||
justify-content: center | ||
align-items: center | ||
letter-spacing: 0.0044em | ||
margin-top: 12px | ||
@include h6-opensans | ||
&__image | ||
display: flex | ||
justify-content: center | ||
align-items: center | ||
margin: 30px 0px | ||
&__message | ||
display: flex | ||
flex-direction: column | ||
justify-content: center | ||
align-items: center | ||
text-align: center | ||
letter-spacing: -0.0075em | ||
text-transform: initial | ||
@include button-2 | ||
&__border | ||
border: 1px solid #E9E9E9 | ||
border-radius: 4px | ||
margin: 20px 27px | ||
&__border-text | ||
display: flex | ||
justify-content: center | ||
letter-spacing: -0.004em | ||
font-family: "Open Sans", sans-serif | ||
&__card-loading | ||
padding: 50px 0 50px 105px | ||
.link | ||
margin-left: 3px | ||
color: #5640a5 | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters