|
@@ -71,7 +71,7 @@ class App extends Component {
|
71
|
71
|
* 优先级:传入的props > url
|
72
|
72
|
*/
|
73
|
73
|
loadLocales() {
|
74
|
|
- let { currentLocale } = this.props;
|
|
74
|
+ let { locales: currentLocale } = this.props;
|
75
|
75
|
if (!currentLocale) {
|
76
|
76
|
currentLocale = intl.determineLocale({
|
77
|
77
|
urlLocaleKey: "lang"
|
|
@@ -491,7 +491,7 @@ App.propTypes = {
|
491
|
491
|
pageType: PropTypes.string, // 分页类型
|
492
|
492
|
page: PropTypes.number, // 页码
|
493
|
493
|
onPageChange: PropTypes.func, // 页码变化回调
|
494
|
|
- currentLocale: PropTypes.string // 传入的语言包
|
|
494
|
+ locales: PropTypes.string // 传入的语言环境, en-US/zh-CN
|
495
|
495
|
};
|
496
|
496
|
|
497
|
497
|
App.defaultProps = {
|