diff --git a/en/application-dev/reference/apis/js-apis-router.md b/en/application-dev/reference/apis/js-apis-router.md
index 5fd946a50a96ae6ba4086934c749d05f89e5362e..2609d848a83392c8b0630015b2f135894fde0a61 100644
--- a/en/application-dev/reference/apis/js-apis-router.md
+++ b/en/application-dev/reference/apis/js-apis-router.md
@@ -183,6 +183,7 @@ Obtains state information about the current page.
| Type | Description |
| --------------------------- | ------- |
| [RouterState](#routerstate) | Page routing state.|
+
**Example**
```js
diff --git a/en/contribute/template/js-template.md b/en/contribute/template/js-template.md
index a10ee2fed4fd2b4244b7e18ab13f05bb02375d55..93f56258e0adc662fc60e0bafc134abf91419c30 100644
--- a/en/contribute/template/js-template.md
+++ b/en/contribute/template/js-template.md
@@ -10,15 +10,15 @@
| 4 | File name | Provide one JS API reference document for each d.ts file. Name the file in the format of `js-apis-exampleModule.md`, where `exampleModule` is a variable and must be the same as the actual module name. Examples: For @ohos.multimedia.audio in the Multimedia subsystem, the JS API file name is `js-apis-audio.md`. For @ohos.telephony.sms in the Telephony subsystem, the JS API file name is `js-apis-sms.md`.|
| 5 | Directory update | After uploading an API reference document, update the `Readme-EN.md` file in `docs/en/application-dev/reference/apis`.|
| 6 | Document structure | - Module description - Initial version description - Modules to Import/Usage description - API description (attributes, methods, enums, and custom types) The order in which APIs are described in the document must be consistent with that in which they appear in the code. If some APIs have a logical sequence, pay attention to their sequence in the API reference document.|
-| 7 | API version description | 1. Use the greater-than sign (`>`) followed by a space to indent the description about the initial version of the module. Unless otherwise marked, all APIs in the module have the same initial version. 2. When introducing an API to an existing module, use the `` tag to mark its earliest version. The format is `versionNumber+`, for example, `7+`. If an attribute of API version 7 is added to an existing module, suffix the `7+` tag to the name of the new attribute, for example, `newAttribute7+`. If a method is added to an existing module, suffix the `` tag to the method name, for example, `sim.getSimIccId7+`. The same rule applies to new interfaces, classes, and enums. |
+| 7 | API version description | 1. Use the greater-than sign (`>`) followed by a space to indent the description about the initial version of the module. Unless otherwise marked, all APIs in the module have the same initial version. 2. When introducing an API to an existing module, use the `` tag to mark its earliest version. The format is `versionNumber+`, for example, `7+`. If an attribute is added to an existing module, suffix the `` tag to the new attribute name, for example, `newAttribute7+`. If a method is added to an existing module, suffix the `` tag to the method name, for example, `sim.getSimIccId7+`. The same rule applies to new interfaces, classes, and enums. |
| 8 | Deprecated API description | Do not delete the deprecated content from the document. Instead, suffix `deprecated` as a superscript to the content, and use the greater-than sign (`>`) to introduce the substitute API plus a link to the API description. Example: abandonmentMethod(deprecated) > This API is no longer maintained since API version 7. You are advised to use [newMethod]\(#newmethod) instead.|
-| 9 | Permission description | Provide the same permission description as that defined in the code for each method, enum, and attribute. 1. If a specific permission required for using an API can be requested only by system applications, provide the description in the following format: **Required permissions**: ohos.permission.examplePermission (available only to system applications) 2. If a specific permission required for using an API can be requested by all applications, provide the description in the following format: **Required permissions**: ohos.permission.examplePermission 3. If multiple permissions are required for using an API, provide the permissions with `and` or `or` in the following format: **Required permissions**: ohos.permission.examplePermissionA and ohos.permission.examplePermissionB **Required permissions**: ohos.permission.examplePermissionA or ohos.permission.examplePermissionB|
-| 10 | @syscap | 1. Provide a description for every API in the following format, wherein *A.B* indicates a specific system capability. **System capability**: SystemCapability.*A.B* 2. There are two cases for adding system capability information to a table (of attributes, enums, constants, or variables). 1) If all the items in a table require the same system capability, add the following information to the front of the table: **System capability**: SystemCapability.*A.B* 2) If the items in a table require different system capabilities, list the system capability for each item in the table. |
-| 11 | @system api | 1. If all APIs of a module are system APIs, add the following sentence to the next line of the initial version description: The APIs provided by this module are system APIs. 2. If an API is a system API that can be used only by original equipment manufacturers (OEMs), add the following sentence to the API description: **System API**: This is a system API. |
+| 9 | Permission description | Provide the same permission description as that defined in the code for each method, enum, and attribute. 1. If a specific permission required for using the API can be requested only by system applications, provide the description in the following format: **Required permissions**: ohos.permission.examplePermission (available only to system applications) 2. If a specific permission required for using the API can be requested by all applications, provide the description in the following format: **Required permissions**: ohos.permission.examplePermission 3. If multiple permissions are required for using the API, provide the permissions with `and` or `or` in the following format: **Required permissions**: ohos.permission.examplePermissionA and ohos.permission.examplePermissionB **Required permissions**: ohos.permission.examplePermissionA or ohos.permission.examplePermissionB|
+| 10 | @syscap | 1. Provide a description for every API in the following format, wherein *A.B* indicates a specific system capability. **System capability**: SystemCapability.*A.B* 2. There are two cases for adding system capability information to a table (of attributes, enums, constants, or variables). 1) If all the items in a table require the same system capability, add the following information to the front of the table: **System capability**: SystemCapability.*A.B* 2) If the items in a table require different system capabilities, list the system capability for each item in the table. |
+| 11 | @system api | 1. If all APIs of the module are system APIs, add the following sentence to the next line of the initial version description: The APIs provided by this module are system APIs. 2. If an API is a system API that can be used only by original equipment manufacturers (OEMs), add the following sentence to the API description: **System API**: This is a system API.|
| 12 | @FAModelOnly @StageModelOnly | 1. If a module is implemented only for a specific ability model, add the following sentence to the next line of the initial version description: The APIs of this module can be used only in the FA model. Or The APIs of this module can be used only in the stage model. 2. If an API is implemented only for a specific ability model, add the following sentence to the API description: **Model restriction**: This API can be used only in the FA model. Or **Model restriction**: This API can be used only in the stage model. |
| 13 | Asynchronous methods (callback and promise)| Use the following sentences for callback methods. Method introduction: *Describe the method.* This API uses an asynchronous callback to return the result. Parameter description: **callback\**: Callback used to return the result. The value `true` indicates *something*, and `false` indicates the opposite. **callback\