diff --git a/src/api/user.js b/src/api/user.js
index b0f505d6..68fbfe03 100644
--- a/src/api/user.js
+++ b/src/api/user.js
@@ -23,10 +23,11 @@ export function logout() {
})
}
-export function sendAnalyzeRequest() {
+export function sendAnalyzeRequest(token) {
return request({
url: '/testpredict',
method: 'get',
- baseURL: 'http://localhost:8010'
+ baseURL: 'http://localhost:8888',
+ params: { token }
})
}
diff --git a/src/components/VueUploader/index.vue b/src/components/VueUploader/index.vue
new file mode 100644
index 00000000..b821b825
--- /dev/null
+++ b/src/components/VueUploader/index.vue
@@ -0,0 +1,79 @@
+
+
+
+ - {{ file.name }} - Error: {{ file.error }}, Success: {{ file.success }}
+
+
+ Upload file
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/main.js b/src/main.js
index 9a2f0849..0b104cba 100644
--- a/src/main.js
+++ b/src/main.js
@@ -41,18 +41,18 @@ Vue.use(Element, {
// register global utility filters
Object.keys(filters).forEach(key => {
Vue.filter(key, filters[key])
- Vue.filter('formatSize', function(size) {
- if (size > 1024 * 1024 * 1024 * 1024) {
- return (size / 1024 / 1024 / 1024 / 1024).toFixed(2) + ' TB'
- } else if (size > 1024 * 1024 * 1024) {
- return (size / 1024 / 1024 / 1024).toFixed(2) + ' GB'
- } else if (size > 1024 * 1024) {
- return (size / 1024 / 1024).toFixed(2) + ' MB'
- } else if (size > 1024) {
- return (size / 1024).toFixed(2) + ' KB'
- }
- return size.toString() + ' B'
- })
+ Vue.filter('formatSize', function (size) {
+ if (size > 1024 * 1024 * 1024 * 1024) {
+ return (size / 1024 / 1024 / 1024 / 1024).toFixed(2) + ' TB'
+ } else if (size > 1024 * 1024 * 1024) {
+ return (size / 1024 / 1024 / 1024).toFixed(2) + ' GB'
+ } else if (size > 1024 * 1024) {
+ return (size / 1024 / 1024).toFixed(2) + ' MB'
+ } else if (size > 1024) {
+ return (size / 1024).toFixed(2) + ' KB'
+ }
+ return size.toString() + ' B'
+})
})
Vue.config.productionTip = false
diff --git a/src/router/index.js b/src/router/index.js
index e79788b2..110c0554 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -95,6 +95,19 @@ export const constantRoutes = [
}
]
},
+ {
+ path: '/analyzing',
+ hidden: true,
+ component: Layout,
+ children: [
+ {
+ path: 'haha',
+ component: ()=>import('@/views/Analyzing/analyzing'),
+ name: 'analyze',
+ meta: { title: 'analyzing' }
+ }
+ ]
+ },
{
path: '/documentation',
component: Layout,
diff --git a/src/views/Analyzing/analyzing.vue b/src/views/Analyzing/analyzing.vue
index 38b92bf5..b138840e 100644
--- a/src/views/Analyzing/analyzing.vue
+++ b/src/views/Analyzing/analyzing.vue
@@ -1,3 +1,44 @@
-
+
+
+
+
+
+
Analyzing....
+
+
+
+
+
+
diff --git a/src/views/VueUploader/index.vue b/src/views/VueUploader/index.vue
index d15fd467..a48aa507 100644
--- a/src/views/VueUploader/index.vue
+++ b/src/views/VueUploader/index.vue
@@ -1,296 +1,309 @@
-
-
-
Data Uploader
-
-
-
Drop files to upload
-
-
-
-
-
-
- # |
- Thumb |
- Name |
- Size |
- Speed |
- Status |
- Action |
-
-
-
-
-
-
- Drop files anywhere to upload or
-
-
- |
-
-
- {{ index }} |
-
-
- No Image
- |
-
-
- {{ file.name }}
-
-
- |
- {{ file.size | formatSize }} |
- {{ file.speed | formatSize }} |
-
- {{ file.error }} |
- success |
- active |
- |
-
-
-
-
-
- |
-
-
-
-
-
-
-
-
-
- Select
-
-
-
-
-
-
-
-
-
-
-
-
-
- Allow upload mime type
-
-
-
-
- Allow upload file extension
-
-
-
-
-
- Also upload the number of files at the same time (number of threads)
-
-
-
-
-
-
-
-
-
-
-
-
- More than {{ autoCompress | formatSize }} files are automatically compressed
- Set up automatic compression
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
Data Uploader
+
+
Drop files to upload
+
+
+
+
+
+ # |
+ Thumb |
+ Name |
+ Size |
+ Speed |
+ Status |
+ Action |
+
+
+
+
+
+
+ Drop files anywhere to upload or
+
+
+ |
+
+
+ {{index}} |
+
+
+ No Image
+ |
+
+
+ {{file.name}}
+
+
+ |
+ {{file.size | formatSize}} |
+ {{file.speed | formatSize}} |
+
+ {{file.error}} |
+ success |
+ active |
+ |
+
+
+
+
+
+ |
+
+
+
+
+
+
+
+
+
+ Select
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Allow upload mime type
+
+
+
+
+ Allow upload file extension
+
+
+
+
+
+ Also upload the number of files at the same time (number of threads)
+
+
+
+
+
+
+
+
+
+
+
+
+ More than {{autoCompress | formatSize}} files are automatically compressed
+ Set up automatic compression
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -->
\ No newline at end of file