index.js
1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import {homeContent,boxMsg,bogMsgId} from "@/api/home/index.js"
const state = {
//首页盲盒
box:[],
//盲盒信息
boxmsg:[],
// 轮播图
homePicture:"",
// 盲盒内物品
boxGoods:[],
};
const mutations = {
//获取首页盲盒
GAINHOMECONTENT(state,data){
state.box = data.boxList
state.homePicture = data.advertiseList[0].pic
},
//获取根据编号查询盲盒信息
GAINBOXMSG(state,data){
state.boxmsg = data
},
// 获取盲盒内物品
GAINBOXMSGID(state,data){
state.boxGoods = data
}
};
const actions = {
//获取首页盲盒
async gainHomeContent({commit}){
let result = await homeContent()
console.log(result);
if (result.code == 200) {
commit("GAINHOMECONTENT", result.data)
}
},
//获取根据编号查询盲盒信息
async gainBoxMsg({commit},boxId){
let result = await boxMsg(boxId)
console.log(result);
if (result.code == 200) {
commit("GAINBOXMSG", result.data)
}
},
//获取盲盒内物品
async gainBogMsgId({commit},boxId){
let result = await bogMsgId(boxId)
console.log(result);
if (result.code == 200) {
commit("GAINBOXMSGID", result.data)
}
}
};
const getters = {
}
export default {
state,
mutations,
actions,
getters
}