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
<!DOCTYPE html> | |
<html> | |
<body> | |
<input type="text" id="nomeCliente"> | |
<button type="button" onclick="adicionar()">adicionar clientes</button> | |
<h3>Lista de clientes</h3> | |
<ol id="listaClientes"> | |
</ol> | |
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
Show hidden characters
{ | |
"presets": [ | |
[ | |
"@babel/preset-env", { | |
"modules": false, | |
"loose": false, | |
"useBuiltIns": "usage" | |
} | |
], | |
[ |
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
<template> | |
<div> | |
<q-select | |
v-model="selected" | |
:float-label="floatLabel" | |
filter | |
radio | |
autofocus-filter | |
:options="customOptions"/> | |
</div> |
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
import firebase from '@store/firebase' | |
import store from '@store' | |
import { USER } from '@store/types' | |
export default async (to, from, next) => { | |
if (to.name === 'Sign in') { | |
next() | |
return | |
} |
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
using System; | |
using System.Collections.Generic; | |
using System.Drawing; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
namespace Cortes.Tester | |
{ |
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
import Login from '../components/Login' | |
import LoginForm from '../components/LoginForm' | |
import LoginFormReset from '../components/LoginFormReset' | |
export default [ | |
{ | |
path: '/login', | |
component: Login, | |
meta: {free: true}, | |
children: [ | |
{ |
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
<?php | |
class Address { | |
public function get_address($cep) | |
{ | |
$url = "http://viacep.com.br/ws/".$cep."/xml"; | |
return simplexml_load_file($url); | |
} |
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
<?php | |
class Address { | |
public $bairro; | |
public $logradouro; | |
public $uf; | |
public function get_address($cep) | |
{ | |
$url = "http://viacep.com.br/ws/".$cep."/xml"; |
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
"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/2wBDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/wAARCAH0AXcDASIAAhEBAxEB/8QAHwAAAQMEAwEAAAAAAAAAAAAABAADBQIGBwoBCAkL/8QARRAAAgIBAwQBAwMDAwIEAwMNAQIDERIEBSEABhMiBwgxMgkUIwpBQhUWUTNSFyRhkRhDcRolNGKx8ERygZKhJ1N00eH/xAAcAQACAwEBAQEAAAAAAAAAAAACAwABBAUHBgj/xABGEQABAgQCBwcDAwIDBQcFAAABAhEAAyExQVEEEmFxgZHwBRMiobHB0Qbh8QcUMkJSFRYjJDM0YnIlQ1NzgpKiNmOy4vL/2gAMAwEAAhEDEQA/AOgculQeD9upKSzs6LFFBSyQ+ULI5Icq6xlfaRTEGUpI8vEYr8LoqkRRIA8oEd6cBmkGeLuTErBEKPSMU5XnKpBNHSMCHRYT6MFZmxXDxyRBpC3iIRgpAVlZhRwpPYuPpidOpLsxVRhMsUYZJaf+VYwgZZHBJYqzHNUBBtELJaytCVAuc87Ve79bj7l1LXqhDl/C1HLlgasTd3e+yIJY4JXkyx80RiJjych81kmii97ACgYmNZFcLIhqwpWoxGKpYh6hkYER5ZiVlhawBKY4kdXKZNGnkUlwxjNz4hJVFByJYr7OCX/IuSrOzNammY0oaPxKxtlNf7Ymo0izdlU4Y2fGLlkIaV2RQJCihgOJMHQEKC70qYFw5PV+eED3KFMpgFAgghqW/DGIMQySrqpXIRJ3chWjUsDJWDyKsgyQo5fGhkschJ/7i1jQlA4MqrGyupYZKQqhlaQAcFSXQKQyOWVFZHx6kf2LRxLpnsJhGpJd2ls |
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
// traz todos os credores que fazem parte do grupo | |
async getCredorGrupo () { | |
try { | |
const response = await getCredorGrupo(this.groups.codigo) | |
var temporario = response.data.credores.reverse() | |
this.uneCredores(true, temporario) | |
this.getCredoresForaGrupo() | |
} catch (error) { | |
console.log(error) | |
} |
NewerOlder