this.$store.commit('cart/setCart', {goods_id: this.goodsInfo.goods_id})//mutations
this.$store.dispath('cart/getCart', {goods_id: this.goodsInfo.goods_id})//actions
this.$store.getters['cart/total']//getters
this.$store.state.cart.cartInfo//state
// cart是模块modules之一