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.

3 lines
259 B

  1. import { request } from "@/utils/request";
  2. export const apiAddVoteRecord = async (voteRecord) => request.post(`/vote/addRecord`,voteRecord)
  3. export const apiGetVoteIndex = async(userId,voteId) => request.get(`/vote/getIndex?userId=${userId}&voteId=${voteId}`)