This commit is contained in:
daihh
2023-03-01 16:40:39 +08:00
parent 7262e8a568
commit 294cda0097
2 changed files with 7 additions and 7 deletions

View File

@@ -140,7 +140,7 @@ const postJson=function(baseURL,url,postData){
url: url,
method: 'post',
data:postData,
headers:{'Content-Type':'application/json'},
headers:{'Content-Type':'application/json;charset=utf-8'},
})
}

View File

@@ -149,7 +149,7 @@ export default {
apiManage.userTaskList(params).then(res=>{
if(res.code==200){
this.total = 10;
this.couresList = res.data;
this.couresList = res.data.records;
}else{
this.$message.error('查询数据失败:'+res.msg);
}