no message
This commit is contained in:
@@ -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(() => {
|
||||
|
||||
Reference in New Issue
Block a user