Commit a8fc686d authored by brent's avatar brent

update aonweb

parent 5ad2708a
......@@ -8,7 +8,7 @@
"name": "AONET",
"version": "0.0.0",
"dependencies": {
"aonweb": "^1.0.1",
"aonweb": "^1.0.2",
"aos": "^2.3.4",
"axios": "^1.6.8",
"element-plus": "^2.7.5",
......@@ -1853,9 +1853,9 @@
}
},
"node_modules/aonweb": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/aonweb/-/aonweb-1.0.1.tgz",
"integrity": "sha512-oh5cjsy4T1yWykh31ATbCQCmXQXVekpKXGS34O22DrC0mME6ci6S6qHZuEpEfkbLpeWCZw5G8BXMg+qeyFrL4w==",
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/aonweb/-/aonweb-1.0.2.tgz",
"integrity": "sha512-js/hm0weUS1lbWpTgDWvfjttAxjmHl19pfpOWganrSVneFC89DEbI4x2wfPqSu+FGXyVtXoQbsY5Sv48tQQJVg==",
"dependencies": {
"@fingerprintjs/fingerprintjs": "^4.4.0",
"bignumber.js": "^9.1.2",
......@@ -5621,9 +5621,9 @@
}
},
"aonweb": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/aonweb/-/aonweb-1.0.1.tgz",
"integrity": "sha512-oh5cjsy4T1yWykh31ATbCQCmXQXVekpKXGS34O22DrC0mME6ci6S6qHZuEpEfkbLpeWCZw5G8BXMg+qeyFrL4w==",
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/aonweb/-/aonweb-1.0.2.tgz",
"integrity": "sha512-js/hm0weUS1lbWpTgDWvfjttAxjmHl19pfpOWganrSVneFC89DEbI4x2wfPqSu+FGXyVtXoQbsY5Sv48tQQJVg==",
"requires": {
"@fingerprintjs/fingerprintjs": "^4.4.0",
"bignumber.js": "^9.1.2",
......
......@@ -11,7 +11,7 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
"aonweb": "^1.0.1",
"aonweb": "^1.0.2",
"aos": "^2.3.4",
"axios": "^1.6.8",
"element-plus": "^2.7.5",
......
......@@ -25,6 +25,7 @@ import {
onMounted
} from 'vue';
import { useRoute, useRouter } from 'vue-router'
import bus from '../eventBus.js';
import Header from '../components/Header.vue';
const router = useRouter()
......@@ -38,6 +39,9 @@ function goToCreate() {
})
}
async function downloadImage() {
if (!imageUrl.value) return;
try {
......@@ -63,6 +67,7 @@ async function downloadImage() {
onMounted(() => {
imageUrl.value = route.query.url;
bus.emit('get_balance',"prediction");
})
</script>
......
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