goods.js 997 Bytes
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
}