Skip to content
Snippets Groups Projects
Commit 543ff054 authored by Renzo Mauro Ontivero's avatar Renzo Mauro Ontivero
Browse files

Modificando la URL y agregando el protocolo http:// a las URL

parent 76299d9b
No related branches found
No related tags found
No related merge requests found
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
<p>El servicio de Sello de Tiempo de BFA permite demostrar que el contenido de cualquier documento digital existió en un momento y que desde entonces, no ha cambiado. Al sellar un archivo, cualquiera podrá verificar el día y la hora en que su hash fue almacenado en Blockchain Federal Argentina. Tené en cuenta que el documento seleccionado nunca se sube a la red, garantizando su privacidad.</p> <p>El servicio de Sello de Tiempo de BFA permite demostrar que el contenido de cualquier documento digital existió en un momento y que desde entonces, no ha cambiado. Al sellar un archivo, cualquiera podrá verificar el día y la hora en que su hash fue almacenado en Blockchain Federal Argentina. Tené en cuenta que el documento seleccionado nunca se sube a la red, garantizando su privacidad.</p>
<p class="font_small"><a href="https://bfa.ar/sello">Si tenés un archivo con Recibo Digital (.rd) verificalo aquí</a></p> <p class="font_small"><a href="https://bfa.ar/sello">Si tenés un archivo con Recibo Digital (.rd) verificalo aquí</a></p>
<div id="app" <div id="app"
apiurl="https://tsa2.buenosaires.gob.ar" apiurl="10.10.0.7:3000"
lb_00=" El archivo " lb_00=" El archivo "
lb_01=" fue enviado con éxito para ser sellado" lb_01=" fue enviado con éxito para ser sellado"
lb_02="Se ha producido un error al intentar sellar " lb_02="Se ha producido un error al intentar sellar "
......
...@@ -157,9 +157,10 @@ export default { ...@@ -157,9 +157,10 @@ export default {
var self = this; var self = this;
self.verifyCounter = 0; self.verifyCounter = 0;
for (let i = 0; i < self.uploadedFiles.length; i++) { for (let i = 0; i < self.uploadedFiles.length; i++) {
var h = self.allHashes[i]; var h = self.allHashes[i];
let verifyUrl = `${this.apiurl}/verify/`+h let verifyUrl = `http://${this.apiurl}/verify/`+h
console.log(`${this.apiurl}/verify/`+h)
self.loading = true self.loading = true
axios.get(verifyUrl).then((res) => { axios.get(verifyUrl).then((res) => {
//console.log(res.data) //console.log(res.data)
...@@ -195,7 +196,7 @@ export default { ...@@ -195,7 +196,7 @@ export default {
}, },
verifybyURL(h){ verifybyURL(h){
var self = this; var self = this;
let verifyUrl = `${this.apiurl}/verify/`+h let verifyUrl = `http://${this.apiurl}/verify/`+h
self.loading = true self.loading = true
axios.get(verifyUrl).then((res) => { axios.get(verifyUrl).then((res) => {
//console.log(res.data) //console.log(res.data)
...@@ -215,7 +216,7 @@ export default { ...@@ -215,7 +216,7 @@ export default {
stamp() { stamp() {
var self = this; var self = this;
let stampUrl = `${self.apiurl}/stamp` let stampUrl = `http://${self.apiurl}/stamp`
self.loading = true self.loading = true
axios.post(stampUrl, { axios.post(stampUrl, {
hashes: self.allHashes hashes: self.allHashes
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment