Browse Source

完成球体下移

songtongtong/feature-20250717104937-众筹
Ethereal 4 weeks ago
parent
commit
824354753e
  1. 1
      src/views/choujiang/hxl-cj/cj.vue
  2. 4
      src/views/choujiang/index.vue
  3. 1
      src/views/choujiang/lottery/Lottery3D.vue
  4. 1
      src/views/choujiang/lottery/dataManager.js

1
src/views/choujiang/hxl-cj/cj.vue

@ -368,6 +368,7 @@ const initAll = async () => {
getPrizeListApi(),
getUserListApi(),
]);
console.log("hxl-cj调用一次接口", prizeList);
//
prizes.value = prizeList.data;
//

4
src/views/choujiang/index.vue

@ -104,7 +104,7 @@ onMounted(async () => {
isDisabled.value = true;
setTimeout(() => {
isDisabled.value = false;
}, 3800);
}, 4000);
await dataManager.getBasicData();
await dataManager.getUsers();
@ -245,7 +245,7 @@ async function handleLotteryClick() {
case "result":
setTimeout(() => {
isDisabled.value = false;
}, 2000);
}, 2800);
// result
await lottery3DRef.value?.switchScreen?.("lottery");

1
src/views/choujiang/lottery/Lottery3D.vue

@ -705,6 +705,7 @@ onMounted(async () => {
};
const userList = await getUserListApi();
console.log("3D调用一次接口", userList);
// lotteryStore.setWinners(userList);
// console.log("userList", userList);
// 3D

1
src/views/choujiang/lottery/dataManager.js

@ -50,6 +50,7 @@ export function useDataManager() {
// 获取真实用户数据
const userListResponse = await getUserListApi();
console.log("dataManager调用一次接口", userListResponse);
console.log("userList", userListResponse);
// 将后端返回的用户数据转换为兼容格式

Loading…
Cancel
Save