_hook.js 265 B

1234567891011121314
  1. import _action from './_action';
  2. export default {
  3. /** tabBar路由钩子 */
  4. routeTabBarHook() {
  5. _action.routeTool();
  6. _action.setStatusTips();
  7. _action.getWebUrl();
  8. },
  9. /** 除了tabBar页面的路由钩子 */
  10. routeSonHook() {
  11. _action.routeTool();
  12. },
  13. }