order-list.js
4.84 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
191
192
const initailData = () => ({
page: 1,
pageSize: 10,
pagetotal: 0,
orderList: [], // 订单列表
// scroll 组件参数,是否触发上拉事件
pullUpLoad: true,
// 当前查询订单状态
currentStatus: null,
routeParamStatus: null,
isShowEmpty: false,
});
export default function() {
return {
namespaced: true,
modules: {},
state: initailData,
mutations: {
setOrderList(state, res) {
let { page, pagetotal, data = [] } = res;
state.isShowEmpty = page === 1 && data.length === 0;
state.page = ++page;
state.pagetotal = pagetotal;
state.orderList = state.orderList.concat(data);
// 分页结束
if (page > pagetotal) {
state.pullUpLoad = false;
}
},
filterOrderList(state, orderCode) {
state.orderList = state.orderList.filter(
order => order.orderCode !== orderCode,
);
state.isShowEmpty = state.orderList.length === 0;
},
setOrderStatus(state, currentStatus) {
state.currentStatus = +currentStatus;
},
setRouteParamStatus(state, status = 1) {
state.routeParamStatus = +status;
},
resetPartialData(state) {
state.page = 1;
state.orderList = [];
state.pagetotal = 0;
state.pullUpLoad = true;
},
resetData(state) {
const s = initailData();
const keyList = Object.keys(s);
const keyBlackList = ['currentStatus', 'routeParamStatus'];
for (const key of keyList) {
if (!keyBlackList.includes(key)) {
state[key] = s[key];
}
}
},
},
actions: {
/**
* 获取订单列表
* @param {*} param0 vue store context
* @param {
* owner: 订单来源
* status: 订单状态 默认全部
* }
* r
*/
async fetchOrderList(
{
commit,
state: { page, currentStatus, routeParamStatus },
},
param = {},
) {
const { owner } = param;
const res = await this.$api.get('/api/order/list', {
tabType: owner,
type: currentStatus || routeParamStatus || 1, // 1表示我的订单全部
page,
});
if (res.code === 200) {
commit('setOrderList', res.data);
}
},
/**
* 删除订单
* @param {
* orderCode: 订单编码
* owner: 订单来源 buy | sell
* } param1
*/
async deleteOrder({ commit }, { orderCode, owner }) {
// owner: ownType
const res = await this.$api.get(`/api/${owner}/order/delete`, {
orderCode,
});
const { code, data } = res;
// data 为true时删除成功
if (code === 200) {
if (data) {
commit('filterOrderList', orderCode);
}
}
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,
},
);
return res.code === 200 ? res.data : res.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 };
}
},
},
getters: {},
};
}