orderDetailActions.js
1.79 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
'use strict';
import ReactNative from 'react-native';
import InstallmentService from '../../services/InstallmentService';
const {
SET_TIP_MESSAGE,
SET_ERROR,
SET_ORDER_CODE,
GET_ORDER_DETAIL_REQUEST,
GET_ORDER_DETAIL_FAILURE,
GET_ORDER_DETAIL_SUCCESS,
} = require('../../constants/actionTypes').default;
export function setOrderCode(orderCode){
return {
type: SET_ORDER_CODE,
payload: orderCode,
}
}
export function getOrderDetailRequest(){
return {
type: GET_ORDER_DETAIL_REQUEST,
}
}
export function getOrderDetailFailure(error){
return {
type: GET_ORDER_DETAIL_FAILURE,
payload: error,
}
}
export function getOrderDetailSuccess(json){
return {
type: GET_ORDER_DETAIL_SUCCESS,
payload: json,
}
}
export function getOrderDetail(orderCode) {
return (dispatch, getState) => {
let {app, myOrderDetail} = getState();
let orderCode = "1519816409";//myOrderDetail.get('orderCode');
console.log("chenlin___orderCode______", orderCode);
let queryOrderDetail = (uid) => {
return new InstallmentService(app.host).getInstallmentOrderDetail(uid, orderCode)
.then(json => {
dispatch(getOrderDetailSuccess(json));
})
.catch(error => {
dispatch(setTipMessage(error.message || '暂未获取到数据'));
});
};
ReactNative.NativeModules.YH_CommonHelper.uid()
.then(uid => {
queryOrderDetail(uid);
})
.catch(error => {
ReactNative.NativeModules.YH_CommonHelper.login()
.then(uid => {
queryOrderDetail(uid);
})
.catch(error => {
});
});
};
}
export function setTipMessage(message){
return {
type: SET_TIP_MESSAGE,
payload: message,
}
}