no message

This commit is contained in:
A1300399510
2025-11-04 01:57:07 +08:00
parent 671732d277
commit a7d803f633
8 changed files with 43 additions and 22 deletions

View File

@@ -41,7 +41,7 @@ export const latestList = defineComponent({
let latestList = ref([]);
const getTopicLatest = () => {
ajaxget(`/v2/api/forum/getTopicLatest?type=thread`).then((res) => {
ajaxGet(`/v2/api/forum/getTopicLatest?type=thread`).then((res) => {
const data = res.data;
const list = data.thread || [];
latestList.value = list;
@@ -58,7 +58,7 @@ export const latestList = defineComponent({
let topList = ref([]);
const topicHandpicked = () => {
ajaxget(`/v2/api/forum/topicLists?simple=1&best=1`).then((res) => {
ajaxGet(`/v2/api/forum/topicLists?simple=1&best=1`).then((res) => {
const data = res.data;
topList.value = data.data;
nextTick(() => {