-
Notifications
You must be signed in to change notification settings - Fork 7
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 #4 from BureauTech/dev
Sprint 2
- Loading branch information
Showing
117 changed files
with
3,997 additions
and
913 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 |
---|---|---|
|
@@ -2,5 +2,6 @@ | |
**/package-lock.json | ||
**/temp/* | ||
**/dist | ||
**/resources/img/upload/* | ||
|
||
!.keep |
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
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,7 +1,4 @@ | ||
export default { | ||
props: { | ||
buttonText: String | ||
}, | ||
methods: { | ||
emit: function(e) { | ||
this.$emit("click", e) | ||
|
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
File renamed without changes.
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,20 @@ | ||
import Card from "@/components/Card/Card.vue" | ||
import Button from "@/components/Button/Button.vue" | ||
import Input from "@/components/Input/Input.vue" | ||
|
||
export default { | ||
name: "ImportCsv", | ||
components: { | ||
Card, | ||
Button, | ||
Input | ||
}, | ||
methods: { | ||
selectFile(file) { | ||
this.$emit("selectFile", file) | ||
}, | ||
importFile() { | ||
this.$emit("importFile") | ||
} | ||
} | ||
} |
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,41 @@ | ||
<template> | ||
<Card | ||
:roundLevel="0" | ||
class="Card " | ||
colorCard="transparent" | ||
> | ||
<v-row class="my-2 px-10 justify-center align-center"> | ||
<v-col | ||
cols="12" | ||
sm="7" | ||
> | ||
<v-file-input | ||
label="Clique aqui para selecionar o arquivo..." | ||
outlined | ||
rounded | ||
dense | ||
class="centered-input-text" | ||
prepend-icon="" | ||
@change="selectFile" | ||
ref="csv" | ||
accept=".csv" | ||
/> | ||
</v-col> | ||
<v-col | ||
cols="12" | ||
sm="3" | ||
> | ||
<Button | ||
min-width="100%" | ||
@click="importFile" | ||
> | ||
Importar | ||
</Button> | ||
</v-col> | ||
</v-row> | ||
</Card> | ||
</template> | ||
|
||
<script src="./ImportCsv.js" scoped></script> | ||
|
||
<style src="./ImportCsv.css"></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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
export default { | ||
name: "ReportCard", | ||
props: { | ||
title: String, | ||
content: { | ||
type: Array, | ||
required: true | ||
} | ||
} | ||
} |
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> | ||
<v-col | ||
cols="12" | ||
sm="10" | ||
md="6" | ||
align="center" | ||
> | ||
<v-card | ||
min-width="100%" | ||
rounded="xl" | ||
> | ||
<v-card-title> | ||
<h3 v-text="title" class="bk-word"></h3> | ||
</v-card-title> | ||
<v-card-text | ||
v-for="(item, index) in content" | ||
:key="index" | ||
|
||
> | ||
<p class="text-body-1 bk-word">{{item.text}}<b>{{item.value}}</b> </p> | ||
</v-card-text> | ||
</v-card> | ||
</v-col> | ||
</template> | ||
|
||
<script src="./ReportCard.js"></script> |
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,6 @@ | ||
export default { | ||
name: "Select", | ||
props: { | ||
value: String | ||
} | ||
} |
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,12 @@ | ||
<template> | ||
<v-select | ||
outlined | ||
rounded | ||
color="bahama" | ||
@change="$emit('change', $event)" | ||
:value="value" | ||
v-bind="$attrs" | ||
/> | ||
</template> | ||
|
||
<script src="./Select.js"></script> |
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.