Commit 1b033b41 authored by sandroresende's avatar sandroresende

alteracao config .env

parent 9c9325e4
APP_NAME=Laravel
APP_ENV=local
APP_KEY=base64:JwQP7STcY2peIVdTKZVUKw2zgAUdGRWf8OLkSFMcSBQ=
APP_DEBUG=true
APP_DEBUG=false
APP_URL=http://localhost
LOG_CHANNEL=stack
......
......@@ -10,4 +10,4 @@ Homestead.json
Homestead.yaml
npm-debug.log
yarn-error.log
.env
......@@ -199,7 +199,7 @@ class PropostaController extends Controller
$usuario = User::where($where)->firstOrFail();
$ente_publico = EntePublico::find($entePublicoId);
//$ente_publico = EntePublico::find($entePublicoId);
DB::beginTransaction();
......
......@@ -52334,7 +52334,6 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
methods: {
checkForm: function checkForm() {
var _this = this;
this.errors.item_financiavel = false;
this.bln_erros = false;
......@@ -52406,7 +52405,7 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
confirmButtonText: 'OK',
cancelButtonText: 'Cancelar'
}).then(function (result) {
console.log('Com erros: ' + _this.bln_valor_incorreto + ' - ' + _this.bln_erros);
if (result.value) {} else {}
});
} else {
console.log('Sem erros: ' + this.bln_valor_incorreto + ' - ' + this.bln_erros);
......@@ -52414,7 +52413,7 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
}
},
onChangeEstado: function onChangeEstado() {
var _this2 = this;
var _this = this;
this.textoEscolhaMunicipio = "Buscando...";
this.municipio = '';
......@@ -52422,9 +52421,9 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
if (this.estado != '') {
//busca dados no banco de dados para carregar no componente
axios.get(this.url + '/api/municipios/' + this.estado).then(function (resposta) {
_this2.textoEscolhaMunicipio = "Escolha um municipio:";
_this2.buscando = false;
_this2.municipios = resposta.data;
_this.textoEscolhaMunicipio = "Escolha um municipio:";
_this.buscando = false;
_this.municipios = resposta.data;
}).catch(function (error) {
console.log(error);
});
......@@ -52436,14 +52435,14 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
}
},
mounted: function mounted() {
var _this3 = this;
var _this2 = this;
console.log(this.itens);
//console.log(this.form._token);
axios.get(this.url + '/api/ufs').then(function (resposta) {
//console.log(resposta.data);
_this3.estados = resposta.data;
_this2.estados = resposta.data;
}).catch(function (erro) {
console.log(erro);
});
......@@ -55869,7 +55868,6 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
methods: {
checkForm: function checkForm() {
var _this = this;
this.errors.item_financiavel = false;
this.bln_erros = false;
......@@ -55951,7 +55949,7 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
confirmButtonText: 'OK',
cancelButtonText: 'Cancelar'
}).then(function (result) {
console.log('Com erros: ' + _this.bln_valor_incorreto + ' - ' + _this.bln_erros);
if (result.value) {} else {}
});
} else {
console.log('Sem erros: ' + this.bln_valor_incorreto + ' - ' + this.bln_erros);
......@@ -55959,7 +55957,7 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
}
},
onChangeEstado: function onChangeEstado() {
var _this2 = this;
var _this = this;
this.textoEscolhaMunicipio = "Buscando...";
this.municipio = '';
......@@ -55967,9 +55965,9 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
if (this.estado != '') {
//busca dados no banco de dados para carregar no componente
axios.get(this.url + '/api/municipios/' + this.estado).then(function (resposta) {
_this2.textoEscolhaMunicipio = "Escolha um municipio:";
_this2.buscando = false;
_this2.municipios = resposta.data;
_this.textoEscolhaMunicipio = "Escolha um municipio:";
_this.buscando = false;
_this.municipios = resposta.data;
}).catch(function (error) {
console.log(error);
});
......@@ -718,7 +718,11 @@
confirmButtonText: 'OK',
cancelButtonText: 'Cancelar',
}).then((result) => {
console.log('Com erros: ' + this.bln_valor_incorreto +' - '+ this.bln_erros);
if (result.value ) {
}else{
}
})
}else{
console.log('Sem erros: ' + this.bln_valor_incorreto +' - '+ this.bln_erros);
......
......@@ -333,7 +333,11 @@
confirmButtonText: 'OK',
cancelButtonText: 'Cancelar',
}).then((result) => {
console.log('Com erros: ' + this.bln_valor_incorreto +' - '+ this.bln_erros);
if (result.value ) {
}else{
}
})
}else{
console.log('Sem erros: ' + this.bln_valor_incorreto +' - '+ this.bln_erros);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment