appInitialState.js
538 Bytes
'use strict';
import {Record, List, Map} from 'immutable';
let InitialState = Record({
platform: 'ios', // ios, android
channel: 1, // 1 - boy, 2 - girl, 3 - kid, 4 - lifestyle, 5 - yoho
host: 'http://api.yoho.cn',
serviceHost: 'http://api.yoho.cn',
type: '',
shop_id: 0,
brand_id: 0,
originParams: Map(),
saleType: 0,//参数名为saleType:0:普通折扣,1为断码区,2为会员专享,3为折扣专场,4为Outlets
activityId: 0,
bannerUrl: '',
listType: 0 //商品列表的类型
});
export default InitialState;