index.js 279 B

12345678910111213141516
  1. import { history } from '../../utils';
  2. Component({
  3. props: {
  4. componentData: {}
  5. },
  6. didMount() {
  7. history.replace({
  8. pageType: 'merchant-map-component',
  9. componentData: this.props.componentData,
  10. title: '商家列表',
  11. pull: false
  12. });
  13. }
  14. });