| 123456789101112131415161718192021222324 |
- import axios from '~/plugins/axios'
- export const actions = {
- // 获取卖家中心订单列表
- getSellOrderList ({ commit }, params = {}) {
- commit('order/REQUEST_ORDERLIST')
- return axios.get('/trade/purchase/status/createtime', {params})
- .then(response => {
- commit('order/GET_ORDERLIST_SUCCESS', response.data)
- }, err => {
- commit('order/GET_ORDERLIST_FAILURE', err)
- })
- },
- // 获取买家中心订单列表
- getBuyerOrderList ({ commit }, params = {}) {
- commit('order/REQUEST_ORDERLIST')
- return axios.get('/trade/history/goods/list', {params})
- .then(response => {
- commit('order/GET_ORDERLIST_SUCCESS', response.data)
- }, err => {
- commit('order/GET_ORDERLIST_FAILURE', err)
- })
- },
- }
|