Browse Source

培训计划

tiaosheng-ms
xuesinan 4 years ago
parent
commit
63b684a5e4
  1. 7
      index.html

7
index.html

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

Loading…
Cancel
Save