diff --git a/src/api/boguApi.js b/src/api/boguApi.js index 732add7..94247f4 100644 --- a/src/api/boguApi.js +++ b/src/api/boguApi.js @@ -2,7 +2,7 @@ import service from "./indexApi"; const boguApi = { selectBogu(queryType){ //查询首页的数据 - return service.post('/api/show/getShowList', {queryType: queryType}); + return service.post('/api/show/getList', {queryType: queryType}); } } diff --git a/src/api/pindaoApi.js b/src/api/pindaoApi.js index 882944a..19eee56 100644 --- a/src/api/pindaoApi.js +++ b/src/api/pindaoApi.js @@ -2,7 +2,7 @@ import service from "./indexApi"; const pindaoApi = { selectPindao(queryType){ //查询首页的数据 - return service.post('/api/show/getShowList', {queryType: queryType}); + return service.post('/api/show/getList', {queryType: queryType}); } } diff --git a/src/api/zhiboApi.js b/src/api/zhiboApi.js index 25009f2..17a1d8c 100644 --- a/src/api/zhiboApi.js +++ b/src/api/zhiboApi.js @@ -2,7 +2,7 @@ import service from "./indexApi"; const zhiboApi = { selectZhibo(queryType){ //查询首页的数据 - return service.post('/api/live/getLiveList', {queryType: queryType}); + return service.post('/api/live/getList', {queryType: queryType}); } }