feat: init
This commit is contained in:
22
src/api/dashboard.ts
Normal file
22
src/api/dashboard.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
import type { TableData } from '@arco-design/web-vue/es/table/interface'
|
||||
import axios from 'axios'
|
||||
|
||||
export interface ContentDataRecord {
|
||||
x: string
|
||||
y: number
|
||||
}
|
||||
|
||||
export function queryContentData() {
|
||||
return axios.get<ContentDataRecord[]>('/api/content-data')
|
||||
}
|
||||
|
||||
export interface PopularRecord {
|
||||
key: number
|
||||
clickNumber: string
|
||||
title: string
|
||||
increases: number
|
||||
}
|
||||
|
||||
export function queryPopularList(params: { type: string }) {
|
||||
return axios.get<TableData[]>('/api/popular/list', { params })
|
||||
}
|
||||
Reference in New Issue
Block a user