English
open
About 144 wordsLess than 1 minute
2025-12-16
This method allows you to open a page in a platform application or a CRM application.
Syntax: FxUI.appApi.open(hash, appId, upEa, opts)
Parameters
| Parameter | Description | Type | Allowed Values | Default |
|---|---|---|---|---|
| hash | Page route (required) | string | — | — |
| appId | Application ID | string | — | — |
| upEa | Upstream enterprise account | string | — | — |
| options | Options | object | — | — |
options
| Parameter | Description | Type | Allowed Values | Default |
|---|---|---|---|---|
| noAppMenu | Whether to hide the menu | boolean | — | false |
| noAppHeader | Whether to hide the application header | boolean | — | false |
| noAppMenuBack | Whether to hide the back button | boolean | — | false |
| type | Open mode | string | _blank, dialog | _blank |
Example
FxUI.appApi.open('remind/approvalbyme', 'FSAID_11491009', 'fsceshi003')How to Choose hash
In the URL of the current page, the string after # is the value of hash.
For example, when you open a CRM or platform application and the current URL is https://www.fxiaoke.com/XV/UI/Home#crm/index, the hash is crm/index.
FxUI.appApi.open('crm/index')