Lines Matching refs:page
24 Navigates to a specified page in the application.
37 // Current page
57 // routerpage2 page
70 > The page routing stack supports a maximum of 32 pages.
77 Replaces the current page with another one in the application and destroys the current page.
90 // Current page
107 // detail page
121 Returns to the previous page or a specified page.
134 // index page
148 // detail page
162 // Navigate from the mall page to the detail page through router.back().
174 // Navigate from the detail page to the index page through router.back().
186 // Return to the detail page through router.back().
198 > In the example, the **uri** field indicates the page route, which is specified by the **pages** l…
204 Obtains parameter information about the current page.
218 Clears all historical pages in the stack and retains only the current page at the top of the stack.
265 Obtains state information about the current page.
281 let page = router.getState();
282 console.log('current index = ' + page.index);
283 console.log('current name = ' + page.name);
284 console.log('current path = ' + page.path);
294 Enables the display of a confirm dialog box before returning to the previous page.
328 Disables the display of a confirm dialog box before returning to the previous page.
359 Defines the page routing parameters.
365 …page, in either of the following formats:<br>1. Absolute path, which is provided by the **pages** …
366 …page during redirection. The target page can use **router.getParams()** to obtain the passed param…
377 …page to return to. If the specified page does not exist in the page stack, the application does no…
378 | params<sup>7+</sup> | object | No | Data that needs to be passed to the target page during red…
382 Defines the page state.
388 | index | number | Yes | Index of the current page in the stack. The index starts from 1 from the…
389 | name | string | Yes | Name of the current page, that is, the file name. |
390 | path | string | Yes | Path of the current page. |