fix browser

This commit is contained in:
jxxghp
2023-06-29 21:43:43 +08:00
parent 76cd494bdf
commit f88b70ce56
7 changed files with 10 additions and 8 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ const dataList = ref<TransferHistory[]>([]);
// 获取订阅列表数据
const fetchData = async () => {
try {
dataList.value = await api.get("/history/transfer");
dataList.value = await api.get("history/transfer");
} catch (error) {
console.error(error);
}