diff --git a/src/api/user.js b/src/api/user.js index 45c13b4d..223900f5 100644 --- a/src/api/user.js +++ b/src/api/user.js @@ -27,7 +27,7 @@ export function sendAnalyzeRequest(token) { return request({ url: '/testpredict', method: 'get', - baseURL: 'http://localhost:8888', + baseURL: 'http://localhost:8010', params: { token } }) } @@ -36,7 +36,7 @@ export function sendAnalyzeOnDateRequest(token, fromDate, toDate) { return request({ url: '/predictOnDate', method: 'get', - baseURL: 'http://localhost:8888', + baseURL: 'http://localhost:8010', params: { token, fromDate, toDate } }) } diff --git a/src/layout/components/Sidebar/SidebarItem.vue b/src/layout/components/Sidebar/SidebarItem.vue index 2d49dd87..82f6b78f 100644 --- a/src/layout/components/Sidebar/SidebarItem.vue +++ b/src/layout/components/Sidebar/SidebarItem.vue @@ -21,6 +21,7 @@ class="nest-menu" /> + @@ -57,6 +58,12 @@ export default { return {} }, methods: { + // addNewTask() { + // this.item.children.push({ + // name: "Task 2", + // path: "" + // }) + // }, hasOneShowingChild(children = [], parent) { const showingChildren = children.filter(item => { if (item.hidden) { @@ -67,6 +74,7 @@ export default { return true } }) + // console.log(showingChildren) // When there is only one child router, the child router is displayed by default if (showingChildren.length === 1) { diff --git a/src/layout/components/Sidebar/index.vue b/src/layout/components/Sidebar/index.vue index fb014a23..5b2c16c5 100644 --- a/src/layout/components/Sidebar/index.vue +++ b/src/layout/components/Sidebar/index.vue @@ -15,6 +15,7 @@ + diff --git a/src/layout/index.vue b/src/layout/index.vue index 316bf698..4f0b244a 100644 --- a/src/layout/index.vue +++ b/src/layout/index.vue @@ -5,7 +5,7 @@
- +

Data Uploader

@@ -309,11 +310,12 @@ import Cropper from 'cropperjs' import ImageCompressor from '@xkeshi/image-compressor' import FileUpload from 'vue-upload-component' import { sendAnalyzeRequest } from '@/api/user' +import taskList from '@/views/VueUploader/components/taskList' // import 'bootstrap' // import 'bootstrap/dist/css/bootstrap.min.css' export default { components: { - FileUpload, + FileUpload, taskList }, data() { return { @@ -332,7 +334,7 @@ export default { thread: 3, name: 'file', postAction: '/upload/post', - putAction: 'http://localhost:8888/uploader', + putAction: 'http://localhost:8010/uploader', headers: { 'X-Csrf-Token': 'xxxx', }, diff --git a/src/views/plot/plot.vue b/src/views/plot/plot.vue index c8ad9a4c..ba90d922 100644 --- a/src/views/plot/plot.vue +++ b/src/views/plot/plot.vue @@ -9,6 +9,7 @@
+