You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
484 B
25 lines
484 B
import { request } from '@/utils/http'
|
|
|
|
// 获取投票选举(正在进行)
|
|
export function getVoteprogress() {
|
|
return request.http({
|
|
url: '/api/vote_progress',
|
|
method: 'GET'
|
|
})
|
|
}
|
|
|
|
//用户投票
|
|
export function voteMember(data: any) {
|
|
return request.http({
|
|
url: '/api/vote_member',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 获取我的选举
|
|
export function getMyvote() {
|
|
return request.http({
|
|
url: '/api/my_vote',
|
|
method: 'GET'
|
|
})
|
|
}
|
|
|