-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from Billing-Wise/dev
[release] 1.0.1
- Loading branch information
Showing
60 changed files
with
954 additions
and
348 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
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
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
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
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,26 @@ | ||
<template> | ||
<div class="loading"> | ||
<img src="@/assets/images/loading.gif" alt="loading"> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: 'AuthLoadingVue' | ||
} | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
.loading { | ||
@include flex-box(row, center, 0px); | ||
position: fixed; | ||
background: rgba(255, 255, 255, 0.8); | ||
width: 100vw; | ||
height: 100vh; | ||
z-index: 9999; | ||
img { | ||
width: 160px; | ||
} | ||
} | ||
</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
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
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
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,28 @@ | ||
<template> | ||
<button class="theme-btn" @click="func"> | ||
<span>{{ title }}</span> | ||
</button> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: 'SuccessBtnVue', | ||
props: { | ||
title: String, | ||
func: Function | ||
} | ||
} | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
.theme-btn { | ||
@include flex-box(row, center, 10px); | ||
@include base-button(); | ||
padding: 10px 20px; | ||
background-color: $success-color; | ||
color: white; | ||
border: none; | ||
font-size: 18px; | ||
font-weight: bold; | ||
} | ||
</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
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
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,62 @@ | ||
<template> | ||
<div class="info-input"> | ||
<div class="title-box"> | ||
{{ title }} | ||
</div> | ||
<input | ||
type= "number" | ||
:value="modelValue" | ||
@input="$emit('update:modelValue', $event.target.value)"> | ||
<span>{{ unit }}</span> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: 'NumberInputVue', | ||
props: { | ||
'title' : String, | ||
'unit': String, | ||
'modelValue': Number, | ||
}, | ||
emits: ['update:modelValue'] | ||
} | ||
</script> | ||
|
||
<style lang='scss' scoped> | ||
.info-input { | ||
@include flex-box(row, center, 0px); | ||
background-color: white; | ||
width: 100%; | ||
height: 40px; | ||
border-radius: 5px; | ||
border: $theme-color solid; | ||
.title-box { | ||
@include flex-box(row, center, 0px); | ||
@include white-text(16px); | ||
background: $theme-color; | ||
width: 140px; | ||
height: 100%; | ||
} | ||
input { | ||
width: 100%; | ||
height: 100%; | ||
padding-left: 10px; | ||
font-weight: bold; | ||
font-size: 14px; | ||
border: none; | ||
&:focus { | ||
outline: none; | ||
} | ||
} | ||
span { | ||
padding-right: 10px; | ||
font-weight: bold; | ||
} | ||
} | ||
</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
Oops, something went wrong.