Merge pull request #5 from nowcastsystem/weijian

haha
This commit is contained in:
nowcastsystem 2019-10-02 14:28:57 -05:00 committed by GitHub
commit cb2c72f9b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 13 deletions

View File

@ -531,8 +531,19 @@ export default {
},
onSendAnalyzeRequest() {
var k = [100, 120, 161, 134, 105, 160, 165,190,200]
this.$router.push({ name: "plotTest", params: {
// var k = [100, 120, 161, 134, 105, 160, 165,190,200]
this.$router.push({ name: "analyze" })
this.listLoading = true
sendAnalyzeRequest().then(response => {
var token = response['token']
var para = response['future']
// if the response from the server indicating that it's running the analysis, then redirect to a loading view
if (token == 'success') {
// this.$router.push({ name: "plot" })
this.$router.push({ name: "plotTest", params: {
past: {
yAxisData: [100, 120, 161, 134, 105, 160, 165, 190,200,250],
xAxisData: ['2019-7-13', '2019-7-14', '2019-7-15', '2019-7-16', '2019-7-17', '2019-7-18', '2019-7-19', '2019-7-20','2019-7-21','2019-7-22'] ,
@ -546,17 +557,8 @@ export default {
colorPicked: '#519e19'
}
}})
// this.$router.push({ name: "analyze" })
// this.listLoading = true
// sendAnalyzeRequest().then(response => {
// var token = response['token']
//
// // if the response from the server indicating that it's running the analysis, then redirect to a loading view
// if (token == 'success') {
// this.$router.push({ name: "plot" })
// }
// })
}
})
}
}