userCenter.js 387 B

1234567891011121314
  1. import axios from '~plugins/axios'
  2. export const actions = {
  3. // app获取购物车列表
  4. loadCartList({ commit }, params = {}) {
  5. commit('list/REQUEST_CART')
  6. return axios.get('/trade/cart/pageInfo', {params: params})
  7. .then(response => {
  8. commit('list/GET_CART_SUCCESS', response.data)
  9. }, err => {
  10. commit('list/GET_CART_FAILURE', err)
  11. })
  12. }
  13. }