goods.js
997 Bytes
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
import { boxMsg,bogMsgId } from "../api/goods/index"
// 商品
// 状态
const state = {
//盲盒信息
boxmsg: [],
// 盲盒内物品
boxGoods:[],
}
// 改变
const mutations = {
//获取根据编号查询盲盒信息
GAINBOXMSG(state, data) {
state.boxmsg = data
},
// 获取盲盒内物品
GAINBOXMSGID(state,data){
state.boxGoods = data
}
}
// 行动
const actions = {
//获取根据编号查询盲盒信息
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
}