-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4277b04
commit 05ae5be
Showing
2 changed files
with
83 additions
and
0 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
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> |