async getOrgList() {
let res = await this.$axios.get(‘/user/b/getOrgList‘, {
params: {
pageNo: 1,
pageSize: 99,
type: 6
}
})
this.researchList = res.data.retData.list
},
async AddOrModifyIt() {
await this.$axios.post(‘/project/b/project/updateProjectOrg‘, {
leader: this.leader,
oldOrgId: this.orgPrimaryId,
planSubjectNum: this.planSubjectNum,
sectionId: this.mainResearchValue.sectionId,
userId: this.mainResearchValue.userId,
userName: this.mainResearchValue.name
})
},
async deleteRow(index, row) {
await this.$axios.post(
‘/project/b/project/deleteProjectOrgById‘,
{},
{
params: {
orgPrimaryId: this.orgPrimaryId
}
}
)
},
vuejs 前端 使用axios发送get、post请求 参数在query和body里面的各种情况
原文:https://www.cnblogs.com/smile-fanyin/p/14960743.html