参数
request.headers.set('Content-Type', "application/json")
var myparam={meeting: "meeting"
}
get方式
this.$http.get(netUrl, {params: myparam//params必须写}).then(success => {console.log(response.data);if (response.data != null) {//处理}},error => {console.log("error");});
post方式
this.$http.post(netUrl, myparam).then(response => {if (response.data != null) {//处理}},response => {console.log("error");});