2 changed files with 29 additions and 5 deletions
@ -0,0 +1,15 @@ |
|||
import { request } from '@/utils/http' |
|||
|
|||
// 获取投票选举(正在进行)
|
|||
export function getCategoryData() { |
|||
return request.http({ |
|||
url: '/api/vote_progress' |
|||
}) |
|||
} |
|||
|
|||
export function feedback(data: any) { |
|||
return request.http({ |
|||
url: '/api/t.feedback/add', |
|||
data |
|||
}) |
|||
} |
|||
Loading…
Reference in new issue