This file contains hidden or 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
| Tipo da Conta Corrente (CB Conta Bancária, CX Caixinha, CC Cartão de Crédito ou CV Carteira Virtual) | |
| { | |
| "pagina": 1, | |
| "total_de_paginas": 1, | |
| "registros": 207, | |
| "total_de_registros": 207, | |
| "fin_banco_cadastro": [ | |
| { | |
| "codigo": "001", |
This file contains hidden or 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
| server { | |
| listen 80; | |
| listen [::]:80; | |
| root path/site; | |
| index index.php index.html index.htm index.nginx-debian.html; | |
| add_header X-Frame-Options "SAMEORIGIN"; | |
| add_header X-XSS-Protection "1; mode=block"; | |
| add_header X-Content-Type-Options "nosniff"; |
This file contains hidden or 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
| <template> | |
| <div class="col-12"> | |
| <div class="row"> | |
| <div class="col-12"> | |
| <table :class="classTable" cellspacing='0' width='100%'> | |
| <thead> | |
| <tr> | |
| <th v-for="col in columnsComputed" @click="sort(col['data'])">{{ col['name'] }} | |
| <span v-if="col['data'] === current_sort"> | |
| <i class="" :class="[current_sort_dir === 'asc' ? 'fe-arrow-up' : 'fe-arrow-down']" /> |
This file contains hidden or 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
| <template> | |
| <div class="col-sm-12 col-md-7"> | |
| <nav> | |
| <ul class="pagination pagination-rounded"> | |
| <li class="page-item"> | |
| <a class="page-link" href="javascript: void(0);" aria-label="Previous" @click.prevent="pageChanged(1)"> | |
| <span aria-hidden="true">«</span> | |
| <span class="sr-only">Previous</span> | |
| </a> | |
| </li> |
NewerOlder