|
|
@ -111,7 +111,10 @@ |
|
|
|
|
|
|
|
getTrainPlan(){ |
|
|
|
var that = this |
|
|
|
fetch(`https://www.tall.wiki/gateway/sports/training/get?projectId=${this.projectId}`, {method: 'post'}) |
|
|
|
let queryStringRequest = new Request(`https://www.tall.wiki/gateway/sports/training/get?projectId=${this.projectId}`, { |
|
|
|
method: 'post' |
|
|
|
}) |
|
|
|
fetch(queryStringRequest) |
|
|
|
.then(function(response) { |
|
|
|
return response.json(); |
|
|
|
}) |
|
|
|