index.js 1.29 KB
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
}