Authored by chenl

修改快速送达。review by caomei。

... ... @@ -35,7 +35,7 @@ export function getFastExpressInfo() {
return (dispatch, getState) => {
let {app, fastExpress} = getState();
return new FastExpressService(app.serviceHost).getFastExpressInfo()
return new FastExpressService(app.host).getFastExpressInfo()
.then(json => {
dispatch(getFastExpressInfoSuccess(json));
})
... ...
... ... @@ -14,7 +14,7 @@ export default class fastExpressService {
async getFastExpressInfo(){
return await this.api.get({
url: '/gateway/',
url: '',
body: {
method: 'app.vipgrade.fastexpress',
}
... ...