feat: 九宫格完成

This commit is contained in:
2025-08-15 00:44:01 +08:00
parent e8f5d354ec
commit ff3d0e5028
6 changed files with 332 additions and 153 deletions
+16 -16
View File
@@ -5,9 +5,9 @@ import request from '@/utils/request.js'; // 引入封装的方法
export function getActivityList(data) {
// return request.post('/common/getSmsCode',qs.stringify(params));
return request({
url: "/raffle/getActivityList",
method: "get",
data,
url: "/raffle/getActivityList",
method: "get",
data,
});
}
@@ -17,19 +17,19 @@ export function getActivityList(data) {
*/
export function raffleExecute(params) {
return request({
url: "/raffle/execute",
method: "post",
data:params,
isShowLoading:false,
url: "/raffle/execute",
method: "post",
data: params,
isShowLoading: false,
});
}
// 查询中奖记录
export function getWinningList(data) {
return request({
url: "/raffle/getWinningList",
method: "get",
data,
url: "/raffle/getWinningList",
method: "get",
data,
});
}
/**
@@ -38,17 +38,17 @@ export function getWinningList(data) {
*/
export function takeGoods(params) {
return request({
url: "/raffle/takeGoods",
method: "post",
data:params,
url: "/raffle/takeGoods",
method: "post",
data: params,
});
}
// 查询抽奖加速次数
export function getQuickenTimes(data) {
return request({
url: "/raffle/getQuickenTimes",
method: "get",
data,
url: "/raffle/getQuickenTimes",
method: "get",
data,
});
}