actions.js
2.4 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
import * as Types from './types';
import { get } from 'lodash';
export default {
async fetchProductInfo({commit}, {productId}) {
const queryTasks = ['', '/resource', '/activity', '/recommend'].map(path => {
return this.$api.get(`/api/ufo/product${path}`, {product_id: productId}).then(result => {
if (result.code === 200) {
return result.data;
} else {
throw new Error(result.message);
}
});
});
let [detail,resource, activity, recommend] = await Promise.all(queryTasks);
resource = [];
commit(Types.UPDATE_PRODUCT_DETAIL, Object.assign(detail.product_info, {
resource: get(resource, '[0].data[0]', null),
activity,
recommend: recommend && recommend.product_list || [],
}));
},
async toggleFav({commit}, {productId, isFav}) {
const result = await this.$api.get(`/api/ufo/product/${isFav ? 'add' : 'cancel'}`, {product_id: productId});
if (result && result.code === 200) {
commit(Types.UPDATE_PRODUCT_FAV, {productId, isFav});
}
},
async updateTradeInfo({commit, state}, {productId, sizeInfo, tradeTypeInfo}) {
if (sizeInfo) {
commit(Types.UPDATE_SELECTED_RPODUCT_SIZE, {productId, sizeId: sizeInfo.size_id});
}
if (tradeTypeInfo) {
commit(Types.UPDATE_SELECTED_TRADE_TYPE, {productId, tradeTypeId: tradeTypeInfo.tradeTypeId});
}
return {
productId,
sizeId: state.selectedProductInfo.sizeId,
tradeTypeId: state.selectedProductInfo.tradeTypeId,
};
},
async getSelectedTradeProduct({state, commit, dispatch}, {productId, sizeId, tradeTypeId}) {
productId = parseInt(productId, 10);
sizeId = parseInt(sizeId, 10);
tradeTypeId = parseInt(tradeTypeId, 10);
if (!(state.selectedProductInfo && state.selectedProductInfo.productId == productId ||
state.products.byId[productId])) {
await dispatch('fetchProductInfo', {productId});
}
commit(Types.UPDATE_SELECTED_RPODUCT_SIZE, {productId, sizeId});
commit(Types.UPDATE_SELECTED_TRADE_TYPE, {productId, tradeTypeId});
return state.selectedProductInfo;
},
async requestSize({state}, { sizeIds }) {
const selectedProduct = state.selectedProductInfo;
await this.$api.get('/api/ufo/product/addsize', {
product_id: selectedProduct.productId,
goods_id: get(selectedProduct.product, 'goods_list[0].goods_id'),
size_ids: sizeIds
});
// 忽略错误
},
};