broadcast
This commit is contained in:
parent
2b26683d39
commit
de3e9bca1d
@ -23,6 +23,7 @@ enum URL {
|
|||||||
// 获取默认Notice
|
// 获取默认Notice
|
||||||
getNotice = '/getNotice',
|
getNotice = '/getNotice',
|
||||||
getMail = '/getMail',
|
getMail = '/getMail',
|
||||||
|
getBroadcastList='getBroadcastList',
|
||||||
// token 登录
|
// token 登录
|
||||||
tokenLogin = '/tokenLogin',
|
tokenLogin = '/tokenLogin',
|
||||||
// 群组
|
// 群组
|
||||||
@ -268,6 +269,8 @@ export const withdraw = (data: any) => post(URL.withdraw, data);
|
|||||||
export const getCenterUrl = () => post(URL.getCenterUrl);
|
export const getCenterUrl = () => post(URL.getCenterUrl);
|
||||||
// 获取平台配置
|
// 获取平台配置
|
||||||
export const getPlatformConfig = () => post(URL.getPlatformConfig);
|
export const getPlatformConfig = () => post(URL.getPlatformConfig);
|
||||||
|
export const getBroadcastList = () => post(URL.getBroadcastList);
|
||||||
|
|
||||||
// 获取默认Notice
|
// 获取默认Notice
|
||||||
export const getNotice = async (data: any) => {
|
export const getNotice = async (data: any) => {
|
||||||
return await instance(URL.getNotice, {
|
return await instance(URL.getNotice, {
|
||||||
|
@ -71,7 +71,7 @@ export const gameListStore = defineStore(actions.GAME_LIST, {
|
|||||||
},
|
},
|
||||||
// 火爆热门 轮播
|
// 火爆热门 轮播
|
||||||
async setNotice() {
|
async setNotice() {
|
||||||
const notice = await http.getNotice();
|
const notice = await http.getBroadcastList();
|
||||||
if (notice.code != 0) return;
|
if (notice.code != 0) return;
|
||||||
let noticeData: Array<any> = [];
|
let noticeData: Array<any> = [];
|
||||||
for (let i = 0; i < notice.data.length; i++) {
|
for (let i = 0; i < notice.data.length; i++) {
|
||||||
@ -85,6 +85,8 @@ export const gameListStore = defineStore(actions.GAME_LIST, {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
console.log(noticeData);
|
||||||
|
|
||||||
noticeStore().setAllNotice(noticeData);
|
noticeStore().setAllNotice(noticeData);
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -118,7 +120,7 @@ export const gameListStore = defineStore(actions.GAME_LIST, {
|
|||||||
|
|
||||||
// 请求 火爆中奖信息
|
// 请求 火爆中奖信息
|
||||||
if (noticeStore().notice.length === 0) {
|
if (noticeStore().notice.length === 0) {
|
||||||
// await this.setNotice();
|
await this.setNotice();
|
||||||
}
|
}
|
||||||
|
|
||||||
this.setPackageData();
|
this.setPackageData();
|
||||||
|
Loading…
Reference in New Issue
Block a user