feat: 支持设置请求参数

This commit is contained in:
若海
2024-02-02 14:21:11 +08:00
parent 90b9388386
commit c72e7a915f
2 changed files with 8 additions and 6 deletions

View File

@@ -4,11 +4,13 @@ import axios from "@/api/request";
* 获取热榜分类数据
* @param {string} type 热榜分类名称
* @param {boolean} isNew 是否拉取最新数据
* @param {object} params 请求参数
* @returns
*/
export const getHotLists = (type, isNew) => {
export const getHotLists = (type, isNew, params) => {
return axios({
method: "GET",
url: `/${type}${isNew ? "/new" : "/"}`,
params,
});
};

View File

@@ -38,7 +38,7 @@
secondary
strong
round
@click.stop="getHotListsData(hotData.name)"
@click.stop="getHotListsData(hotData)"
>
<template #icon>
<n-icon :component="Refresh" />
@@ -166,11 +166,11 @@ const listLoading = ref(false);
const loadingError = ref(false);
// 获取热榜数据
const getHotListsData = async (type, isNew = false) => {
const getHotListsData = async (item, isNew = false) => {
try {
// hotListData.value = null;
loadingError.value = false;
const result = await getHotLists(type, isNew);
const result = await getHotLists(item.name, isNew, item.params);
// console.log(result);
if (result.code === 200) {
listLoading.value = false;
@@ -195,7 +195,7 @@ const getNewData = () => {
if (now - lastClickTime.value > 60000) {
// 点击事件
listLoading.value = true;
getHotListsData(props.hotData.name, true);
getHotListsData(props.hotData, true);
// 更新最后一次点击时间
lastClickTime.value = now;
localStorage.setItem(`${props.hotData.name}Btn`, now);
@@ -241,7 +241,7 @@ watch(
);
onMounted(() => {
if (props.hotData.name) getHotListsData(props.hotData.name);
if (props.hotData.name) getHotListsData(props.hotData);
});
</script>