order-list.js
4.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
import {
buyerOrderStatusList,
sellerOrderStatusList,
orderStatusKey,
ownType,
} from 'constants/order-constants';
function initialOrderState() {
return {
page: 1,
pageSize: 10,
pagetotal: 0,
orderList: [], // 订单列表
// scroll 组件参数,是否触发上拉事件
pullUpLoad: true,
isShowEmpty: false,
};
}
const initialState = () => {
const orderListByType = {};
[
[ownType.BUY, buyerOrderStatusList],
[ownType.SELL, sellerOrderStatusList],
].forEach(statusInfo => {
statusInfo[1].forEach(orderStatus => {
const key = orderStatusKey(statusInfo[0], orderStatus.value);
orderListByType[key] = initialOrderState();
});
});
return {
orderListByType,
};
};
export default function() {
return {
namespaced: true,
state: initialState,
mutations: {
setOrderList(state, { res, owner, status }) {
let { page, pagetotal, data = [] } = res;
const orderState = state.orderListByType[orderStatusKey(owner, status)];
orderState.isShowEmpty = page === 1 && data.length === 0;
orderState.page = ++page;
orderState.pagetotal = pagetotal;
orderState.orderList = orderState.orderList.concat(data);
// 分页结束
if (page > pagetotal) {
orderState.pullUpLoad = false;
}
},
filterOrderList(state, { orderCode, owner, status }) {
const orderState = state.orderListByType[orderStatusKey(owner, status)];
orderState.orderList = orderState.orderList.filter(
order => order.orderCode !== orderCode,
);
orderState.isShowEmpty = orderState.orderList.length === 0;
},
resetData(state, { owner, status } = {}) {
const orderListState = initialOrderState();
state.orderListByType[orderStatusKey(owner, status)] = orderListState;
},
},
actions: {
/**
* 获取订单列表
* @param {*} param0 vue store context
* @param {
* owner: 订单来源
* status: 订单状态 默认全部
* }
* r
*/
async fetchOrderList({ commit, state }, { owner, status }) {
const { page } = state.orderListByType[orderStatusKey(owner, status)];
const res = await this.$api.get('/api/order/list', {
tabType: owner,
type: status,
page,
});
if (res.code === 200) {
commit('setOrderList', { res: res.data, owner, status });
}
},
/**
* 删除订单
* @param {
* orderCode: 订单编码
* owner: 订单来源 buy | sell
* } param1
*/
async deleteOrder(_, { orderCode, owner }) {
// owner: ownType
const res = await this.$api.get(`/api/${owner}/order/delete`, {
orderCode,
});
const { data } = res;
return data;
},
/**
* 取消订单
* 买家取消购买
* 卖家取消出售
* @param {
* orderCode: 订单编码
* owner: 订单来源 buy | sell
* } param1
*/
async cancelTrade(_, { orderCode, owner }) {
const res = await this.$api.get(`/api/${owner}/trade/cancel`, {
orderCode,
});
const isOk = res.code === 200 ? res.data : false;
return isOk;
},
/**
* 取消订单 提示信息
* 买家取消购买
* 卖家取消出售
* @param {
* orderCode: 订单编码
* owner: 订单来源 buy | sell
* } param1
*/
async cancelTradeConfirmInfo(_, { orderCode, owner }) {
const res = await this.$api.get(
`/api/${owner}/trade/cancel/confirm/info`,
{ orderCode },
);
return res.code === 200 ? res.data : null;
},
/**
* 确认收货
*/
async confirmReceipt(_, { orderCode }) {
const res = await this.$api.post('/api/buy/confirm/receipt', {
orderCode,
});
return res.code === 200 ? res.data : null;
},
// 买家调价计算
async computeChangePrice(_, { orderCode, price }) {
const res = await this.$api.get(
'/api/order/buyerask/computechangeprice',
{
orderCode: `${orderCode}`,
price: +price,
},
);
const { code, message } = res;
return code === 200 ? res : { code, message };
},
// 买家调价
async confirmChangePrice(_, { orderCode, price }) {
const res = await this.$api.post('/api/order/buyerask/changeprice', {
orderCode: `${orderCode}`,
price: +price,
});
if (res.code === 200) {
return { errMsg: '', isOk: true, bidData: res.data };
} else {
return { errMsg: res.message, isOk: false };
}
},
},
};
}