Skip to content

Commit

Permalink
Ajuste wiki
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielSchenato committed Sep 5, 2019
1 parent 4277b04 commit 05ae5be
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 0 deletions.
4 changes: 4 additions & 0 deletions resources/js/views/Alteracoes.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<template>
<v-layout row pb-2>
<v-flex xs10 offset-xs1>
<versao2_0_1></versao2_0_1>
</br>
<versao2_0_0></versao2_0_0>
</br>
<versao1_1_0></versao1_1_0>
Expand Down Expand Up @@ -32,6 +34,7 @@
import Versao1_0_6 from "@/views/versoes/Versao1_0_6.vue";
import Versao1_1_0 from "@/views/versoes/Versao1_1_0.vue";
import Versao2_0_0 from "@/views/versoes/Versao2_0_0.vue";
import Versao2_0_1 from "@/views/versoes/Versao2_0_1.vue";
export default {
components: {
Versao1_0_0,
Expand All @@ -43,6 +46,7 @@
Versao1_0_6,
Versao1_1_0,
Versao2_0_0,
Versao2_0_1,
}
};
</script>
79 changes: 79 additions & 0 deletions resources/js/views/versoes/Versao2_0_1.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
<template>
<v-card class="card--flex-toolbar">
<v-toolbar card prominent>
<v-toolbar-title class="body-6 black--text">v2.0.1</v-toolbar-title>
<v-toolbar-title class="body-1 grey--text"><small>05 de Setembro de 2019</small></v-toolbar-title>
<v-spacer></v-spacer>
</v-toolbar>
<v-divider></v-divider>
<v-card-text>

<h3 class="font-weight-thin font-italic">Portal</h3>
<v-divider></v-divider>
<br>

<v-flex sm12>
<div slot="widget-content">
<ol class="timeline timeline-activity timeline-point-sm timeline-content-right" style="position: inherit">
<li class="timeline-block" v-for="(item, index) in alteracoesPortal" :key="index">
<div class="timeline-point">
<v-icon :color="item.color">{{ item.icon }}</v-icon>
</div>
<div class="timeline-content">
<div v-html="item.text"></div>
</div>
</li>
</ol>
</div>
</v-flex>

<br>

<h3 class="font-weight-thin font-italic">Institucional</h3>
<v-divider></v-divider>
<br>

<v-flex sm12>
<div slot="widget-content">
<ol class="timeline timeline-activity timeline-point-sm timeline-content-right" style="position: inherit">
<li class="timeline-block" v-for="(item, index) in alteracoesInstitucional" :key="index">
<div class="timeline-point">
<v-icon :color="item.color">{{ item.icon }}</v-icon>
</div>
<div class="timeline-content">
<div v-html="item.text"></div>
</div>
</li>
</ol>
</div>
</v-flex>

</v-card-text>
</v-card>
</template>

<script>
export default {
name: "versao2_0_1",
computed: {
alteracoesPortal() {
return [
{
icon: 'fiber_manual_record',
color: 'black',
text: 'Adaptação (Cadastro): Aplicada melhoria nos campos obrigatórios para melhor visibilidade dos mesmos'
},
{
icon: 'fiber_manual_record',
color: 'black',
text: 'Correção (Cadastro): Aplicada correção no cadastro de "Cliente" onde em algumas situações ao abrir um cadastro antigo o parâmetro "Parte Contrária?" era marcado de forma incorreta'
}
];
},
alteracoesInstitucional() {
return [
];
}
}
};
</script>

0 comments on commit 05ae5be

Please sign in to comment.